Sha256: fac491b6c23e33020f10a96b1a41cfbcf9dd4d522b8aba4f157c3ec8a245921a

Contents?: true

Size: 444 Bytes

Versions: 5

Compression:

Stored size: 444 Bytes

Contents

#!/usr/bin/env ruby
# encoding: ASCII-8BIT

$KCODE = 'SJIS'

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

server = 'http://btonic.est.co.jp/NetDic/NetDicv06.asmx'
wiredump_dev = STDERR       # STDERR

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

p dic.GetDicList()

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
soap5r-2.0.3 sample/showcase/soap/netDicV06/netDicV06.rb
soap5r-2.0.2 sample/showcase/soap/netDicV06/netDicV06.rb
soap5r-2.0.1 sample/showcase/soap/netDicV06/netDicV06.rb
soap5r-2.0.0 sample/showcase/soap/netDicV06/netDicV06.rb
soap5r-2.0.0.20120130130121 sample/showcase/soap/netDicV06/netDicV06.rb