Dan Diephouse <dan <at> envoisolutions.com> writes:

> 
> 
> Hi Marty,You can get access to the ServiceInfo object, which provides all
sorts of metadata about your service. Think of it like a reflection api for web
services:Client c = new Client(new URL(".../wsdl");
> ServiceInfo si = c.getService().getServiceInfo();Collection ops =
si.getOperations();OperationInfo op = si.getOperation("echo");List parts =
op.getInputMessage().getMessageParts();System.out.println
> ("Number of parameters: " + parts.size());MessagePartInfo part =
(MessagePartInfo) parts.get(0);System.out.println("Part name: " +
part.getName());Hope that helps. Regards,- Dan
> 


Dan, thanks a million.  Star man.
This is exactly what I needed.  I think I was getting too caught up in it and
couldn't see the wood for the trees.  

Marty




---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to