Is it possible to look at the values of the parameters of the method call being made by a Web service client
using a handler.
Eg. If a client makes a call that looks like
serviceObj.methodCall('Value1');
Can I, within a handler (set on the requestFlow or responseFlow) get to the value 'Value1' ?. I am guessing this
might not be possible on the requestFlow for sure. I am able to get the OperationDesc
and get the parameter types, but I don't see anything where I can get the parameter values. I would like to put a
handler to log the method calls made and the values that were passed into those method calls.
Any ideas/pointers would be greatly appreciated.
Thanks
-Saravanan