Invoking a web service

Im trying to connect to a webservice developed in java, but im getting
this error:

warning: peer certificate won't be verified in this SSL session
ignored element:
{http://schemas.microsoft.com/soap-toolkit/wsdl-extension}binding
warning: peer certificate won't be verified in this SSL session
#<SOAP::Mapping::Object:0x35b88dc>: SoapMapper:Converting data for
SoapMapper fa
iled inside the typemapper (SOAP::FaultError)

the function um trying to access in the wsdl is:

<message name="CMWS.CSPT_Search">
  <part name="User" type="xsd:string"/>
  <part name="Password" type="xsd:string"/>
  <part name="Key" type="xsd:string"/>
  <part name="SearchType" type="xsd:short"/>
  <part name="KeyType" type="xsd:short"/>
  <part name="FlagScope" type="xsd:short"/>
  <part name="IdDistrito" type="xsd:short"/>
  <part name="IdConcelho" type="xsd:short"/>
  <part name="FlagNoSort" type="xsd:short"/>
  <part name="RetCount" type="xsd:short"/>
  <part name="PostalCode" type="xsd:string"/>
  <part name="ProductCode" type="xsd:string"/>
  <part name="RequestRef" type="xsd:string"/>
  <part name="IdLanguage" type="xsd:short"/>
  <part name="Update" type="xsd:short"/>
  <part name="Priority" type="xsd:short"/>
  <part name="Comments" type="xsd:string"/>
</message>

and my ruby code to access the webservice:

require 'soap/wsdlDriver'

url = "https://myurl/aaa.WSDL"
soap = SOAP::WSDLDriverFactory.new(url).create_rpc_driver

puts
soap.CSPT_Search('u','u','1233333',0,3,2,0,0,1,1,'u','u','u',
1,0,0,'u')

Can anybody give me an help on this?
Thank you in advnace

Hi,

capi wrote:

Im trying to connect to a webservice developed in java, but im getting
this error:

#<SOAP::Mapping::Object:0x35b88dc>: SoapMapper:Converting data for
SoapMapper fa
iled inside the typemapper (SOAP::FaultError)

I think the server is implemented with MS SOAP Toolkit 2.0.

The raised exception should contain error details. Please try the
following program.

  require 'soap/wsdlDriver'
  url = "https://myurl/aaa.WSDL&quot;
  soap = SOAP::WSDLDriverFactory.new(url).create_rpc_driver
  begin
    puts
soap.CSPT_Search('u','u','1233333',0,3,2,0,0,1,1,'u','u','u',1,0,0,'u')
  rescue
    p $!
    p $!.detail
  end

If it won't go, add 'soap.wiredump_dev = STDOUT' before CSPT_Search and
show me the result.

Regards,
// NaHi