Hey guys, I am trying to call a java soap webservice within my ruby on rails app. Therefor I use the following code:
email = "[email protected]"
pw = "legendary"
XSD::Charset.encoding = 'UTF8'
wsdlfile = "http://134.60.60.40:8080/FuturecanteenWebservice/DatabaseWSService?wsdl"
driver = SOAP::WSDLDriverFactory.new(wsdlfile).create_rpc_driver
driver.connectDB
@result = driver.checkUserForLogin(email, pw)
but when I run the action above I am always getting wrong number of arguments for any kind of method of the webservice I try to use.
Can anybody help me with this one?
Cheers for any help.