⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 03 - writing a soap client.rb

📁 O Reilly Ruby Cookbook source code
💻 RB
字号:
require 'soap/rpc/driver'driver = SOAP::RPC::Driver.new(            'http://webservices.codingtheweb.com/bin/qotd',            'urn:xmethods-qotd')#---driver.add_method('getQuote')puts driver.getQuote# The holy passion of Friendship is of so sweet and steady and # loyal and enduring a nature that it will last through a whole # lifetime, if not asked to lend money.# Mark Twain (1835 - 1910)#---require 'soap/rpc/driver'driver = SOAP::RPC::Driver.new(   'http://services.xmethods.net/soap/',      # The endpoint url   'urn:xmethods-delayed-quotes')             # The namespace#---driver.add_method('getQuote', 'symbol')#---puts 'Stock price: %.2f' % driver.getQuote('TR')# Stock price: 28.78#---

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -