In your generated (from wsdl) SOAP client class change the LOCATION class parameter with correct url including port number.
Another option is to set the Location property in your code when you use the client class, somthing like:
Set wsClient=##class(your.generated.SoapClient).%New()
Set wsClient.Location="https://path.to.server:NNNN/path.to.service"
Set client.SSLConfiguration ="SSLConfig"
- Log in to post comments