From: mghaught@... Date: 2006-01-03T02:27:57+09:00 Subject: Trouble with WSDL I'm having some trouble getting the WSDLDriverFactory to create a driver for an Apache Axis generated wsdl. Whenever I attempt to connect this is the error I get: /usr/lib/ruby/1.8/wsdl/xmlSchema/sequence.rb:33:in `elementformdefault': undefined method `elementformdefault' for # (NoMethodError) I'm inexperienced with web services so I'm not sure if it's a problem with their wsdl or the ruby classes. Here's a snippet of the generated wsdl I'm trying to load: Here's the code I'm attempting to access it with: require "soap/wsdlDriver" begin wsdl = "http://local.razorstream.com:8080/eve-service/wsdl/RazorStreamEve.wsdl" soap = SOAP::WSDLDriverFactory.new(wsdl).createDriver result = soap.call('GetUsageRequest') end I'd appreciate any insight you can offer. Cheers, Marty