SSL Web Service Access

H

heikonolte

Hi,

I'm using the SOAP Client 3.0 to access a Web Service. The access works for
http. When I try to access the service using https, I get the message that
the server requires a client authentication. The service is available via
http basic authentication (user/pw) and my client performs a user/pw
authentication.

Accessing the service using the Java http commons library works fine with
https.

Could anybody give me a hint what is wrong here?

Thank you in advance and kind regards,

Heiko


===============

Code:

Dim str_WSML As String
str_WSML = ""

Set sc_EONOIrmsexposuredataS = New SoapClient30

sc_EONOIrmsexposuredataS.MSSoapInit2 c_WSDL_URL, str_WSML, c_SERVICE,
c_PORT, c_SERVICE_NAMESPACE
'Verwenden Sie den Proxyserver, der in den LAN-Einstellungen von
Internet Explorer festgelegt ist,
'indem Sie für "ProxyServer" den Wert <CURRENT_USER> festlegen.
sc_EONOIrmsexposuredataS.ConnectorProperty("ProxyServer") =
"<CURRENT_USER>"
'Proxyeinstellungen werden automatisch erkannt, wenn für Internet
Explorer die automatische Erkennung für
' aktiviert ist, indem für "EnableAutoProxy" der Wert "True" festgelegt
wird.
sc_EONOIrmsexposuredataS.ConnectorProperty("EnableAutoProxy") = True

'h16650: Manuell hinzugefügt
sc_EONOIrmsexposuredataS.ConnectorProperty("AuthUser") = "****"
sc_EONOIrmsexposuredataS.ConnectorProperty("AuthPassword") = "****"
sc_EONOIrmsexposuredataS.ConnectorProperty("WinHTTPAuthScheme") = 1
sc_EONOIrmsexposuredataS.ConnectorProperty("ConnectTimeout") = 20000
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top