I have a very important set of classes to manage my site (Intranet) and this
set of pllication worked well in a Resin Server.
Now, I want to use Tomcat and I install it without problem (WinNT4). When I
try to lauch (from my browser) Tomcat give me a "jasper exception" at the
excecution f the <% usebean ... %> saying that my java file is not
correctly encoded and I need to use native2Ascii to convert It.
I don't anderstand what happend: the Java file it in ascii and it exactly
the same for Resin and Tomcat.
Help is welcome...
> Rémi Clavier
France Télécom R&D / RTA/ D2M
Technopole Anticipa
2, Avenue Pierre Marzin Téléphone : (+33 ) (0) 2 96 05 2220
22307 Lannion Cedex Fax : (+33 ) (0) 2 96 05 1252
FRANCE
mailto:[EMAIL PROTECTED]
> ----------
> De : Tobias Ødell - Wapportal.se[SMTP:[EMAIL PROTECTED]]
> Répondre à : [EMAIL PROTECTED]
> Date : jeudi 1 février 2001 13:15
> A : '[EMAIL PROTECTED]'
> Objet : RE: Tomcat 3.2.1 Standalone, JSSE 1.0.2 and Socket ERROR
>
> I have the same problem as you!
> I've also tried the the URL with setting,
> System.setProperty("java.protocol.handler.pkgs","com.sun.net.ssl.internal.
> ww
> w.protocol");
>
> I get the same error from both test and it is:
> Tomcat server says:
> 2001-02-01 01:15:20 - Ctx( ): IOException in: R( /) Received fatal alert:
> certificate_unknown
>
> Client app says:
> javax.net.ssl.SSLException: untrusted server cert chain at
> com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198]) at
> com.sun.net.ssl.internal.ssl.ClientHandshaker.a([DashoPro-V1.2-120198])
> at
> com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage([DashoPro-V1.
> 2-
> 120198]) at
> com.sun.net.ssl.internal.ssl.Handshaker.process_record([DashoPro-V1.2-1201
> 98
> ]) at
> com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198]) at
> com.sun.net.ssl.internal.ssl.SSLSocketImpl.a([DashoPro-V1.2-120198]) at
> com.sun.net.ssl.internal.ssl.AppOutputStream.write([DashoPro-V1.2-120198])
> at java.io.OutputStream.write(OutputStream.java:65) at
> com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake([DashoPro-V1.2-1
> 20
> 198]) at untitled1.SSLTest.handshake(SSLTest.java, Compiled Code)
> at
> untitled1.SSLTest.<init>(SSLTest.java:17) at
> untitled1.SSLTest.main(SSLTest.java:109)
>
>
> Anyone that can explain this to me?
> I guess that the problem is that if not using a trusted CA server, but is
> there a workarond when developing?
>
> --Tobias--
>
> -----Original Message-----
> From: Valentin Sanchez [mailto:[EMAIL PROTECTED]]
> Sent: Friday, January 05, 2001 11:27 AM
> To: [EMAIL PROTECTED]
> Subject: Tomcat 3.2.1 Standalone, JSSE 1.0.2 and Socket ERROR
>
>
> I am trying to use Tomcat 3.2.1 standalone compiled with SSL support and
> Jsse 1.0.2
> I hava configured Tomcat to use port 443 with SSL and it works fine using
> a
> browser.
>
> If I use "http://myserver/mypage.html" it do not use ssl
> If I use "https://myserver/mypage.html" it uses ssl.
>
> Now I m using jsse to open a secure socket connection to get the same
> page.
> The code is as follows:
> **************************************************************************
> *
> ********
> SSLSocket socket =
> (SSLSocket)factory.createSocket("myserver", 443);
> socket.startHandshake();
>
> PrintWriter out = new PrintWriter(
> new BufferedWriter(
> new OutputStreamWriter(
> socket.getOutputStream())));
>
> out.println("GET http://myserver/mypage.html HTTP/1.0");
> out.println();
> out.flush();
> if (out.checkError())
> System.out.println(
> "SSLSocketClient: java.io.PrintWriter error");
>
> /* read response */
> BufferedReader in = new BufferedReader(
> new InputStreamReader(
> socket.getInputStream()));
>
> String inputLine;
> while ((inputLine = in.readLine()) != null)
> System.out.println(inputLine);
>
> in.close();
> out.close();
> socket.close();
> **************************************************************************
> *
> *************
> The code is copied from the Jsse examples.
> Tomcat returns an error: Request not found and the execption in Tomcat is:
> java.io.exception Name of file,directory or volume label is not valid.
>
> The same code works fine with www.verisign.com/index.html.
> It also works with a server using IIS4.0.
>
> Thanks in advance,
> Valen
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]