Certificate « axis « Java Enterprise Q&A





1. Weird certificate error when trying to generate web service client from secure site    stackoverflow.com

I get a weird error when trying to use AXIS1.4 Wsdl2Java tool to generate client code for the web service that is installed on the secure IIS site. When I ...

2. How to generate Axis2 XML Signature with distributed certificates    stackoverflow.com

I have somewhat of a problem. We have a centralized interface engine that will talk to a web service that will provide information complement and allow to submit request to external systems. ...

3. Using standalone certificate for webservice call when using Axis2    stackoverflow.com

I've successfully called a https webserivce with Axis2. The problem was the https-part (as usual), solved it with importing the ca in question in to the jvm's keystore ({JAVA_HOME}/lib/jssecacerts). Now to the ...

4. AXIS over SSL trusting all certificates    coderanch.com

Hello, I had serious problems making work AXIS over SSL (1.1, JDK14). All the time, I got "javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found". The first thing to try was the well known solution: TrustManager[] tm = new TrustManager[ 1 ]; tm[0]=new NaiveTrustManager( ); // accepts all context.init(null, tm, new SecureRandom()); HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory()); But AXIS absolutely refused to take setting this into account, ...

5. Certificate on AXIS Client    coderanch.com

Hello, I am trying to authenticate my client to a web service. I have a valid certificate to the service ... I want to know how do I attach the certificate to the standalone JAVA client so that the service will recognize it. I have both the client and the service running over http. Thanks Chris

6. Unsigned Certificates with Axis2    coderanch.com

Interesting stuff. Just to be clear on what this actually does: It allows the server to use any certificate, and that will be trusted by the client, without being in the local keystore or the signing authority being trusted by the client? It seems like this technique should work everywhere where HTTPS is used, not just for WS.

8. client authentication with certificate in Axis 1    coderanch.com

Hello, I am using Axis 1. How to I configure the server and client to force the client to authenticate with a certificate? Does Axis 1 make use of the httpd.conf file to force this authentication? Does the client code which invokes the web service only have to set properties in order for the SSL to take place? I have seen ...

9. please answer - client authentication with certificate in Axis 1    coderanch.com

Hello, Thanks for the reply and link. So far I have modified Tomcat server.xml to uncomment the https connector, and I have created the SSL certificate using: keytool -genkey -alias tomcat -keyalg RSA. I changed the client code to access the web service by changing the port and http to https. On the client machine I also ran: keytool -genkey -alias ...





10. Axis2/Rampart problem. Certificate not found for user.    coderanch.com

Hi, I have this Jax-ws web service which functions as a container for Axis-client. This client sends secure and signed messages with Rampart. I have ran into problems lately because I can't change keystore on the fly. It always crashes to following error: org.apache.axis2.AxisFault: Error during Signature: ; nested exception is: org.apache.ws.security.WSSecurityException: General security error (No certificates for user user1 were ...