Sets a listener for the results of a given web service request.
void WSBase.setListener( String requestID, WSListener listener ) throws QAException
requestID The ID of the web service request to which to listen for results.
listener The listener object that gets called when the result of the given web service request is available.
Listeners are typically used to get results of the asyncXYZ methods of the service.
To remove a listener, call setListener with null as the listener.
This method replaces the listener set by any previous call to setListener.