Displaying 20 results from an estimated 3000 matches similar to: "SOAP on rails? Confused..."
2006 Aug 10
3
Radio buttons refusing to load checked...
Hi,
Having big problems with radio buttons that just don''t make sense:
<%= radio_button "events", "impact_type", true %> Positive
<%= radio_button "events", "impact_type", false %> Negative
This should create two radio buttons with the first one checked by
default, right? Cos it doesn''t :(
Any ideas would be great,
Thanks,
2006 Jun 21
5
Rails application into HTML frames
Hey,
Just hoping I can get some pointers as I am completely new to Rails and
I have followed some tutorials to makes a database of data that I need,
but now I am completely stuck with how to make the Rails page appear
within my frameset. Hope that made some sense!
Thanks!
Bex
--
Posted via http://www.ruby-forum.com/.
2006 Jun 22
4
Shop plugin?
I hope I''m not completely off-base here but is there a shop plugin for
ruby/rails that means I don''t have to write the code for a shop from
scratch? Can''t seem to find one...
Thanks!
Bex
--
Posted via http://www.ruby-forum.com/.
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
2009 Jun 24
1
Qualified parameters in SOAP body using .SOAP
Hello,
I am trying to reach a web service using the SOAP package. I succeeded
calling the web service, but not sending parameters to it. After much
research and tries, I think I found that the problem lies in the
namespace including the parameters in the SOAP body.
In short, my question is: how can I send unqualified parameters in the
SOAP body of a call produced through the SOAP package?
2005 Mar 08
2
ActionWebService SOAP Faults aren''t schema valid
I''m working with an ActionWebService client
talking to an ActionWebService server through one of
DataPower''s XS40 XML Security Gateways. One of the
intrinsic functions of this gateway is automatic
SOAP schema validation.
When testing some failure cases, I noticed that SOAP
Faults returned by ActionWebService aren''t schema valid
to the SOAP 1.1 schema, specifically:
2006 Jul 19
1
Session management with SOAP and AWS
I''m working on a rails app where I''d like to have a session-based
SOAP API. That is, I''d like to connect via SSL and have a ''login''
method followed by one or more other methods.
I''m using the ActionWebService::Client::Soap class to connect to
my app, but each method invocation results in a new session on the
server (WEBrick, at the
2006 Feb 20
3
Trouble connecting to a Rails SOAP web service with a simple Ruby client
Hi,
The code for my Rails webservice is below. It working just fine
through the Rails web service scaffold invoke
http://localhost:3000/ProductBackend/invoke
I''m trying to write a plain ruby command line client to access the webservice.
require ''soap/rpc/driver''
proxy = SOAP::RPC::Driver.new("http://localhost:3000/product_backend",
2009 Mar 29
2
Mature SOAP Interface for R
Hello, we are writing rich internet user interfaces and like to call R
for some of the computational needs on the data, as well as some
creation of image files. Our objects communicate via the SOAP
interface. We have been researching the various packages to expose R as
a SOAP service.
No current CRAN SOAP packages however.
Found 3 to date:
RSOAP (http://sourceforge.net/projects/rsoap/)
2006 Jan 13
1
Send XML Document with SOAP
Hello,
yes it''s another ruby-nuby question but i cant find the right docs so I
hope either someone has an answer or can provide links to what i havent
been able to find.
I am trying to call a wsdl web service running on .net server with a
ruby client. I can make the request and with a wiredump I see the SOAP
request and responce XML files, the files are correct but I am not sure
2006 Jan 26
3
Calling a SOAP service from within a Rails controller
The following works fine as a standalone ruby program:
**********************************************************************************************
t = Time.now
starter = Time.local(t.year,t.mon, t.day) + (24 *3600)
ender = starter + 7 * 24 *3600
lat = 40.352039
lon = -74.191961
require ''soap/wsdlDriver''
params = {:maxt => false, :mint => false, :temp => true, :dew
2007 Nov 12
1
Microsoft SOAP - Help!!
Hello,
I am trying to access Microsoft Live Search Using SOAP through R.
In R I am using the RCurl packages to make the calls.
I have the following situation that looks crazy and cannot figure out how to
solve it:
#SOAP Request
library(RCurl)
h = basicTextGatherer()
body='<?xml version="1.0" encoding="ISO-8859-15"?>
<SOAP-ENV:Envelope
2006 Jun 14
5
Rails SOAP tutorial
Hi all..
I new in Ruby/Rails.. Where could i get some good tutorial about SOAP
using Rails?
I''ve been googling yet still did''nt find good tutorial.
Thank you in advance.. :)
--
Regards,
Ananda Putra
2006 Aug 04
1
SOAP::Mapping::Object attribute access
I have written a Rails web service, which is working exactly as expected.
The service has a method which returns an object of type
ActionWebService::Struct. In my SOAP client, I create a SOAP rpc driver, and
execute the method, like this:
book = driver.ShowTitle(params[:isbn])
I then do a:
logger.info book.inspect
and find this in the log:
<SOAP::Mapping::Object:0x..ca7b389da
2012 May 06
1
how to download data from soap server using R
i don't know perl,but on server site,they give soap:lite using perl ,
go to--->http://www.kegg.jp/kegg/soap/doc/keggapi_manual.html
i want to download data from kegg server ,using R only,
how to proceed?
& what is mean by SOAP client driver ?
also go to http://soap.genome.jp/KEGG.wsdl
--
View this message in context:
2006 May 05
1
Sending a <form> as a SOAP request
Hi,
I''m currently using the prototype.js script with the below code.
function ajaxSubmitForm(form, url, id) {
var params = Form.serialize($(form));
new Ajax.Updater(id, url, {asynchronous:true, parameters:params});
}
my wish is that I want to use it as.
function ajaxSubmitFormAsSoap(form, url, id) {
...
}
the idea is the same, the script must build a SOAP request
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
2008 Nov 03
3
Handling SOAP XML request and Response
Hi all,
I have a SOAP XML request coming from a VB6.0 application, which I
have to handle in my ROR application.
After the request is handled, i have to parse the request and check
the extracted values in the database according to the checking i have
to send a Response to the VB6.0 application.
Please tell me the procedure how can i used SOAP XML in ROR
application for handling these
2006 Jul 13
2
Simple dropdown menu
Hi, I''m quite new to this language and I''m having trouble finding out
simple things like a dropdown menu in rhtml. I know I have to use <%
select_tag %> but I''ve read lots of different ways to put in the options
so I''m a bit confused. Options are hard-coded for the menu I''m trying to
create so no database is involved!
Thanks v much!
Bex
--
2006 Jul 05
1
Process incoming SOAP requests?
We currently have a SOAP server that processes incoming requests. I''d
like to rewrite this system (maintaining the same SOAP interfaces)
utilizing RoR. What is the easiest way to go about this?
Thanks.
--
Posted via http://www.ruby-forum.com/.