From: srikanth Date: 2007-03-21T05:55:13+09:00 Subject: Ruby client for a Java webservice Hi I am accessing a webservice ( written in Java ) . below is the code I have written, to access a login method that takes a String,String,ArrayofString as param. require 'soap/wsdlDriver' wsdl = 'http://abc.com:80/cwpidws/cwpidws?WSDL' driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver driver.wiredump_file_base = "soapresult" param3 = Array.new(25,String) driver.login( "abcd", "efgh", param3) however the input message does not set the params the right way. The two strings ( String_1 and String_2) are not part of the message . how do i set the parameters to the function. -- Posted via http://www.ruby-forum.com/.