Re: SSL question

2005-10-05 Thread Raueber Hotzenplotz
Hi Not exactly sure what you mean. Could you send me a snippet of your web.xml? That would be very nice. Thanks! Greetings from Vienna --- Yassine ELassad [EMAIL PROTECTED] wrote: hi i'm not sure if this will help you but i have hade a quite similar issue : i have passed a full URL a

SSL question

2005-10-04 Thread Raueber Hotzenplotz
Hi I've got a servlet which works fine when using http. But when I want to access it through https I get a certificate unknown exception. Why does https://localhost:8443 work in a browser but accessing my servlet (with java client) not? Do I need to make my servlet SSL aware? Using another

Re: Rép. : SSL question

2005-10-04 Thread Raueber Hotzenplotz
Hi, thanks! I've got my own TrustManager/HostnameVerifier and it works when I use Apache's SecureWebServer and SecureXmlRpcClient. I'm not using javax.net.ssl, but instead com.sun.net.ssl - couldn't make it work with javax.net.ssl. Is the code below necessary for the servlet as well? Thought

Tomcat + SSL problems!

2005-10-03 Thread Raueber Hotzenplotz
Hello I need my client to communicate with a servlet using secure xmlrpc. Using Apache's SecureWebServer works (got my own TrustManager, HostnameVerifier, selfsigned certificates/keystores for server/client). Accessing Tomcat with a browser (https://localhost:8443) works too (selfsigned

What's better, having one large servlet or many small ones?

2005-09-06 Thread Raueber Hotzenplotz
Hello Should I have one handler with many methods or more handlers with less methods (1-2)? Thanks! ___ To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre.

Simple XML RPC Servlet does not work - assuming address problem

2005-06-22 Thread Raueber Hotzenplotz
Hi This simple Servlet works (address: http://localhost:8080/testapp/testservlet): public class Server extends HttpServlet { public void doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { PrintWriter out = res.getWriter();

Want to run servlets from other directory than webapps

2005-05-11 Thread Raueber Hotzenplotz
Hi I've got Tomcat-5.0.27-r5 installed. Running servlets (localhost) located in /opt/tomcat5/webapps/ROOT/WEB_INF/classes is no problem. What do I need to do to run servlets from my user directory (e.g. /home/user/myapp)? I've tried to use http://localhost:8080/admin to add an additional

Re: Want to run servlets from other directory than webapps

2005-05-11 Thread Raueber Hotzenplotz
, but this is not the prevered way in tomcat 5! Greetings O. On 5/11/05, Raueber Hotzenplotz [EMAIL PROTECTED] wrote: Hi I've got Tomcat-5.0.27-r5 installed. Running servlets (localhost) located in /opt/tomcat5/webapps/ROOT/WEB_INF/classes is no problem. What do I need to do to run

Re: Want to run servlets from other directory than webapps

2005-05-11 Thread Raueber Hotzenplotz
utility to tweak it. Cheers, PST On 5/11/05, Raueber Hotzenplotz [EMAIL PROTECTED] wrote: Hi I've got Tomcat-5.0.27-r5 installed. Running servlets (localhost) located in /opt/tomcat5/webapps/ROOT/WEB_INF/classes is no problem. What do I need to do to run servlets from my user