similar to: Paypal and soap4r gems

Displaying 20 results from an estimated 600 matches similar to: "Paypal and soap4r gems"

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>
2007 Aug 14
2
bizare soap4r problem
Hey chaps I am using classes I generated from wsdl2ruby, and they work like a charm when running somthing like: ruby -d path/to/file.rb and i get the result I expect. However, when I use them within rails, the actual xml it puts together is different. Using wire dump i see that (and this is a key part of the web service) looks like: <n1:inRecipientIDs
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:
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:
2006 Feb 17
4
PayPal WSDL API on Rails anyone ?
Hi ! Has anyone connected to the Mass Pay API of PayPal using Rails ? I need to do this for a customer, and I wanted to know how easy/hard it was. I have no experience using SOAP, WSDL, etc. I saw soap4r[1] on the RAA[2]. This is probably what I''ll need to use. One question I haven''t answered yet is whether soap4r will accept PayPal''s certificates ? Thanks for any
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
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
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,
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
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
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
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
2005 Dec 27
0
Newbie: Getting Book Data from Amazon
As part of my inaugural Ruby project, I''ve been trying to get data for books from Amazon''s web services. The first thing I tried was Ruby/Amazon <http://www.caliban.org/ruby/ruby-amazon.shtml>. It works great, but is based on an earlier version of Amazon''s Web Services, which apparently doesn''t return a complete set of data for the items it
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 Apr 11
2
Uploading files using a web service
i am writting a web service that will enable users to upload image files...but then the problem is...i will have to use Soap4R, now my question is....the API generated(or whatever you call it, wsdl file that i get) will support standard SOAP implementation??...so i can use Mono.NET to call this web service and upload files. I ask this because as per my knowledge SOAP4R is different...so will
2006 Jun 15
2
AWS Client - There has to be a better way
I''m working on building a SOAP client with AWS, i.e: class PersonAPI < ActionWebService::API::Base api_method :find_all, :returns => [[Person]] end soap_client = ActionWebService::Client::Soap.new(PersonAPI, "http://...") persons = soap_client.find_all This works well but I think it breaks down quickly when you try to do real world work. Lets take a moderately
2005 Nov 19
1
Rails as SOAP client with .NET web service
Hi For an application we need to obtain data from a .NET based web service. I''ve been "playing" with some sample code to invoke web services as a soap client. They work ok with services that offer a .wsdl link. However, .NET based services are called with "*.asmx?WSDL". The wsdlDriver (I guess SOAP4R) barfs on this. Anybody have practical experience and willing/able
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