SSL « axis « Java Enterprise Q&A





1. AXIS2 and JAX-WS how can I change the SSL handshaking?    stackoverflow.com

I need to customize the SSL handshaking when calling a JAX-WS API on top of Axis2. I find no reference at all on how to do this. With Metro I can set ...

2. Client Web Service call over SSL using Apache Axis    stackoverflow.com

I'm using Apache Axis 1.5.1 to code a web service client connecting to a service over SSL. My application is running in Tomcat with SSL configuration setup in JKS. However, when ...

3. Axis over SSL and 2-way authentication with a PKCS#12 keystore    stackoverflow.com

I have PKCS#12 keystore that I've sucessfully imported in my browser for accessing a server that needs 2-way SSL authentication. Works perfectly reaching any https URL there. However, I'm unable to access ...

4. Creating SSL client with Axis2/Java    stackoverflow.com

I'm trying to connect to the WebService that uses SSL but no success. I use Axis2, I found some usefull article: http://people.apache.org/~dumindu/docs/HowToConfigureSSL.html, but it is for C. In this ...

6. SSL, AXIS, Web Service    coderanch.com

Hi All, I have https enabled web service whose wsdl address location is similiar to https://mysc.mycom.com:443/PtrAcc/DM. I am behind a firewall and now I have written a web service java client program that uses AXIS Stubs. Also I think this web service employs 2 way authentication since when I type https://mysc.mycom.com:443/PtrAcc/DM in my browser I am getting a IE dialog "Client ...

7. Axis and SSL connection    coderanch.com

8. SSL WebService using AXIS    coderanch.com

If you can talk to Tomcat over SSL with a browser, then I'd assume that SSL is properly configured. I'll move this thread to the webservices forum for you. Someone there might know if there is something specific you need to do in order to communicate over SSL from an Axis client.

9. SSL WebService using AXIS    coderanch.com





10. Run Axis client over SSL    coderanch.com

Hey fellow Java Coders, From what Ive understood a basic web services client using Axis support classes could look as follows: public void fetchWebServicesData() { try { String endpoint = "https://service.javaranch.com/testing.asmx"; Service service = new Service(); Call call = (Call) service.createCall(); call.setTargetEndpointAddress(new java.net.URL(endpoint)); call.setOperationName("GetTestingResult"); Integer ret = (Integer) call.invoke(new Object [] {"1"}); System.out.println("Got: " + ret); } catch (Exception e) { ...

11. SSL Configuration on Axis    coderanch.com

12. Mutual SSL in Axis 2 SimpleAxis2Server    coderanch.com

Hi all, I have a standalone Axis2 server running using org.apache.axis2.transport.SimpleAxis2Server I would like to enable mutial SSL on this server. I have managed to get 1-way SSL working using my own selft signed certificates. I have uncommented the SSLVerifyClient paramter, but this makes no difference. The server is running with SSL debug enabled and all I can see is 1-way ...

14. SSL in standalone axis2 1.4.1    coderanch.com

15. Accessing Axis Web Service over SSL    forums.oracle.com