[ 
https://issues.apache.org/jira/browse/MUSE-223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12489568
 ] 

Dan Jemiolo commented on MUSE-223:
----------------------------------

Okay, slight problem - javax.net.ssl is only available on J2SE, not J2ME, and 
the muse-wsa-soap module needs to remain J2ME-compliant. I will refactor 
SimpleSoapClient a bit so I can add this as an independent module. The 
frustrating thing is that J2ME seems to have something similar 
(SecureConnection), but it's part of a J2ME-specific package.

I guess I will just make the SecureSoapClient API available with the default 
implementation that uses J2SE's SSL API, and people who want a J2ME version can 
use that implementation as inspiration for their own class.


> Add capability to specify a SSLSocketFactory for HTTPS based connections in 
> SimpleSoapClient.
> ---------------------------------------------------------------------------------------------
>
>                 Key: MUSE-223
>                 URL: https://issues.apache.org/jira/browse/MUSE-223
>             Project: Muse
>          Issue Type: New Feature
>          Components: Core Engine - Resource and Capability APIs
>            Reporter: Oliver Waeldrich
>         Assigned To: Dan Jemiolo
>             Fix For: 2.3.0
>
>
> In order to use certificate based client authentication with MUSE we would 
> like to specify a 
> SSLSocketFactory to be used when communicating with a MUSE server. Even 
> though it is
> possible to specify a default SSLSocketFactory (see 
> HttpsURLConnection.setDefaultSSLSocketFactory())
> this is not feasible for environments, where e.g. a client needs to 
> communicate with multiple 
> server instances using different credentials. 
> Therefore I would suggest an extension to the SimpleSoapClient to specify a 
> SSLSocketFactory  for https
> connections and to extend the client's send-functionality as indicated by the 
> code below.
>     HttpURLConnection connection = (HttpURLConnection)url.openConnection();
>     if (connection instanceof HttpsURLConnection)
>         if (mySSLSocketFactoryInstance =! null) {
>             
> ((HttpsURLConnection)connection).setSSLSocketFactory(mySSLSocketFactoryInstance);
>         }
>     }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to