Yogs Bang

Greenhorn
+ Follow
since Dec 10, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Yogs Bang

Hello All,


I am trying to configure web.xml to have both protected and public URLs but still the app
authenticates the public URLs. Protected URLs works fine. I would greatly appreciate if you can
help to configure the whole application has protected except for few URLs which should be public
and without authentication. I could have added each URL for protected but there are plenty hence
using /* for protected.

protected URLs
-----------------
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>AUTHENTICATED_USERS</role-name>
</auth-constraint>
</security-constraint>

public URLs
-------------
<security-constraint>
<web-resource-collection>
<web-resource-name>Unprotected</web-resource-name>
<url-pattern>/public/welcome.html</url-pattern>
</web-resource-collection>
</security-constraint>


Thanks in advance.


Thanks
Yogesh
12 years ago
Thank you Mr. Theodore for your early reply. You information cleared lot of my doubts. Thanks again for your time.
Hello All,


I am a newbie. Can someone please let me know what is expected by SUN for Part II. Like how to present my project to them.. HTML, Diagrams and documents etc. Here are few questions which I would like to get clarified.

1. Do they need the source code from the class diagrams ?
2. In the class diagram, do they expect attributes and operations as
required by the project ?
3. How will I be uploading my project ? as a zip file ?
4. How dept the project needs to be addressed ?

Sorry, if these questions are too basic. I would appreciate if someone helps me in getting a jumpstart and thanks in advance for your response.

Thanks
Yogesh