search for: createdriv

Displaying 3 results from an estimated 3 matches for "createdriv".

Did you mean: createdir
2006 Jan 28
0
.net WSDL SSL web service conumption
...sdl/http/}urlEncoded. Unknown element {http://schemas.xmlsoap.org/wsdl/mime/}mimeXml. Unknown element {http://schemas.xmlsoap.org/wsdl/http/}operation. Unknown element {http://schemas.xmlsoap.org/wsdl/http/}urlEncoded. when i''m trying to create driver using that factory: driver = factory.createDriver i see, that driver has all methods from web service, but when i''m trying to call methods, that originaly don''t have any parameters, ruby writes: ArgumentError: wrong number of arguments (0 for 2) does anybody have ideas, why ruby doesn''t recognize some of elements i...
2005 Mar 02
0
Re: AWS Client Usage
...ompared to .NET and Java at this juncture :) Anyhow, the Ruby SOAP bindings already have good client support, have you had any success with "soap/wsdlDriver"? I.e.: require "soap/wsdlDriver" factory = SOAP::WSDLDriverFactory.new("http://url/to/wsdl") client = factory.createDriver ret = client.someMethod(arg1, arg2) The main disadvantage of this approach of course being that any custom structured types will not have the same ancestry as the real ones, but if your client is completely seperate from the server, that should be fine. Regards Leon
2006 Jan 31
0
webservice problem (cant make client)
...;') #~ @result = service.Authenticate(''xxx'',''test'',''test'') #undefined method Authenticate #wsdl = "http://localhost/Twodecode.Webservices/Webservices.asmx?WSDL" #~ factory = SOAP::WSDLDriverFactory.new(wsdl) #~ @driver = factory.createDriver #~ result = @driver.Authenticate(''xxx'',''test'',''test'') #undefined mehtod create_rpc_driver #~ drv = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver #~ drv.wiredump_dev = STDOUT #~ dwml = drv.Authenticate(''xxx'',''...