0
votes
2answers
308 views

Java: Overriding function to disable SSL certificate check

The web service is rest over SSL and it has self signed certificate, hosted in remote system.I have already created a client accessing that web service. This is done by adding the certificate to the ...
1
vote
1answer
145 views

java add self signed certificate to keystore programatically

I created a webservice client. The url is ssl. So i added the self signed certificate using keystore from command prompt. Now i need to add the certificate programatically. I found several links which ...
0
votes
0answers
53 views

How to generate and send certificate in ios to Web service through NSURLConnection

I have a Web Service, i hosted in IIS7 and generated a self signed certificate for it. And also i have iPad application as front-end. When i try to connect them using NSURLConnection it is working ...
2
votes
2answers
668 views

Use self-signed cert without installing in cert store

I have a self-signed certificate (.cer) file from a third party. I'd like to use that certificate in code to connect to their webservice (over HTTPS), without installing it in my cert store in ...
1
vote
1answer
1k views

Self signed certificate IIS7 - The remote certificate is invalid according to the validation procedure

I have a website hosted on my web server contacting a secure web service on another server. I have created a self signed certificate and attached it to the https:// binding. I have done 2 things to ...
3
votes
2answers
10k views

Java web service over https - How to add a self-signed certificate into a client api?

I have a "Hello World" web service created with axis2. I would like to write a client api which could use this service over https with a self-signed certificate. I have a self-signed certificate ...
8
votes
4answers
9k views

Connect to self-signed HTTPS web services from Flex

In my project I need to connect to an intra-net web service but we need SSL connection between the two machines. Because this is an intra-net site the certificate of the web service might be a ...