Doesn't the saaj connection.call() method support https url?

I think so...

 

John Rasmussen
DataPower Technology, Inc.
One Alewife Center
Cambridge, MA 02140, US
Office: US +1 617.864.0455 x359
Fax: US +1 617.864.0458


-----Original Message-----
From: moi oziris [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 03, 2005 5:12 AM
To: axis-user@ws.apache.org
Subject: [Deb] Call and HttpsUrlConnection

hi,

I'm new on this ML so I begin to introduce myself. I'm french (sorry for
my 
poor english), 23 years old and I'm work in an informatic service
company as 
development ingenior.
I'm sorry to begin this story with a request. I hope continue in a more 
active way.

Here the deal.
I've constructed a HttpsURLConnection:

SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(
    null,
    new TrustManager[] {new MyTrustManager()},
    SecureRandom.getInstance("SHA1PRNG"));
SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();
URL url = new URL("...");
HttpsURLConnection urlc = (HttpsURLConnection)url.openConnection();
urlc.setSSLSocketFactory(sslSocketFactory);

By this way, I can define a TrustManager for my sockets.

I would like to send my SOAP request via this HttpsURLConnection. I
looked 
arouned the API unsuccessfully.

Anyone can help me? Even a birth of idea would be appreciated.


Thanks.
-o--


Reply via email to