summaryrefslogtreecommitdiff
path: root/sample/soap/icd/icd.rb
blob: 6e1e51c996c8f07d870fc830aa4409775fbc7a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env ruby

$KCODE = 'SJIS'

require 'soap/rpc/driver'
require 'IICD'; include IICD

server = 'http://www.iwebmethod.net/icd1.0/icd.asmx'
wiredump_dev = nil # STDERR

icd = SOAP::RPC::Driver.new(server, IICD::InterfaceNS)
icd.wiredump_dev = wiredump_dev
icd.default_encodingstyle = SOAP::EncodingStyle::ASPDotNetHandler::Namespace
IICD::add_method(icd)

puts "キーワード: 'microsoft'で見出し検索"
result = icd.SearchWord('microsoft', true)

id = nil
result.WORD.each do |word|
  puts "Title: " << word.title
  puts "Id: " << word.id
  puts "English: " << word.english
  puts "Japanese: " << word.japanese
  puts "----"
  id = word.id
end

item = icd.GetItemById(id)
puts
puts
puts "Title: " << item.word.title
puts "意味: " << item.meaning

#p icd.EnumWords

puts
puts
puts "キーワード: 'IBM'で全文検索"
icd.FullTextSearch("IBM").WORD.each do |word|
  puts "Title: " << word.title
  puts "Id: " << word.id
  puts "English: " << word.english
  puts "Japanese: " << word.japanese
  puts "----"
end