by batman Fri Aug 02, 2019 11:56 pm
Hi,
If the connection with the web service is successful then any error message returned by the service should be returned in the browser (provided your web service action is set to Output result as XML page)
If there is a core issue with connecting to the service such as connectivity or authorisation then an error will be generated and needs to be handled in your workflow through the error handling options (add a try step before the call and set your error handling to route on the alternative path)
Any error messages generated from the call can be retrieved through the Robot property -> Robot.executionErrors. On you alternative path add an assign variable step, choose expression for the assignment type then in the expression drop down you should see Robot Properties -> Robot.executionErrors. Assign this value to one of your variables and you should have the error message generated
Hope this helps!