Long story/short: I'm on an internal network, with a REST service we created that runs on a server with some sort of self-signed certificate. I'm writing code for the front end of the application on another server.
I hit this with my javascript typeahead function. The REST call that answers the typehead is failing with a security warning SEC_ERROR_UNKNOWN_ISSUER
. I understand why, it's because the client can't find the cert in its root store.
Other than to get the REST server to install a corporate/verified certificate is there any other way around this? Is there some way to get my Javascript application to say "hey I don't care if whatever I'm talking to is unknown" (?)
Before anyone yells at me, this is all on a hardened internal network with zero access to or from the big bad internet. Thanks...