Re: Servlet inter-communication

2006-05-03 Thread Samuli Elomaa
Thanks, Solved the problem by using singleton, hopefully I won't end up with deadlock in somepoint. Samuli - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Servlet inter-communication

2006-05-03 Thread Samuli Elomaa
Hi, Is there any otherway for two servlets in same tomcat to communicate together except by http requests? Eg. could two servlets use somekind of shared memory? or send signals to each other? Samuli - To unsubscribe, e-mail

Re: WebDAV problem with CoyoteConnector? and javax.servlet.HttpServlet

2006-03-26 Thread Samuli Elomaa
String options = "OPTIONS, GET, HEAD, POST, DELETE, TRACE, PROPFIND, PROPPATCH, COPY, MOVE, LOCK, UNLOCK"; response.addHeader("Allow", options); response.addHeader("MS-Author-Via", "DAV"); } Samuli On 26.3.2006, at 23.00, Mark T

WebDAV problem with CoyoteConnector? and javax.servlet.HttpServlet

2006-03-26 Thread Samuli Elomaa
Hi, I have been coding a little webdav servlet based on jakarta tomcat webdavservlet.java on Apache Tomcat 4.1.24. Now my problem is that, when the users webdav client connects to my servlet it sends request starting with "OPTIONS /webdav/ HTTP/1.1.." For this request it wants an response li