|
Hi
After applying the patch , I have
another problem now.
I am accessing a servlet from a Poller (java code)
using java.net.urlconnection
and my servlet is having a login-passwd security at
web.xml file
I am setting encrypted login-passwd when
urlconnection opens ...
and I am able to access servlet from browser after
giving login-passwd
BUT Poller is not able to find the servlet now
throwing:
java.io.FileNotFoundException : http://IP/vb/ReceiverServlet
Without patch poller is accessing servlet perfectly
:
If you require any more explanations , contact me
at [EMAIL PROTECTED]
T & R
sijo
my web.xml :
..........
<security-constraint>
<web-resource-collection> <web-resource-name>Virtual Bureau</web-resource-name> <url-pattern>vb/ReceiverServlet</url-pattern> <http-method>GET</http-method> <http-method>POST</http-method> <description>Restricted Servlets List</description> </web-resource-collection> <auth-constraint> <role-name>manager</role-name> <description>Managers only</description> </auth-constraint> </security-constraint> <welcome-file-list><welcome-file>orderEntry.jsp</welcome-file></welcome-file-list>
<servlet><servlet-name>ReceiverServlet</servlet-name><servlet-class>servlets.ReceiverServlet</servlet-class><display-name>ReceiverServlet</display-name><description>Receives static data </description><security-role-ref><role-name>MGR</role-name><role-link>manager</role-link></security-role-ref></servlet> followed by <servlet-mapping> ...
|
- After "Too many Concurrent Request.." Sijo Pallathera Cherian
- After "Too many Concurrent Request..&quo... Sijo Pallathera Cherian
