Getting wsdl method param types?

hello all I'm using the following to get a driver to call to some
functions.

require 'soap/wsdlDriver'
wsdl = "http://localhost:8100/user/wsdl"
@drv = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver

works great, but now I want a simple list of methods, paramaters and
return values

i can get the available methods with

@drv.singleton_methods

but how do i get to see the return values and parameters per method in
an easy way?

thanks

bd

Hi,

Sorry for late reply.

_blackdog wrote:

hello all I'm using the following to get a driver to call to some
functions.

require 'soap/wsdlDriver'
wsdl = "http://localhost:8100/user/wsdl"
@drv = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver

works great, but now I want a simple list of methods, paramaters and
return values

i can get the available methods with

@drv.singleton_methods

but how do i get to see the return values and parameters per method in
an easy way?

I'm afraid there's no other way for now... cf.
http://dev.ctor.org/soap4r/ticket/141

Regards,
// NaHi