I have a jsp, which has to be accessed by only Weblogic admin. If some one try to access this jsp by Url (Ex: http://localhost:7001/index.jsp) it should pop up weblogic username/password window
If user enters valid Admin username/password then only he should able to see that jsp .
Is this possible ???????? please help
Thanks and regards
-
How to access weblogic console from jsp (8 messages)
- Posted by: sudhindra hebbar
- Posted on: June 04 2005 04:42 EDT
Threaded Messages (8)
- How to access weblogic console from jsp by Deepak Dixit on June 06 2005 16:55 EDT
- How to access weblogic console from jsp by sudhindra hebbar on June 09 2005 07:28 EDT
- use web.xml role/authentication by Biswa Das on June 07 2005 19:38 EDT
- use web.xml role/authentication by sudhindra hebbar on June 09 2005 07:31 EDT
-
Are you doing exactly this? by Biswa Das on June 09 2005 10:45 EDT
-
Are you doing exactly this? by sudhindra hebbar on June 15 2005 02:22 EDT
-
weblogic uses form based authentication by Biswa Das on June 15 2005 03:55 EDT
- console extension... by Sowmya Sridhar on June 17 2005 11:38 EDT
-
weblogic uses form based authentication by Biswa Das on June 15 2005 03:55 EDT
-
Are you doing exactly this? by sudhindra hebbar on June 15 2005 02:22 EDT
-
Are you doing exactly this? by Biswa Das on June 09 2005 10:45 EDT
- use web.xml role/authentication by sudhindra hebbar on June 09 2005 07:31 EDT
-
How to access weblogic console from jsp[ Go to top ]
- Posted by: Deepak Dixit
- Posted on: June 06 2005 16:55 EDT
- in response to sudhindra hebbar
Try implementing the Security in your web application. Use WebLogic Admin Rights User to login to the application.
Hope this helps. -
How to access weblogic console from jsp[ Go to top ]
- Posted by: sudhindra hebbar
- Posted on: June 09 2005 07:28 EDT
- in response to Deepak Dixit
Try implementing the Security in your web application. Use WebLogic Admin Rights User to login to the application.Hope this helps.
i tried this u mean use console set security but its not working
thanks for help -
use web.xml role/authentication[ Go to top ]
- Posted by: Biswa Das
- Posted on: June 07 2005 19:38 EDT
- in response to sudhindra hebbar
in your web.xml set the authentication role to weblogic admin. which you can add in localhost:7001/console under the users section.
Hope this will help -
use web.xml role/authentication[ Go to top ]
- Posted by: sudhindra hebbar
- Posted on: June 09 2005 07:31 EDT
- in response to Biswa Das
i tried all posible attribut in web.xml still this dam thing opens without any username pop up window but its not working
thanks for help -
Are you doing exactly this?[ Go to top ]
- Posted by: Biswa Das
- Posted on: June 09 2005 10:45 EDT
- in response to sudhindra hebbar
<security-constraint>
<web-resource-collection>
<web-resource-name>Defult Web Context</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>$$$$$your-weblogic-admin-role</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>WebLogic Authentication</realm-name>
</login-config> -
Are you doing exactly this?[ Go to top ]
- Posted by: sudhindra hebbar
- Posted on: June 15 2005 02:22 EDT
- in response to Biswa Das
its worked actually thing is admin password i gave to login weblogic console not working hear anyway i created new user and added Thanks -
weblogic uses form based authentication[ Go to top ]
- Posted by: Biswa Das
- Posted on: June 15 2005 15:55 EDT
- in response to sudhindra hebbar
weblogic console uses form based authntication not BASIC am not sure how u are planning to tackle that scnario. -
console extension...[ Go to top ]
- Posted by: Sowmya Sridhar
- Posted on: June 17 2005 11:38 EDT
- in response to Biswa Das
Why don't you install the jsp u have developed as a console extension. When u do that it becomes a new tab on the left hand side of the console. That way you dont have to worry about all these things. You can see dev2dev for a simple console extension example.