WebService Soap Ionic HTTPS - soap

i want to call a service from external server that use HTTPS with certificate in my application ionic . so how can i add the certificate in my code or my project ???
Thank you to give me answer, i'm blocked

Related

select certificate popup comes while calling web api deployed on service fabric from javascript

we have web api deployed on service fabric cluster. When that api is getting called from javascript it pops up the select certificate window in browser. Can you please suggest how to avoid that? We are allowing to make calls to web api using bearer token.
while binding ssl cert, this field was being set - clientcertnegotiation=enable
And that was causing that issue

How to add client certificate to https request in Swift (no ssl pinning)

For the communication with a server API in my iOS app I have to include a client certificate (crt + key file) with every http request. So no ssl pinning, just include a certificate. My customer tells me to send the certificate with the session but don't know how to do this.
How can I do this in Swift ? Any advice / code snippet / example etc appreciated.
Thanks for your help
Frank

How to call external REST service over SSL from Bluemix

We have developed a web application using angularjs and html5 and Node.js. This web application is hosted on Bluemix using the Node.js runtime. This web application calls an external RESTfull service (we are invoking the REST service using angularjs) which was developed by a third party. This REST API requires an HTTPS connection to call the service. The SSL certificate and certificate password are provided by the API development team. Our problem is how to configure the SSL certificate on Bluemix to call the external REST service over SSL from the web application. Can anyone please help us? Thanks in advance for your help.
To do this properly I would advice to create an API Management Service, where you add your external service as an API together with the SSL settings. You then call this API (proxy) without SSL from your node.js bluemix app.
The proxy will care for SSL, forward the request to the actual service implementation, and provide you also with debugging and analytics capabilities. With having API Management in place, you also benefit from a central place that manages your SSL certificates.

Secure connection in j2me

I need to implement secure connection in j2me. i.e. all http calls calling rest api should be changes to https. For that, according to my understanding, we need to install a certificate in server side using tomcat. My doubt is:
1. How do we install certificate in j2me so that the rest call can be converted to https?
2. Can i use self signed certificates instead of buying CAs like verisign and thwarte?

Implementing Axis Web service with certificates in Eclipse

I'm about to implement a web service client against a web service, protected by a certificate and a password.
I received the password and the certificate (.p12) from the web service provider (an external partner).
The web service client is auto generated in Eclipse using Ajax (not Ajax 2). I tested the service against soapUI (where i created a mocked service), and it works perfect.
Now I need to implement the web service client, up against the real service and my question is simply; how do I add the certificate and the password to the webservice in Eclipse?