similar to: bizare soap4r problem

Displaying 20 results from an estimated 200 matches similar to: "bizare soap4r problem"

2006 Dec 04
0
Paypal and soap4r gems
WSDL conversion as proposed in the paypal plugin howto doesn''t work. Any idea what goes wrong? See the output below. rsp@hollerith:~/workspace/pptest/vendor/plugins/paypal$ wsdl2ruby.rb --wsdl http://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl --type client --force F, [2006-12-04T16:30:43.136405 #11579] FATAL -- app: Detected an exception. Stopping ... undefined method `new'' for
2008 Mar 04
0
soap4r in wrong format
Hi people, I was wondering if anyone has any experience with using soap4r. I''ve done the whole wsdl2ruby and basically evrything works fine, were it not that the servive I am talking to has a different standard concerning the XML I am sending. -- What soap4r does <xmlJob> <Job> <CBCustomApplyType>CANone</CBCustomApplyType>
2010 Apr 27
0
Redone setup, bizare problems
Hi ! Sorry if this is a long post... I had this setup for about a year without problems : Network A <-> wrv200 <-> internet <-> wrv200 <-> net b The 2 networks are linked with an ipsec vpn. The 2 internet connections are with the same cable company to minimize latency, both separates /24 subnets. On network A, I got 2 computers, a single sip phone (aastra
2006 Sep 18
1
Updated Soap4r for use with Rails App on a host
I need to use the lastest build of the soap4r on my rails app hosted at TextDrive. I have put the soap4r files into vendors and was hoping to append the dir to the lookup path doing: $:.unshift("#{RAILS_ROOT}/vendor/soap4r/lib") Unfortunately, it seems to be using the files in /usr/local/lib/ruby/1.8. Am I missing something here to get this working? Cheers, Nicholas
2007 Jan 29
1
SOAP4R Error in Rails
Hi all I have a ruby script that calls a web service which works just fine, However when i try to use the same code from a rails model I get the following error: uninitialized constant SOAP::Mapping::EncodedRegistry I have tried to load the gem soap4r from both the model and the config/environment.rb files but i still get the same error Any ideas on what I''m doing wrong ??? Thanks
2007 Sep 02
0
soap4r alternitives?
Hey chaps I was just wondering if they are any alternatives to soap4r out there? I have a SOAP service im using, and with soap4r it seems dang slow, but when i access the same service with PHP it is vastly quicker? Cheers all Tim -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2007 Mar 26
0
soap4r for one controller
Is there a way to use soap4r for only one controller and use the built-in ruby standard library for others? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2009 Jan 13
0
Accessing SharePoint using soap4r
I''m trying to access SharePoint using soap4r in my app. At the moment, I can''t even authenticate. Has anyone had success with this? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2008 Dec 10
3
How to stop SOAP4R/OpenSSL requiring cert?
Hi I want to consume some web services that are only available over HTTPS. My method looks like this: def lookup_id myid=params[:id] driver = SOAP::WSDLDriverFactory.new("https://server.com/xxx.wsdl").create_rpc_driver @p=driver.verifyId(AUTH_TOKEN, PIN, myid) end Although this works fine on my local box (with a warning), when deployed to the staging server I get:
2008 Jul 08
0
soap4r cannot access server application after soap server is started
I ve started soap r my application. it works fine. But i m not getting from were to start soap server :0( if i start it from controller then i m not able to access the server application. if i start from console then it works fine and also i can access server application. Please can anyone help me from where to start soap server? currently my server side for starting soap server , code looks like
2011 Jan 03
4
How to get soap4r to not bother verifying SSL certificate (verify_mode none)?
Using Ruby 1.8.7, Rails 2.3.8. I don''t want it to verify the cert... This is my backtrace: OpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed): httpclient (2.1.5.2) lib/httpclient/session.rb:247:in `connect'' httpclient (2.1.5.2) lib/httpclient/session.rb:247:in `ssl_connect'' httpclient
2008 Oct 23
4
Soap4R
The following two line code creates the issue: factory = SOAP::WSDLDriverFactory.new("http://aspire388:8080/ClubConcierge306/axis/LWFlowerService?wsdl") soap = factory.create_rpc_driver The error message is: part: requestParams cannot be resolved RAILS_ROOT: E:/Pavo/csat Application Trace | Framework Trace | Full Trace c:/ruby/lib/ruby/1.8/wsdl/soap/methodDefCreator.rb:144:in
2005 Dec 30
4
soap4r 1.5.5 seems to break actionWebService tests
Hi, I just upgraded to soap4r 1.5.5, and now all my Rails Functional tests for the action_web_services fail as follows, any ideas what I did wrong? Thanks TypeError: can''t modify frozen object /usr/local/lib/ruby/1.8/xsd/qname.rb:78:in `name='' /usr/local/lib/ruby/1.8/soap/rpc/element.rb:118:in `set_param''
2006 Jan 30
3
webservice consumption over SSL
Hi, as long as nobody answered to my previous question, i''ll try to write in another way. I have: webservice WSDL link (https://something?WSDL, that''s .net webservice) pem file (certificate, needed to authentificate for gettting data) i need : to consume that webservice without describing API''s for each method (i mean use WSL to construct needed structures or objects).
2006 May 17
6
Problem Consuming a Web Service
I''m trying to consume a webservice from my rails application and have discovered an interesting problem. I can call webservice functions just fine, as long as they do not require any arguments, but function that do require arguments do not work. The arguments are sent as either null or an empty string. My API has these method definitions: api_method :otherFunction,
2009 Nov 03
1
help with SSOAP (can't find working examples)
First of all, let me confess that I am a newbie to R and don't know much about the language or the environment. We have a need for plugging in R in our production runtime and need the ability to pull data out of our existing services. I am trying to see if I can take advantage of SSOAP such that we can expose the data via webservices and use SSOAP to call into them. Our runtime is mostly
2005 Dec 21
1
ActionWebService and WSDL
The suggested approach for developing a web service using ActionWebService appears to be start by defining the API you want and then you can generate WSDL. I want to start from WSDL. I''ve tried wsdl2ruby but the Ruby code it generates does not appear to play well with Rails. Is there a way I can get what I want? I''m new at this so if the answer is a forehead slapper,
2006 Apr 07
2
ActionWebService and namespaces
Hi all, I''ve tried to search the mailing list, web, etc. and haven''t found anything that seems to answer my question. I have a WSDL for a web service written in Java, and I''m trying to consume it in ruby using ActionWebService. I''ve created my API and some struct classes. I''ve found the :namespace option to ActionWebService::Client::Soap.new, but
2006 Jan 31
0
I need a wsdl tutorial.
I have a wsdl, and I have run soap4r''s wsdl2ruby, but now I need a tutorial on what to do with it. Any Suggestions? Enrico --------------------------------- What are the most popular cars? Find out at Yahoo! Autos -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Mar 03
0
how to use Wsdl2ruby generated files
i am cloning a current soap server to ruby and i have zero experience in this soap thing. i did a wsdl2ruby on the url and generated 3 riles DriverDataServiceMappingRegistry.rb DriverDataService.rb DriverServiceServant.rb how do i use the files to setup a soap server ? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message