Calling ASP C# web service from Ruby?

M

mmm

Hi, I'm new to Ruby and would appreciate some suggestions....I'm
attempting to call a soap web service written in C# and hosted w/ IIS
from Ruby.

Does anyone know of a simple code segment that actually does this? The
AWS icd example that does this is giving lots of errors (c:/program
files/ruby/lib/ruby/1.8/xsd/charset.rb:97:in `encoding_conv': Converter
not found: UTF8 -> SJIS (XSD::Charset::CharsetConversionError) which I
do not understand and can't figure out how to resolve...

The code i've tried so far looks like this:
---
class GPSLog < ActionWebService::API::Base
inflect_names false
api_method :RetrLastPosition,
:expects => [:int],
:returns => [:int]
end

soap_client =
ActionWebService::Client::Soap.new(GPSLog,"http://localhost/WebService/GPSLog/GPSLog.asmx")
ret = soap_client.RetrLastPosition(11);
---

The error I'm getting back from the ASP server is: The request element
&lt;RetrLastPosition xmlns='urn:ActionWebService'&gt; was not
recognized."

....w/ a sc-status error of 500 from IIS.

As I'm new to this it seems there are a zillion things I could be doing
wrong so a working example would be really great or if some can point
me in the right direction it will be greatly appreciated, thanks, mmm
 
T

Tsume

soap_client =
ActionWebService::Client::Soap.new(GPSLog,"http://localhost/WebService/GPSL
og/GPSLog.asmx") ret = soap_client.RetrLastPosition(11);
---

The error I'm getting back from the ASP server is: The request element
&lt;RetrLastPosition xmlns='urn:ActionWebService'&gt; was not
recognized."

Remember, theres a certain company who likes to break every standard in the
book. Please try..

soap_client.default_encodingstyle =
SOAP::EncodingStyle::ASPDotNetHandler::Namespace

Tsume
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,074
Latest member
StanleyFra

Latest Threads

Top