From: Christopher Dancy Date: 2010-08-20T02:48:25+09:00 Subject: Soap4r method not allowed I'm a noob when it comes to soap so forgive me if the solution is completely obvious: I'm trying to implement a basic soap call like so namespace = 'country.asmx?WSDL' url = 'http://www.webservicex.net/' begin driver = SOAP::RPC::Driver.new(url,namespace) driver.add_method('GetCurrencies') puts driver.GetCurrencies rescue => err puts err.message end but whenever I run it I get: " 405:method not allowed " the wsdl is as follows: Someone let me know what I'm doing wrong. Please understand I've not done anything soap related before. -- Posted via http://www.ruby-forum.com/.