Ruby calls WebServices

Source: Internet
Author: User
Tags wsdl

Demo WebService public addnumber method:

[Webmethod]
Public int addnumber (int x, int y)
{
Return X + Y;
}

WebServices calling using Ruby:

Require 'soap/wsdldriver'

WSDL = "http: // localhost/webapptest/webservicesdemo/demo. asmx? WSDL"
Params = {: x => 1,: Y => 4}
DRV = soap: wsdldriverfactory. New (WSDL). create_rpc_driver
# Method1:
Result = DRV. addnumber (Params)
# Method2:
Result = DRV. Send ("addnumber", Params)

P result ["addnumberresult"] # Return 5

You can use the rpc_driver instance to directly call the addnumber method, as shown in # Method1. You can also use the send method name, as shown in # method2. The parameter is a hash, and its key value must be consistent with the parameter name defined by webmethod. The return value is also a hash, and its key value is "# {methodname} result ".

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.