HttpUnit error with SSL connection

Hello,

Trying to use HttpUnit testing tool to test our webapplication. Our applicaiton uses SSL.

However, when i try to test run the below code, i get the error:

WebRequest request = new GetMethodWebRequest(https://www.testit.com");

WebResponse response = wc.getResponse(request);

System.out.println("Response:[" + response.getTitle()+"]");

error:

java.lang.RuntimeException: https support requires the Java Secure Sockets Extension

Is there a special way to configure HttpUnit to test Secure websites?. I found a related article but found no solution.

http://www.velocityreviews.com/forums/t138451-httpunit-not-working-against-an-h ttps-ssl-site.html

[713 byte] By [get_that_done] at [2007-11-26 9:20:00]
# 1
how is this related to proxy?
rahulnair at 2007-7-6 23:50:46 > top of Java-index,Web & Directory Servers,Web Servers...
# 2
Alright my man/women...where should i post it?
get_that_done at 2007-7-6 23:50:46 > top of Java-index,Web & Directory Servers,Web Servers...
# 3

java.lang.RuntimeException: https support requires the Java Secure Sockets Extension

I think you would get a better idea by looking at the HttpUnit manpages. From what I can see, you might need to configure JSSE for running that test. and HttpUnit Forums (not in sun) might be a better idea.

rahulnair at 2007-7-6 23:50:46 > top of Java-index,Web & Directory Servers,Web Servers...