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 "L[[h: 'microsoft'Ōo"
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 "L[[h: 'IBM'őS"
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
|