Problem trying to call a web service.
I have a CF page that needs to use user authentication from an ASP.NET machine, so I'm trying to call a web service to determine whether or not the user has been authenticated.
I'm using this code:
<cfinvoke
webservice="https://my-domain.com/SessionQueryService?wsdl"
method="UserLookupServiceService"
returnvariable="authenticated"
>
Running this returns the following error:
Unable to read WSDL from URL: https://my-domain.com/SessionQueryService?wsdl.
Error: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated.
I'm assuming this is a certiificate problem, since when I visit the ASP.NET machine via a browser, I get a certificate warning and have to add an exception. Is my assumption correct, and is there a way around it?
