06-09-04 05:53 PM
[QUOTE]Originally posted by Marcus Leon
[B]Hello - we are having a problem programmatically accessing a https url
within the WebSphere container - can anyone help us?
For HTTPS to work from Java you need to
a) Install the JCE extensions in the JRE/ext folder.
b) Update the java.security file in JRE/security to contain the stuff requir
ed from the JCE (security providers, google is your friend)
c) IF the certificate the SSL site is using is untrusted, that certificate m
ust be loaded into the JRE/security/cacerts file, easiest way is to create o
ne anew with ikeyman, then import the certificate.
Reason I say this is the problem is that Ive just been testing HttpUnit usin
g a form-secured (SSL) web app, and had to do all the above.
Cheers,
andy.
[ Post a follow-up to this message ]
|