Re: [axis2] How to secure a web service through SSL

2007-09-04 Thread Alistair Young
ok, sorry - I've neved used spring with axis2! The stub comes from running Axis2 over the WSDL to get java classes. Alistair -- mov eax,1 mov ebx,0 int 80h > Well, I've done the cert part, but what is MyServiceStub for? > I'm using spring with axis for the client. > And btw right now I have th

Re: [axis2] How to secure a web service through SSL

2007-09-04 Thread Боян (Boyan) Иванов (Ivanov)
Well, I've done the cert part, but what is MyServiceStub for? I'm using spring with axis for the client. And btw right now I have these lines in my wsdl : http://192.168.32.19:8443/axis2/services/HelloImpl"/ > http://192.168.32.19:8080/axis2/services/HelloImpl"/ > http://192.168.32.19:84

Re: [axis2] How to secure a web service through SSL

2007-09-04 Thread Alistair Young
export your tomcat's cert into a truststore and specify it in your client: keytool -export -alias tomcat -keystore keystore.jks -file server.cer keytool -import -alias myservice -keystore truststore -file in the client code add: System.setProperty(”javax.net.ssl.trustStore”, “/path/to/truststore”

[axis2] How to secure a web service through SSL

2007-09-04 Thread Боян Иванов(Boyan Ivanov)
Hi, I'm quite new into web services, so excuse my dumb question. I tried searching the list archive, but couldn't find an answer. My question is what do I need to to in order to deploy a webservice, which is to be used over HTTPS. I configured tomcat and can access the service at https://localho