Client Web Services and the Debugger
Your test view containing your client web service will be run under the control of the debugger. You will typically debug a client web service by placing a breakpoint on the line of code that makes the web service function call.
Alternatively, you could open the client web service class package (e.g., cWSHelloService.pkg) and place breakpoints within the appropriate functions in the class. This lets you ensure that the call is actually being made and that the parameters passed and returned are correct. If you have unexpected results, you could then step into the web service and follow the entire process of:
- Creating an XML SOAP request
- Invoking the HTTP request
- Parsing the SOAP response
While you could do this, you might find it much easier to use the Client Test View Helper described below.