I created a self hosted HTTPS WCF web service running on my Localhost machine. Now i make a request to this web service from a GWT based application hosted on some domain.
I use self-signed X.509certificate which is not approved yet. Whenever my GWT application make requests, It shows an error because of untrusted Certificate. Can i bypass this error from my GWT client code or suggest me an alternative solutions ?
Is there are any other protocol which supports WCF service that we can use for communication and will not trigger the security alert from browser?
Updated
Whole scenario:
You installed a
exein your system, which take cares ofWCFweb service and importing certificate to your local machine.You open a
GWTbased website from your browser. Let's saysome.comsome.comcontinuously polling a request to his/her local machine. Let's say onhttps://localhost:8098/{someendpoint}
But because of this HTTPS and untrusted certificate. It is not able to make request.