similar to: Generating WSDL when using delegated or layered distpatching

Displaying 20 results from an estimated 3000 matches similar to: "Generating WSDL when using delegated or layered distpatching"

2006 Mar 19
0
User engine apparently breaks wsdl in some cases
(X-posting to the engine group as well) Wsdl calls fail under certain circumstances when the user engine is in use. After much experimentation, this is what I found. * I have an application that uses the login and user engines for permissions and security. The configuration works correctly. * I created a web service for the application. If I use direct dispatch (the default), I can both
2006 Jan 31
0
webservice problem (cant make client)
hey, i have made a webservice http://twodecode.pilot.localhost.be:3000/backend/wsdl here i can see the wsdl file i have a method string Authenticate(string twa, string login, string pass) when i do /invoke i can test it, this all works backend_api.rb class BackendApi < ActionWebService::API::Base api_method :authenticate, :expects => [{:twa =>:string},{:login
2006 Jan 28
0
.net WSDL SSL web service conumption
Hi, i''m trying to consume .NET webservice following one tutorial an currently have these lines of code: wsdl = "https://someserviceaddress" factory = SOAP::WSDLDriverFactory.new(wsdl) and running this code i''m getting: Unknown attr {}ref. Unknown element {http://schemas.xmlsoap.org/wsdl/http/}binding. Unknown element {http://schemas.xmlsoap.org/wsdl/http/}operation.
2006 Jan 04
0
Layered/Delegated WebService
Hi! How can I access to the Controller from a Layered web service? Cow
2007 Nov 03
1
Newbie: What is WSDL?
# Allow downloading Web Service WSDL as a file with an extension # instead of a file named ''wsdl'' map.connect '':controller/service.wsdl'', :action => ''wsdl'' That''s in the routes file, but what''s it for/mean? Thanks! Stedwick --~--~---------~--~----~------------~-------~--~----~ You received this message because you
2005 Mar 02
0
AWS WSDL Client Consumption
Has anyone had any great success in consuming web services from within ruby? I have had little to no problems publishing a WSDL based web service to the outside world from within ruby, however now I am attempting to consume the same ruby published web service with the AWS client back into ruby, and I am having problem after problem. Is there perhaps a help document or some manual that has a
2008 Feb 18
0
REST wsdl & Wavemaker
I''m currently investigating creating a Rails application that will offer a set of services for consumption by Wavemaker (used to be ActiveGrid) which is a front-end builder. Wavemaker is supposed to be able to consume SOAP and REST services, but the service import dialoge insists on a wsdl file in either case. I''ve just moved to Rails 2.0.2 to learn about REST and I see that
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,
2009 Nov 06
1
issues with SSOAP when wsdl has ComplexTypes
I recently started trying R and SSOAP and was able to successfully try a "hello world" service. I am now trying to get a more complicated interface to work with SSOAP and so far failed miserably at that and so need any help I can get from here. The service I am attaching is a prototype for a full service that would take information to identify a data source and a query to run and return
2007 Aug 09
0
layered SOAP webservices
Hi all, My SOAP web service works with direct and delegated dispatching. But as soon as I switch to layered, I get an error message no such web service ''api'' Now, the actionwebservice/lib/action_web_service/protocol/ soap_protocol.rb, in function decode_action_pack_request(action_pack_request), service_name = action_pack_request.parameters[''action'']
2006 May 31
0
Ruby calling wsdl for authenticate() Help
Hi, I have an url: "http://localhost:7000/Webservices/testService.jws?WSDL=" which i need to call from a ruby''s controller file TestWebService.rb for authenticating the user-id. Can someone help me out to solve my issue?. I have downloaded SOAP4R but nothing much I m able to get info for calling this webservice. Can someone help me out with proper steps to follow for
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:
2014 Jul 22
3
Question: Publishing R/S objects with WebServices (SOAP/WSDL)
Hello, Can anyone tell me if there is a package which will allow me to write a package in R, then publish the package using WebServices? The idea is that I want to be able to pass a data set into R, have R perform the calculations, then send the result back to either a .Net application or a LIMS BASIC application. So far I see many packages that allow R to consume WebServices, but I haven't
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
2006 Dec 01
3
Sessions in Layered Dispatching
Can you use sessions in layered dispatching? I used them in direct dispatching without any problems, but switching to layered throws an error (saying session doesn''t exist). Sorry if this is a double post, Google Groups isn''t posting my message for some reason. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this
2005 May 31
2
Rails Web Services
This deals with the Rails book, but ActionWebService in general. I''m having trouble getting the Rails book''s example in the Web Service chapter working. Everything else works (all the ''depot'' site features up to that point have been built and work). I don''t think it''s an issue with the book code being wrong, because the ActionWebService API
2006 Jan 31
2
Creating a web service with AWS
So I''ve read the Action Web Service bit of the documentation for a while, searched around and asked on the IRQ channel and I just can''t seem to get a simple Hello World type web service up and running with AWS on Rails. I have a file called hello_person_api.rb which looks like this: class HelloPersonAPI < ActionWebService::API::Base api_method :HelloName, :expects
2006 May 28
1
Changing module name - help!
When I started developing my application I grouped my controllers in the followin g fashion: User::ControllerName. Now I''ve realized that the ''User'' module is a misnomer for my current controllers and I need to use the User module for something else, so I decided to change the controllers in the ''User'' module to ''Data''.
2006 Jan 06
6
AWS and array of Model
Hi! I try to use a layered webservice and I want to get back an array of users; In the API I use: api_method :listUsers,:returns=>[[User]] in the service: def listUsers User.find(:all) end Result in soap mode: Don''t know how to cast TrueClass to Object Result in XML-RPC mode: You have a nil object when you didn''t expect it! You might have expected
2010 Jun 22
0
Working cludge [Re: SSOAP fails with .types[[1]] : subscript out of bounds]
Hi, so, last post from here unless I can provide any more input to fix the upstream package. On Tue, 2010-06-22 at 10:02 +0200, Steffen Neumann wrote: > So I got a bit further, the reason for the error is > that the WSDL *does not have* any <wsdl:types>...</wsdl:types>, I created a local copy and inserted a dummy <wsdl:types>...</wsdl:types> element. Then, my