Https « axis « Java Enterprise Q&A





1. Axis SecureSocketFactory - Setting the constructor attributes    stackoverflow.com

I have a customer SecureSocketFactory set to be used by Axis when making an https connection using the following property: AxisProperties.setProperty("axis.socketSecureFactory", "com.metavante.csp.model.manager.mobilepayments.MonitiseSSLSocketFactory"); When this class is instantiated by Axis the constructor with a ...

2. how can i generate a web service proxy behind https and client certificate request    stackoverflow.com

I'm trying to generate a web service client with eclipse (I also tried with jdeveloper and netbeans). The WSDL is behind a https server with client certificate request. I can connect and ...

3. Disabling HTTPS in Axis2 web service    stackoverflow.com

I have created an Axis2 web service from Netbeans and deployed it successfully in Tomcat 6 on my web server. When I use for instance SoapUI or Taverna to consume the web ...

4. How do I use self signed certificate in Axis2 Java client?    stackoverflow.com

I have generated code using org.codehaus.mojo axistools-maven-plugin plugin version 1.4. I am trying to connect to web service over https. I have installed server certificate into jssecacerts and copied this key ...

5. Unable to access axis2 over https    stackoverflow.com

I successfully setup my tomcat to be accessed over https. But when I try to access axis2 services, then it gives me internal server error. When I try to access the ...

6. Using self signed certificates    stackoverflow.com

I am using self signed certificate for HTTPS connection to and from Axis2 server. All of these connections works fine and as desired. There is a part in my web service which ...

7. Axis and Https    coderanch.com

9. Using HTTPS with Axis2 1.3    coderanch.com

Thanks for the acticle Ulf. I configure my Tomcat5.5.25 as mentioned in the artcile and make a web service call from a client as follow: System.setProperty( "javax.net.ssl.trustStore", "C:/keystore_certs/client.keystore"); System.setProperty("javax.net.ssl.trustStorePassword", "changeit"); AuthenticationServiceStub stub = new AuthenticationServiceStub(https://localhost:8443/mytest/services/LoginService); // initialize data here // web service call stub.login(doc); When I made this call I get the following exception: .apache.axis2.AxisFault: java.lang.NullPointerException at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:486) at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:343) at ...





11. Web services in HTTPS. org.apache.axis2.AxisFault: Read timed out    coderanch.com

I have a web service running fine in HTTP protocol. When i run the same service on HTTPS all operations are working fine except an operation which takes about 30 seconds. I get the following exception org.apache.axis2.AxisFault: Read timed out at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430) at org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:193) at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:75) at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:371) at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:209) at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:448) at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:401) at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:228) at org.apache.axis2.client.OperationClient.execute(OperationClient.java:163) at com.gpc.remoteclassification.services.RemoteClassificationServiceStub.getClassificationOrderItem(RemoteClassificationServiceStub.java:6932) at ...

12. HTTPS Axis webservice in JBoss    coderanch.com

16. Ant, Axis and WSDL2Java via https    forums.oracle.com

Hello fellow programmers ! I am using the Ant Axis command "axis-wsdl2java", which used to point to an "http" URL. I now have to point it to an "https" url and am getting Hanshake exception errors. I've seen these before and I actually have a keystore file which I exported and specify at startup to the main program. So the problem ...