Returns the error code of the last operation.
GetSOAPErr()
Type Returned:
Numeric(6)
Objects: Procedure, Transaction, Web Panel, Data Provider
Generators: .NET, .NET Framework, Java,
Android (since GeneXus 15 Upgrade 5),
Apple (since GeneXus 15 Upgrade 5)
The GetSOAPErr function returns the error code of the last SOAP operation. That is, when you have a Location variable and a location name is assigned to it, or when you make a SOAP call.
&Err = GetSOAPErr()
If &err <> 0 Or null(&location.Host)
Do Case
Case &err = -20007
&error = "Unknown error to set a web service, unknown location:" + &LocName + newline() + GetSOAPErrMsg()
Case &err > 0
&error = "Unknown error to set a web service:" + &LocName + newline() + GetSOAPErrMsg()
Otherwise
&error = "Error from unknown host to set a web service:" + &LocName
EndCase
Return
EndIf
Location
SOAP
GetSOAPErrMsg
Error Codes and Messages for Location