soap4r_es 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/bin/wsdl2ruby.rb +140 -0
- data/bin/wsdl2ruby_rails.rb +140 -0
- data/bin/xsd2ruby.rb +92 -0
- data/lib/soap/attachment.rb +109 -0
- data/lib/soap/attrproxy.rb +35 -0
- data/lib/soap/baseData.rb +1095 -0
- data/lib/soap/element.rb +278 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +208 -0
- data/lib/soap/encodingstyle/handler.rb +121 -0
- data/lib/soap/encodingstyle/literalHandler.rb +196 -0
- data/lib/soap/encodingstyle/soapHandler.rb +560 -0
- data/lib/soap/filter/filterchain.rb +52 -0
- data/lib/soap/filter/handler.rb +32 -0
- data/lib/soap/filter/streamhandler.rb +30 -0
- data/lib/soap/filter.rb +14 -0
- data/lib/soap/generator.rb +299 -0
- data/lib/soap/header/handler.rb +64 -0
- data/lib/soap/header/handlerset.rb +78 -0
- data/lib/soap/header/mappinghandler.rb +48 -0
- data/lib/soap/header/simplehandler.rb +45 -0
- data/lib/soap/httpconfigloader.rb +140 -0
- data/lib/soap/mapping/encodedregistry.rb +541 -0
- data/lib/soap/mapping/factory.rb +389 -0
- data/lib/soap/mapping/literalregistry.rb +392 -0
- data/lib/soap/mapping/mapping.rb +577 -0
- data/lib/soap/mapping/registry.rb +297 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +171 -0
- data/lib/soap/mapping/typeMap.rb +107 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +212 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +249 -0
- data/lib/soap/mapping.rb +13 -0
- data/lib/soap/marshal.rb +60 -0
- data/lib/soap/mimemessage.rb +243 -0
- data/lib/soap/nestedexception.rb +43 -0
- data/lib/soap/netHttpClient.rb +242 -0
- data/lib/soap/ns.rb +39 -0
- data/lib/soap/parser.rb +253 -0
- data/lib/soap/processor.rb +67 -0
- data/lib/soap/property.rb +330 -0
- data/lib/soap/proxy.rb +15 -0
- data/lib/soap/rpc/cgistub.rb +249 -0
- data/lib/soap/rpc/driver.rb +222 -0
- data/lib/soap/rpc/element.rb +375 -0
- data/lib/soap/rpc/httpserver.rb +144 -0
- data/lib/soap/rpc/methodDef.rb +69 -0
- data/lib/soap/rpc/proxy.rb +573 -0
- data/lib/soap/rpc/router.rb +672 -0
- data/lib/soap/rpc/rpc.rb +26 -0
- data/lib/soap/rpc/soaplet.rb +201 -0
- data/lib/soap/rpc/standaloneServer.rb +44 -0
- data/lib/soap/soap.rb +163 -0
- data/lib/soap/streamHandler.rb +302 -0
- data/lib/soap/version.rb +12 -0
- data/lib/soap/wsdlDriver.rb +165 -0
- data/lib/wsdl/binding.rb +66 -0
- data/lib/wsdl/data.rb +65 -0
- data/lib/wsdl/definitions.rb +237 -0
- data/lib/wsdl/documentation.rb +33 -0
- data/lib/wsdl/import.rb +81 -0
- data/lib/wsdl/importer.rb +39 -0
- data/lib/wsdl/info.rb +51 -0
- data/lib/wsdl/message.rb +55 -0
- data/lib/wsdl/operation.rb +152 -0
- data/lib/wsdl/operationBinding.rb +241 -0
- data/lib/wsdl/param.rb +94 -0
- data/lib/wsdl/parser.rb +180 -0
- data/lib/wsdl/part.rb +53 -0
- data/lib/wsdl/port.rb +67 -0
- data/lib/wsdl/portType.rb +76 -0
- data/lib/wsdl/service.rb +62 -0
- data/lib/wsdl/soap/address.rb +41 -0
- data/lib/wsdl/soap/binding.rb +50 -0
- data/lib/wsdl/soap/body.rb +59 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
- data/lib/wsdl/soap/classDefCreator.rb +529 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +242 -0
- data/lib/wsdl/soap/classNameCreator.rb +57 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +107 -0
- data/lib/wsdl/soap/complexType.rb +174 -0
- data/lib/wsdl/soap/data.rb +43 -0
- data/lib/wsdl/soap/definitions.rb +201 -0
- data/lib/wsdl/soap/driverCreator.rb +121 -0
- data/lib/wsdl/soap/element.rb +34 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +74 -0
- data/lib/wsdl/soap/fault.rb +57 -0
- data/lib/wsdl/soap/header.rb +87 -0
- data/lib/wsdl/soap/headerfault.rb +57 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +116 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +59 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +380 -0
- data/lib/wsdl/soap/methodDefCreator.rb +200 -0
- data/lib/wsdl/soap/operation.rb +113 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +92 -0
- data/lib/wsdl/soap/servletStubCreator.rb +105 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +101 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +249 -0
- data/lib/wsdl/types.rb +45 -0
- data/lib/wsdl/wsdl.rb +25 -0
- data/lib/wsdl/xmlSchema/all.rb +25 -0
- data/lib/wsdl/xmlSchema/annotation.rb +35 -0
- data/lib/wsdl/xmlSchema/any.rb +62 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +49 -0
- data/lib/wsdl/xmlSchema/attribute.rb +105 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +69 -0
- data/lib/wsdl/xmlSchema/choice.rb +59 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +98 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +120 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +105 -0
- data/lib/wsdl/xmlSchema/complexType.rb +194 -0
- data/lib/wsdl/xmlSchema/content.rb +96 -0
- data/lib/wsdl/xmlSchema/data.rb +117 -0
- data/lib/wsdl/xmlSchema/element.rb +154 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +37 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +38 -0
- data/lib/wsdl/xmlSchema/group.rb +101 -0
- data/lib/wsdl/xmlSchema/import.rb +53 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
- data/lib/wsdl/xmlSchema/importer.rb +103 -0
- data/lib/wsdl/xmlSchema/include.rb +48 -0
- data/lib/wsdl/xmlSchema/length.rb +38 -0
- data/lib/wsdl/xmlSchema/list.rb +49 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +38 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +38 -0
- data/lib/wsdl/xmlSchema/minlength.rb +38 -0
- data/lib/wsdl/xmlSchema/parser.rb +168 -0
- data/lib/wsdl/xmlSchema/pattern.rb +37 -0
- data/lib/wsdl/xmlSchema/ref.rb +34 -0
- data/lib/wsdl/xmlSchema/schema.rb +179 -0
- data/lib/wsdl/xmlSchema/sequence.rb +55 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +70 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +63 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +133 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +88 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +38 -0
- data/lib/wsdl/xmlSchema/union.rb +36 -0
- data/lib/wsdl/xmlSchema/unique.rb +35 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +38 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +177 -0
- data/lib/xsd/charset.rb +190 -0
- data/lib/xsd/codegen/classdef.rb +230 -0
- data/lib/xsd/codegen/commentdef.rb +35 -0
- data/lib/xsd/codegen/gensupport.rb +277 -0
- data/lib/xsd/codegen/methoddef.rb +71 -0
- data/lib/xsd/codegen/moduledef.rb +209 -0
- data/lib/xsd/codegen.rb +13 -0
- data/lib/xsd/datatypes.rb +1465 -0
- data/lib/xsd/datatypes1999.rb +21 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +69 -0
- data/lib/xsd/namedelements.rb +133 -0
- data/lib/xsd/ns.rb +183 -0
- data/lib/xsd/qname.rb +80 -0
- data/lib/xsd/xmlparser/libxmlparser.rb +136 -0
- data/lib/xsd/xmlparser/nokogiriparser.rb +63 -0
- data/lib/xsd/xmlparser/ogaparser.rb +53 -0
- data/lib/xsd/xmlparser/oxparser.rb +97 -0
- data/lib/xsd/xmlparser/parser.rb +101 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
- data/lib/xsd/xmlparser.rb +81 -0
- metadata +240 -0
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# SOAP4R - MIME Message implementation.
|
|
3
|
+
# Copyright (C) 2002 Jamie Herre.
|
|
4
|
+
|
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
7
|
+
# either the dual license version in 2003, or any later version.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
require 'soap/attachment'
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
module SOAP
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# Classes for MIME message handling. Should be put somewhere else!
|
|
17
|
+
# Tried using the 'tmail' module but found that I needed something
|
|
18
|
+
# lighter in weight.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class MIMEMessage
|
|
22
|
+
class MIMEMessageError < StandardError; end
|
|
23
|
+
|
|
24
|
+
MultipartContentType = 'multipart/\w+'
|
|
25
|
+
|
|
26
|
+
class Header
|
|
27
|
+
attr_accessor :str, :key, :root
|
|
28
|
+
|
|
29
|
+
def initialize
|
|
30
|
+
@attrs = {}
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def [](key)
|
|
34
|
+
@attrs[key]
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def []=(key, value)
|
|
38
|
+
@attrs[key] = value
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def to_s
|
|
42
|
+
@key + ": " + @str
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
class Headers < Hash
|
|
47
|
+
def self.parse(str)
|
|
48
|
+
new.parse(str)
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def parse(str)
|
|
52
|
+
header_cache = nil
|
|
53
|
+
str = str.lines if str.respond_to?(:lines) # RubyJedi: compatible with Ruby 1.8.6 and above
|
|
54
|
+
str.each do |line|
|
|
55
|
+
case line
|
|
56
|
+
when /^\A[^\: \t]+:\s*.+$/
|
|
57
|
+
parse_line(header_cache) if header_cache
|
|
58
|
+
header_cache = line.sub(/\r?\n\z/, '')
|
|
59
|
+
when /^\A\s+(.*)$/
|
|
60
|
+
# a continuous line at the beginning line crashes here.
|
|
61
|
+
header_cache << line
|
|
62
|
+
else
|
|
63
|
+
raise RuntimeError.new("unexpected header: #{line.inspect}")
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
parse_line(header_cache) if header_cache
|
|
67
|
+
self
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def parse_line(line)
|
|
71
|
+
if /^\A([^\: \t]+):\s*(.+)\z/ =~ line
|
|
72
|
+
header = parse_rhs($2.strip)
|
|
73
|
+
header.key = $1.strip
|
|
74
|
+
self[header.key.downcase] = header
|
|
75
|
+
else
|
|
76
|
+
raise RuntimeError.new("unexpected header line: #{line.inspect}")
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def parse_rhs(str)
|
|
81
|
+
a = str.split(/;+\s+/)
|
|
82
|
+
header = Header.new
|
|
83
|
+
header.str = str
|
|
84
|
+
header.root = a.shift
|
|
85
|
+
a.each do |pair|
|
|
86
|
+
if pair =~ /(\w+)\s*=\s*"?([^"]+)"?/
|
|
87
|
+
header[$1.downcase] = $2
|
|
88
|
+
else
|
|
89
|
+
raise RuntimeError.new("unexpected header component: #{pair.inspect}")
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
header
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
def add(key, value)
|
|
96
|
+
if key != nil and value != nil
|
|
97
|
+
header = parse_rhs(value)
|
|
98
|
+
header.key = key
|
|
99
|
+
self[key.downcase] = header
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
def to_s
|
|
104
|
+
self.values.collect { |hdr|
|
|
105
|
+
hdr.to_s
|
|
106
|
+
}.join("\r\n")
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
class Part
|
|
111
|
+
attr_accessor :headers, :body
|
|
112
|
+
|
|
113
|
+
def initialize
|
|
114
|
+
@headers = Headers.new
|
|
115
|
+
@headers.add("Content-Transfer-Encoding", "8bit")
|
|
116
|
+
@body = nil
|
|
117
|
+
@contentid = nil
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
def self.parse(str)
|
|
121
|
+
new.parse(str)
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
def parse(str)
|
|
125
|
+
headers, body = str.split(/\r\n\r\n/, 2)
|
|
126
|
+
if headers != nil and body != nil
|
|
127
|
+
@headers = Headers.parse(headers)
|
|
128
|
+
@body = body.sub(/\r\n\z/, '')
|
|
129
|
+
else
|
|
130
|
+
raise RuntimeError.new("unexpected part: #{str.inspect}")
|
|
131
|
+
end
|
|
132
|
+
self
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
def contentid
|
|
136
|
+
if @contentid == nil and @headers.key?('content-id')
|
|
137
|
+
@contentid = @headers['content-id'].str
|
|
138
|
+
@contentid = $1 if @contentid =~ /^<(.+)>$/
|
|
139
|
+
end
|
|
140
|
+
@contentid
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
alias content body
|
|
144
|
+
|
|
145
|
+
def to_s
|
|
146
|
+
@headers.to_s + "\r\n\r\n" + @body
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
def initialize
|
|
151
|
+
@parts = []
|
|
152
|
+
@headers = Headers.new
|
|
153
|
+
@root = nil
|
|
154
|
+
@boundary = nil
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
def self.parse(head, str)
|
|
158
|
+
new.parse(head, str)
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
attr_reader :parts, :headers
|
|
162
|
+
|
|
163
|
+
def close
|
|
164
|
+
@headers.add(
|
|
165
|
+
"Content-Type",
|
|
166
|
+
"multipart/related; type=\"text/xml\"; boundary=\"#{boundary}\"; start=\"#{@parts[0].contentid}\""
|
|
167
|
+
)
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
def parse(head, str)
|
|
171
|
+
@headers = Headers.parse(head + "\r\n" + "From: jfh\r\n")
|
|
172
|
+
boundary = @headers['content-type']['boundary']
|
|
173
|
+
if boundary != nil
|
|
174
|
+
parts = str.split(/--#{Regexp.quote(boundary)}\s*(?:\r\n|--\r\n)/)
|
|
175
|
+
part = parts.shift # preamble must be ignored.
|
|
176
|
+
@parts = parts.collect { |part| Part.parse(part) }
|
|
177
|
+
else
|
|
178
|
+
@parts = [Part.parse(str)]
|
|
179
|
+
end
|
|
180
|
+
if @parts.length < 1
|
|
181
|
+
raise MIMEMessageError.new("This message contains no valid parts!")
|
|
182
|
+
end
|
|
183
|
+
self
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
def root
|
|
187
|
+
if @root == nil
|
|
188
|
+
start = @headers['content-type']['start']
|
|
189
|
+
@root = (start && @parts.find { |prt| prt.contentid == start }) ||
|
|
190
|
+
@parts[0]
|
|
191
|
+
end
|
|
192
|
+
@root
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
def boundary
|
|
196
|
+
if @boundary == nil
|
|
197
|
+
@boundary = "----=Part_" + __id__.to_s + rand.to_s
|
|
198
|
+
end
|
|
199
|
+
@boundary
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
def add_part(content)
|
|
203
|
+
part = Part.new
|
|
204
|
+
part.headers.add("Content-Type",
|
|
205
|
+
"text/xml; charset=" + XSD::Charset.xml_encoding_label)
|
|
206
|
+
part.headers.add("Content-ID", Attachment.contentid(part))
|
|
207
|
+
part.body = content
|
|
208
|
+
@parts.unshift(part)
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
def add_attachment(attach)
|
|
212
|
+
part = Part.new
|
|
213
|
+
part.headers.add("Content-Type", attach.contenttype)
|
|
214
|
+
part.headers.add("Content-ID", attach.mime_contentid)
|
|
215
|
+
part.body = attach.content
|
|
216
|
+
@parts.unshift(part)
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
def has_parts?
|
|
220
|
+
(@parts.length > 0)
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
def headers_str
|
|
224
|
+
@headers.to_s
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
def content_str
|
|
228
|
+
str = ''
|
|
229
|
+
@parts.each do |prt|
|
|
230
|
+
str << "--" + boundary + "\r\n"
|
|
231
|
+
str << prt.to_s + "\r\n"
|
|
232
|
+
end
|
|
233
|
+
str << '--' + boundary + "--\r\n"
|
|
234
|
+
str
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
def to_s
|
|
238
|
+
str = headers_str + "\r\n\r\n" + conent_str
|
|
239
|
+
end
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
end
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# SOAP4R - Nested exception implementation
|
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
|
4
|
+
|
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
7
|
+
# either the dual license version in 2003, or any later version.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
module SOAP
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
module NestedException
|
|
14
|
+
attr_reader :cause
|
|
15
|
+
attr_reader :original_backtraace
|
|
16
|
+
|
|
17
|
+
def initialize(msg = nil, cause = nil)
|
|
18
|
+
super(msg)
|
|
19
|
+
@cause = cause
|
|
20
|
+
@original_backtrace = nil
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def set_backtrace(backtrace)
|
|
24
|
+
if defined?(@cause) and @cause.respond_to?(:backtrace)
|
|
25
|
+
@original_backtrace = backtrace
|
|
26
|
+
=begin
|
|
27
|
+
# for agressive backtrace abstraction: 'here' only should not be good
|
|
28
|
+
here = @original_backtrace[0]
|
|
29
|
+
backtrace = Array[*@cause.backtrace]
|
|
30
|
+
backtrace[0] = "#{backtrace[0]}: #{@cause} (#{@cause.class})"
|
|
31
|
+
backtrace.unshift(here)
|
|
32
|
+
=end
|
|
33
|
+
# just join the nested backtrace at the tail of backtrace
|
|
34
|
+
caused = Array[*@cause.backtrace]
|
|
35
|
+
caused[0] = "#{caused[0]}: #{@cause} (#{@cause.class}) [NESTED]"
|
|
36
|
+
backtrace += caused
|
|
37
|
+
end
|
|
38
|
+
super(backtrace)
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
end
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# SOAP4R - net/http wrapper
|
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
|
4
|
+
|
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
7
|
+
# either the dual license version in 2003, or any later version.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
require 'net/http'
|
|
11
|
+
require 'soap/filter/filterchain'
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
module SOAP
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class NetHttpClient
|
|
18
|
+
|
|
19
|
+
SSLEnabled = begin
|
|
20
|
+
require 'net/https'
|
|
21
|
+
true
|
|
22
|
+
rescue LoadError
|
|
23
|
+
false
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
attr_reader :proxy
|
|
27
|
+
attr_accessor :no_proxy
|
|
28
|
+
attr_accessor :debug_dev
|
|
29
|
+
attr_accessor :ssl_config # ignored for now.
|
|
30
|
+
attr_accessor :protocol_version # ignored for now.
|
|
31
|
+
attr_accessor :connect_timeout
|
|
32
|
+
attr_accessor :send_timeout # ignored for now.
|
|
33
|
+
attr_accessor :receive_timeout
|
|
34
|
+
attr_reader :test_loopback_response
|
|
35
|
+
attr_reader :request_filter # ignored for now.
|
|
36
|
+
|
|
37
|
+
def initialize(proxy = nil, agent = nil)
|
|
38
|
+
@proxy = proxy ? URI.parse(proxy) : nil
|
|
39
|
+
@agent = agent
|
|
40
|
+
@debug_dev = nil
|
|
41
|
+
@test_loopback_response = []
|
|
42
|
+
@request_filter = Filter::FilterChain.new
|
|
43
|
+
@session_manager = SessionManager.new
|
|
44
|
+
@no_proxy = @ssl_config = @protocol_version = nil
|
|
45
|
+
@connect_timeout = @send_timeout = @receive_timeout = nil
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def proxy=(proxy)
|
|
49
|
+
if proxy.nil?
|
|
50
|
+
@proxy = nil
|
|
51
|
+
else
|
|
52
|
+
if proxy.is_a?(URI)
|
|
53
|
+
@proxy = proxy
|
|
54
|
+
else
|
|
55
|
+
@proxy = URI.parse(proxy)
|
|
56
|
+
end
|
|
57
|
+
if @proxy.scheme == nil or @proxy.scheme.downcase != 'http' or
|
|
58
|
+
@proxy.host == nil or @proxy.port == nil
|
|
59
|
+
raise ArgumentError.new("unsupported proxy `#{proxy}'")
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
reset_all
|
|
63
|
+
@proxy
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def set_auth(uri, user_id, passwd)
|
|
67
|
+
raise NotImplementedError.new("auth is not supported under soap4r + net/http.")
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def set_basic_auth(uri, user_id, passwd)
|
|
71
|
+
# net/http does not handle url.
|
|
72
|
+
@basic_auth = [user_id, passwd]
|
|
73
|
+
raise NotImplementedError.new("basic_auth is not supported under soap4r + net/http.")
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def set_cookie_store(filename)
|
|
77
|
+
raise NotImplementedError.new
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def save_cookie_store(filename)
|
|
81
|
+
raise NotImplementedError.new
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def reset(url)
|
|
85
|
+
# no persistent connection. ignored.
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def reset_all
|
|
89
|
+
# no persistent connection. ignored.
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def post(url, req_body, header = {})
|
|
93
|
+
post_redirect(url, req_body, header, 10)
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def get_content(url, header = {})
|
|
97
|
+
if str = @test_loopback_response.shift
|
|
98
|
+
return str
|
|
99
|
+
end
|
|
100
|
+
unless url.is_a?(URI)
|
|
101
|
+
url = URI.parse(url)
|
|
102
|
+
end
|
|
103
|
+
extra = header.dup
|
|
104
|
+
extra['User-Agent'] = @agent if @agent
|
|
105
|
+
res = start(url) { |http|
|
|
106
|
+
http.get(url.request_uri, extra)
|
|
107
|
+
}
|
|
108
|
+
res.body
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
private
|
|
112
|
+
|
|
113
|
+
def post_redirect(url, req_body, header, redirect_count)
|
|
114
|
+
if str = @test_loopback_response.shift
|
|
115
|
+
if @debug_dev
|
|
116
|
+
@debug_dev << "= Request\n\n"
|
|
117
|
+
@debug_dev << req_body
|
|
118
|
+
@debug_dev << "\n\n= Response\n\n"
|
|
119
|
+
@debug_dev << str
|
|
120
|
+
end
|
|
121
|
+
status = 200
|
|
122
|
+
reason = nil
|
|
123
|
+
contenttype = 'text/xml'
|
|
124
|
+
content = str
|
|
125
|
+
return Response.new(status, reason, contenttype, content)
|
|
126
|
+
return str
|
|
127
|
+
end
|
|
128
|
+
unless url.is_a?(URI)
|
|
129
|
+
url = URI.parse(url)
|
|
130
|
+
end
|
|
131
|
+
extra = header.dup
|
|
132
|
+
extra['User-Agent'] = @agent if @agent
|
|
133
|
+
res = start(url) { |http|
|
|
134
|
+
if @debug_dev
|
|
135
|
+
@debug_dev << "= Request\n\n"
|
|
136
|
+
@debug_dev << req_body << "\n"
|
|
137
|
+
end
|
|
138
|
+
http.post(url.request_uri, req_body, extra)
|
|
139
|
+
}
|
|
140
|
+
case res
|
|
141
|
+
when Net::HTTPRedirection
|
|
142
|
+
if redirect_count > 0
|
|
143
|
+
post_redirect(res['location'], req_body, header,
|
|
144
|
+
redirect_count - 1)
|
|
145
|
+
else
|
|
146
|
+
raise ArgumentError.new("Too many redirects")
|
|
147
|
+
end
|
|
148
|
+
else
|
|
149
|
+
Response.from_httpresponse(res)
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
def start(url)
|
|
154
|
+
http = create_connection(url)
|
|
155
|
+
response = nil
|
|
156
|
+
http.start { |worker|
|
|
157
|
+
response = yield(worker)
|
|
158
|
+
worker.finish
|
|
159
|
+
}
|
|
160
|
+
if @debug_dev
|
|
161
|
+
@debug_dev << "\n\n= Response\n\n"
|
|
162
|
+
@debug_dev << response.body << "\n"
|
|
163
|
+
end
|
|
164
|
+
response
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
def create_connection(url)
|
|
168
|
+
proxy_host = proxy_port = nil
|
|
169
|
+
unless no_proxy?(url)
|
|
170
|
+
proxy_host = @proxy.host
|
|
171
|
+
proxy_port = @proxy.port
|
|
172
|
+
end
|
|
173
|
+
http = Net::HTTP::Proxy(proxy_host, proxy_port).new(url.host, url.port)
|
|
174
|
+
if http.respond_to?(:set_debug_output)
|
|
175
|
+
http.set_debug_output(@debug_dev)
|
|
176
|
+
end
|
|
177
|
+
http.open_timeout = @connect_timeout if @connect_timeout
|
|
178
|
+
http.read_timeout = @receive_timeout if @receive_timeout
|
|
179
|
+
case url
|
|
180
|
+
when URI::HTTPS
|
|
181
|
+
if SSLEnabled
|
|
182
|
+
http.use_ssl = true
|
|
183
|
+
else
|
|
184
|
+
raise RuntimeError.new("Cannot connect to #{url} (OpenSSL is not installed.)")
|
|
185
|
+
end
|
|
186
|
+
when URI::HTTP
|
|
187
|
+
# OK
|
|
188
|
+
else
|
|
189
|
+
raise RuntimeError.new("Cannot connect to #{url} (Not HTTP.)")
|
|
190
|
+
end
|
|
191
|
+
http
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
NO_PROXY_HOSTS = ['localhost']
|
|
195
|
+
|
|
196
|
+
def no_proxy?(uri)
|
|
197
|
+
if !@proxy or NO_PROXY_HOSTS.include?(uri.host)
|
|
198
|
+
return true
|
|
199
|
+
end
|
|
200
|
+
unless @no_proxy
|
|
201
|
+
return false
|
|
202
|
+
end
|
|
203
|
+
@no_proxy.scan(/([^:,]+)(?::(\d+))?/) do |host, port|
|
|
204
|
+
if /(\A|\.)#{Regexp.quote(host)}\z/i =~ uri.host &&
|
|
205
|
+
(!port || uri.port == port.to_i)
|
|
206
|
+
return true
|
|
207
|
+
end
|
|
208
|
+
end
|
|
209
|
+
false
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
class SessionManager
|
|
213
|
+
attr_accessor :connect_timeout
|
|
214
|
+
attr_accessor :send_timeout
|
|
215
|
+
attr_accessor :receive_timeout
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
class Response
|
|
219
|
+
attr_reader :status
|
|
220
|
+
attr_reader :reason
|
|
221
|
+
attr_reader :contenttype
|
|
222
|
+
attr_reader :content
|
|
223
|
+
|
|
224
|
+
def initialize(status, reason, contenttype, content)
|
|
225
|
+
@status = status
|
|
226
|
+
@reason = reason
|
|
227
|
+
@contenttype = contenttype
|
|
228
|
+
@content = content
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
def self.from_httpresponse(res)
|
|
232
|
+
status = res.code.to_i
|
|
233
|
+
reason = res.message
|
|
234
|
+
contenttype = res['content-type']
|
|
235
|
+
content = res.body
|
|
236
|
+
new(status, reason, contenttype, content)
|
|
237
|
+
end
|
|
238
|
+
end
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
end
|
data/lib/soap/ns.rb
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# SOAP4R - SOAP Namespace library
|
|
3
|
+
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
|
4
|
+
|
|
5
|
+
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
6
|
+
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
7
|
+
# either the dual license version in 2003, or any later version.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
require 'xsd/datatypes'
|
|
11
|
+
require 'xsd/ns'
|
|
12
|
+
require 'soap/soap'
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
module SOAP
|
|
16
|
+
|
|
17
|
+
## Rubyjedi: Provide these (deprecated) constants for backward compatibility with older ActionWebService
|
|
18
|
+
SOAPNamespaceTag = 'env'
|
|
19
|
+
XSDNamespaceTag = 'xsd'
|
|
20
|
+
XSINamespaceTag = 'xsi'
|
|
21
|
+
|
|
22
|
+
class NS < XSD::NS
|
|
23
|
+
KNOWN_TAG = XSD::NS::KNOWN_TAG.dup.update(
|
|
24
|
+
SOAP::EnvelopeNamespace => 'env'
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
def initialize(tag2ns = nil)
|
|
28
|
+
super(tag2ns)
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
private
|
|
32
|
+
|
|
33
|
+
def default_known_tag
|
|
34
|
+
KNOWN_TAG
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
end
|