search for: discover_web_service_request

Displaying 6 results from an estimated 6 matches for "discover_web_service_request".

2006 Jan 06
0
Rails ActionWebService and gSOAP interoperability problem
...ead being routed to the XML RPC protocol handler. Inspecting discovery.rb shows that things fall over when decoding the action pack request. If it tried SOAP first, that wouldn''t be a problem. Or if it tried to grok XML RPC and failed, it should have fallen back to SOAP? > def discover_web_service_request(action_pack_request) > (self.class.read_inheritable_attribute > ("web_service_protocols") || []).each do |protocol| > protocol = protocol.create(self) > request = protocol.decode_action_pack_request > (action_pack_request) >...
2006 Jan 07
0
gSOAP and ActionWebService interop problems
...d is instead being routed to the XML RPC protocol handler. Inspecting discovery.rb shows that things fall over when decoding the action pack request. If it tried SOAP first, that wouldn''t be a problem. Or if it tried to grok XML RPC and failed, it should have fallen back to SOAP? def discover_web_service_request(action_pack_request) (self.class.read_inheritable_attribute("web_service_protocols") || []).each do |protocol| protocol = protocol.create(self) request = protocol.decode_action_pack_request(action_pack_request) return request unless...
2006 Apr 26
0
Re: gSOAP and ActionWebService interop problems
...col discovery. Rail''s SOAP client also works perfectly, so I''m fairly certain the error is not in my code. I am new to both ActionWebService and the Ruby XMLRPC module, so I''m not quite sure what is supposed to be going on in Protocol::Discovery::InstanceMethods#discover_web_service_request. However, it seems that it expects Protocol::XmlRpc::XmlRpcProtocol#decode_action_pack_request to return nil in the case that the request is SOAP rather than throwing the "No valid method call" exception (see below). As a quick test, I wrapped the decode_action_pack_request call...
2006 Apr 17
5
XML-RPC Webservice API
...rpc_protocol.rb:36:in `decode_request'' /usr/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/protocol/xmlrpc_protocol.rb:32:in `decode_action_pack_request'' /usr/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/protocol/discovery.rb:20:in `discover_web_service_request'' /usr/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/protocol/discovery.rb:18:in `discover_web_service_request'' /usr/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/dispatcher/action_controller_dispatcher.rb:44:in `dispatch_web_service_...
2006 Jun 23
0
SOAP Web Service Exception
....rb:61:in `decode_request'' /usr/local/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/protocol/soap_protocol.rb:45:in `decode_action_pack_request'' /usr/local/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/protocol/discovery.rb:20:in `discover_web_service_request'' /usr/local/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/protocol/discovery.rb:18:in `discover_web_service_request'' /usr/local/lib/ruby/gems/1.8/gems/actionwebservice-1.1.2/lib/action_web_service/dispatcher/action_controller_dispatcher.rb:44:in `dispatc...
2005 Dec 30
5
AWS api_method :returns not accepting ActiveRecord::Base
I''m trying to use the feature of AWS where it will take an object derived from ActiveRecord::Base instead of an AWS::Struct object. Whenever I try it, though, I get the craziest error: NoMethodError: You have a nil object when you didn''t expect it! The error occured while evaluating nil.new /usr/lib/.../actionwebservice/lib/action_web_service/casting.rb:105:in