similar to: ActionWebService and WSDL

Displaying 20 results from an estimated 100 matches similar to: "ActionWebService and WSDL"

2008 May 22
3
SOAP client in Ruby/Rails
Hi all. I have a need to build a SOAP client using Ruby and Rails. I''m accessing a document/literal style SOAP service. I''ve been poring over documentation (well, there really doesn''t seem to be any, so that''s a little misleading), blog posts, and outdated tutorials all day, and I still don''t really have anywhere to begin. Every tutorial seems to have a
2005 Dec 16
11
mysql mem-tables vs. memcached
Could someone please elaborate on the technical differences and practical impact of whether choosing memory-based tables in MySQL or using memcached. I got this far on my own: It seems that MySQL uses the NDB engine for transaction-safe memory access in a cluster. the memory storage engine seems to be faster but not synchronizable by any means in a cluster. memcached seems to be ultimately fast
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 Mar 17
0
Generating WSDL when using delegated or layered distpatching
All, I can''t seem to come up with the appropriate incantation to Rails return WSDL for my web service. I am attempting to use layered dispatching. For direct dispatching, I can simply access http://localhoss:3000/controllername/service.wsdl and all works as advertised. When I configure for layered dispatch, the same invocation returns "unknown action". I''m
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 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 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:
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
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
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
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 Jul 18
2
connecting to a coldfusion web service
Hi, I''m connecting to a cf web service.... <cfcomponent> <cffunction name="myname" returntype="string" access="remote"> <cfreturn "fred" > </cffunction> </cfcomponent> using require ''soap/wsdlDriver'' wsdlfile = "http://localhost/docsearch/mainsearch.cfc?wsdl" factory =
2006 Jul 19
0
Web Service (server) and file_column issues
Hi there, I''m having some issues with using SOAP and file_column. The Web service I created is pretty straight forward. It gets the 5 most recently updated members from the database. Nothing too spectacular. However, the Members class uses file_column and when I try to connect to my web service I get this error: TypeError in Connect to serviceController#display_recent_updates Do
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
2006 Aug 07
1
ActionWebService: associations unavailable in SOAP response
I have create a web service to expose data from my application and am wondering why the associations are not showing up as values in my WSDL or SOAP response. In active record I have enabled eager loading so that the object set as the return type for the service call has all the associated data prior to the response. However, the associations are not showing up. Anyone have any ideas? I can
2006 Aug 15
0
ActionWebService and Key/Value Pairs
I''m trying to import data from an existing database that relies on key/value pairs. I''d like to set up an ActionWebService server for this data and have that system send a message to me when it receives something new, but I''m unsure of a way to handle the parameter specifiers on my end. Each request will contain a variable-length list of key/value pairs, but
2006 Jun 06
1
Returning related models with ActionWebService
Hi, I have an ActionWebService set up and I am wondering if it is possible to return related models through its intrinsic support for ActiveRecord. For instance, suppose I have an Author model that has_many Books. I would like to return a particular author and all of their books in one SOAP message. For now, I''ve been deconstructing the ActiveRecord Model and stuffing it all into
2006 Jun 07
0
Logger in ActionWebService::Base?
I''d like to split up my directly dispatched controller into a layered dispatch setup with one controller and two services derived from ActionWebService::Base. However, in doing this I found that logger is not a class_variable of AWS::Base. This kind of scares me away from using the layered dispatch mode, as I''d like to have logging in the method implementations. Is there a clean
2006 May 19
1
Getting a list of available methods from ActionWebService
Hi all, I dug around a bit, may have missed it. Is there a method automatically generated by ActionWebService (or XMLRPC::Server) that a client can use to list all available service methods (perhaps along with docs)? Or do I have to roll that myself? Thanks, Dan This communication is the property of Qwest and may contain confidential or privileged information. Unauthorized use of this