System properties and JSSE

2000-09-22 Thread Carlos Piqueres Ayela
Hi everybody, I'm developing a web-app that tries to connect through https with another server. I need to set some system properties according to JSSE instructions. When I try to set that property no exception is thrown but the property is not set. I don't know the reason... Any help?? TIA.

Re: System properties and JSSE

2000-09-22 Thread Carlos Piqueres Ayela
Hi, Resolve by myself. It's a tricky thing... If you set properties directly with System.setProperty the System doesn't realize. You have to do the following: Properties prp = System.getProperties(); prp.setProperty("name", "value"); System.setProperties(prp); I don't understand why...

logs of jsp compilation??

2000-09-22 Thread Carlos Piqueres Ayela
Hi, Very simple question, where can I see the results of jsp's compilation? I'm trying to debug an application that seems to fail but I don't know why and can't find any log of the result of the compilation... Any help? TIA

(no subject)

2000-09-13 Thread Carlos Piqueres Ayela
When trying to connect to our own secure server using this code we get a SSLException saying that the cert chain is untrusted. The certificate in the server has been generated by verisign as a trial cert. We can't see the cipherSuite nor the certificate chain. The exception must be thrown in