Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Java-SCA-1.2
-
None
-
None
-
windows 2003
Description
In the model: tuscany-binding-ws-axis2 package: org.apache.tuscany.sca.binding.ws.axis2.Axis2ServiceProvider. start Method
code:>>>>
String endpointURL = axisService.getEndpointURL();
if ( endpointURL.startsWith( "http://") || endpointURL.startsWith("/"))
else if
( axisService.getEndpointURL().startsWith( "jms" ) ) {
logger.log(Level.INFO,"Axis2 JMS URL=" +
axisService.getEndpointURL() );
>>>>>>>
I think it should append another condition if it was https.
if ( endpointURL.startsWith( "http://") || endpointURL.startsWith("/")||endpointURL.startsWith( "https://") ) {