Client authentication using Keystores...

2005-06-07 Thread Manuel Gil Perez
. Can somebody tell me how can I manage these keystores and to add only the CA certificate in the Tomcat keystore... leaving the original JDK keystore intact?? Thanks! -- Manuel Gil Pérez - To unsubscribe, e-mail: [EMAIL

Re: Tomcat 5.5 & JRE 1.5

2004-09-30 Thread f-gil
ment : was Francisco Gil/insa received

Problem whit this message cannot resolve symbol

2004-09-29 Thread f-gil
Hi i´m begginer in Tomcat and Java and i´ve a problem. I try run a JSP , but the next error appear, some one know the reasons? The JSP use a simple class, when i run the example by shell (only for test) all it´s OK, but when the JSP call the Class i get the Error. My classPath it´s ok, i´ve review

RE: Unable to integrate Apache 2.0.24, mod_jk2 with Tomcat 5.

2004-09-07 Thread João Gil ACE-SC
Thank's Andy for your help. Everything is working fine now. Warmest regards Joao Gil "An

RE: Unable to integrate Apache 2.0.24, mod_jk2 with Tomcat 5.

2004-09-03 Thread João Gil ACE-SC
s are still not being forwarded - Apache reports - "404 file not found" when I click on, for example, - http://localhost/MyServlet. MyServlet exists on my root_path as MyServlet.class . Can anyone tell me how to prevent this error and forward the request to Tomcat5?

Unable to integrate Apache 2.0.24 with Tomcat 5.

2004-09-02 Thread João Gil ACE-SC
forwarding JSP pages/Servlets to Tomcat. Can anyone help me? Warmest Regards Joao Gil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Apache2 and Tomcat 5.0.25 Configuration Using Mod_jk2

2004-07-07 Thread f-gil
: was Francisco Gil/insa received by

Re: syntax error when Apache is started

2004-01-05 Thread Gil Hauer
could the problem be related to the direction of your slashes (i.e., '/' is being used rather than '\')? (Sorry to pollute this list but the poster is not reachable any other way) Thanks, Gil On Mon, 2004-01-05 at 11:18, [EMAIL PROTECTED] wrote: > I'm trying to connect

Re: JAVA_OPTS to tomcat

2003-12-17 Thread Krzysztof Gil
> Hello All, > > When I add the following line to catalina.sh: > JAVA_OPTS=-Djava.naming.factory.initial=org.jnp.interfaces.NamingContextFact > ory -Djava.naming.provider.url=jnp://localhost:1099 > -Djava.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces > > I get this error: > ./catalina

Change the name of a servlet in runtime

2003-11-20 Thread Manuel Gil Perez
Hi all. I have a servlet that reads a file from disk and it returns as output stream in the servlet (octect-stream). From web browser, when I execute this servlet the file is stored with the servlet name. How can I change this name to the file name?? Regards... Manuel Gil

Re: HttpRequest and HttpResponse from pageContext?

2003-07-25 Thread Gil Hauer
Thanks! Gil On Fri, 2003-07-25 at 01:23, Bill Barker wrote: > HttpServletRequest req = (HttpServletRequest)pageContext.getRequest(); > HttpServletResponse res = (HttpServletResponse)pageContext.getResponse(); > > "Gil Hauer" <[EMAIL PROTECTED]> wrote in mes

HttpRequest and HttpResponse from pageContext?

2003-07-24 Thread Gil Hauer
Hello, Given a PageContext object, is there any way to get back to the HttpRequest that generated the page? Is there any way to get to the HttpResponse? Thanks, Gil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Forwarding with parameters

2003-07-24 Thread Gil Hauer
Perfect! Thanks for the help. Gil On Thu, 2003-07-24 at 10:54, Rick Roberts wrote: > I forget all the reasons why at the moment, but I use sendRedirect() instead of > forward(). > > String target = "page1.jsp?param1=" + val1 + > "¶m2=" + val2

Forwarding with parameters

2003-07-24 Thread Gil Hauer
set. Also, at this point I'm in an https session and I'd like to transfer to unencrypted protocol -- how can I do that? Thanks in advance, Gil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

per-context classpaths?

2003-07-20 Thread Gil Hauer
e that are different. I'd like to install them in different directories for each virtual host (test and production) and use the classpath to differentiate them. Are there any better suggestions as to how to approach thi

application initParameters disappearing (or overwritten)

2003-07-20 Thread Gil Hauer
ditcard.api_token", api_token); Occasionally when I load the JSP page the init parameters have the correct values but sometimes they contain null. What would cause the parameters to be overwritten? Thanks, Gil - To unsubscr

RE: Error to load servlets

2003-07-03 Thread Manuel Gil Pérez
Hi Yoav. Thanks for your response... my servlet is executed correctly. Before, I had /servlet/package01.SCEP and the servlet mapping was incorrect. That's very strange but CISCO's standard (SCEP protocol) defines this communication as: GET /cgi-bin/pkiclient.exe?operation=PKIOperation&mess

Error to load servlets

2003-07-03 Thread Manuel Gil Pérez
pkiclient.exe is added by the router. With Apache the servlet is executed correctly, but with Tomcat the servlet isn't loaded. How can I resolve this problem?? Regards and thanks for advanced. -- Manuel Gil Pérez - Proyecto m-PISCIS DIIC - Dpto. Ingeniería de la Información

UnsupportedDataTypeException

2003-03-04 Thread Gil
Hi... I've a Java application that send mails through mail.jar library. With Apache, my application works fine but with Tomcat 4.1.18 I obtain the following exception: javax.activation.UnsupportedDataTypeException: no object DCH for MIME type application/x-pkcs7-signature: name=smime.

Two Realms for client authentication

2003-02-28 Thread Manuel Gil Perez
Hi. Can I use two Realms for client authentication?? I would like to define a set of servlets that uses a Realm and another set of sevlets that uses another Realm. Can I make this?? Regards. - To unsubscribe, e-mail: [EMAIL PR

Two Realms for client authentication

2003-02-28 Thread Gil
Hi. Can I use two Realms for client authentication?? I would like to define a set of servlets that uses a Realm and another set of sevlets that uses another Realm. Can I make this?? Regards. - To unsubscribe, e-mail: [EMAIL P

Retrieve certificates within a servlet

2003-02-27 Thread Gil
I've a secure web application with servlets and an application that accesses the servlets. In my application I open a SSLClientContext and I establish the trusted certificates: SSLClientContext context = new SSLClientContext(); context.addClientCredentials(,); context.addTrustedCertific

Read parameters from web.xml

2003-02-24 Thread Manuel Gil Perez
Hi all. I've creating my own JNDIRealm and I would like to read the parameters from $CATALINA_HOME/webapps/example/WEB-INF/web.xml file. How I can to read these parameters?? Regards. - To unsubscribe, e-mail: [EMAIL PROTECTED]

CLIENT-CERT authentication method

2003-02-10 Thread Manuel Gil Perez
Hi all. Currently (in Tomcat 4.1.18), is CLIENT-CERT authentication method defined within Realm?? Regards. -- CLIENT-CERT OnJava Application - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

CLIENT-CERT for client authentication (with MemoryRealm)

2003-02-07 Thread Manuel Gil Perez
redentials Can somebody help me in my error?? Thanks for advance and regards. -- Tomcat: version 4.1.18 with SSL SO: Red Hat 7.3 -- Manuel Gil Pérez - Proyecto m-PISCIS DIIC - Dpto. Ingeniería de la Información y las Comunicaciones Facultad de Informática - Universidad

JNDIRealm login failure

2003-01-06 Thread Gil Chilton
I have created a simple tomcat web app that uses a JNDIRealm for authentication per the instructions in the Tomcat 4.1 documentation. When I start tomcat, the login process for this web app works fine for a few minutes or logins. Eventually, I reach a state where the first login always fails unti

RE: Warp configuration issues

2002-10-16 Thread Chilton, Gil
Mod_jk works perfectly. Thanks for quick response and accurate answer. > - use mod_jk: Another person had the same problem, and solve it using > mod_jk. This is what i did. It works perfectly. >>I am trying to use tomcat 4.1.12 from rpm with apache 1.3.23 on a fully >>patched RedHat 7.3 box u

Warp configuration issues

2002-10-15 Thread Chilton, Gil
I am trying to use tomcat 4.1.12 from rpm with apache 1.3.23 on a fully patched RedHat 7.3 box using mod_webapp. If I define an ordinary application that does not require any server.xml changes and place it under the webapps directory with appropriate changes to apache's httpd.conf, the applicati