Consultor Eletrônico



Kbase P160603: Getting error 11773 with HTTP 401 error when calling a web service operation
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   23/02/2010
Status: Unverified

SYMPTOM(s):

Getting error 11773 with HTTP 401 error when calling a web service operation

Error receiving Web Service Response: Authorization required. Status code 401 (unauthorized) received. (11773)

FACT(s) (Environment):

OpenEdge 10.x
All Supported Operating Systems

CAUSE:

Invalid or not supplying a login for SOAP end point access

FIX:

In the WebService connect statement add the login for SOAP end point with
-SOAPEndpointuserid and -SOAPEndpointPassword.
Example:
CREATE SERVER hWebService.
hWebService:CONNECT("-WSDL :/services?WSDL">https://<hostname>:<port>/services?WSDL
-SOAPEndpointUserid <username>
-SOAPEndpointPassword <pasword>
-nohostverify
").