soap4r_es 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- 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,165 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# SOAP4R - SOAP WSDL driver
|
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 'wsdl/parser'
|
11
|
+
require 'wsdl/importer'
|
12
|
+
require 'xsd/qname'
|
13
|
+
require 'xsd/codegen/gensupport'
|
14
|
+
require 'soap/attrproxy'
|
15
|
+
require 'soap/mapping/wsdlencodedregistry'
|
16
|
+
require 'soap/mapping/wsdlliteralregistry'
|
17
|
+
require 'soap/rpc/driver'
|
18
|
+
require 'wsdl/soap/methodDefCreator'
|
19
|
+
require 'wsdl/soap/classDefCreatorSupport'
|
20
|
+
require 'wsdl/soap/classNameCreator'
|
21
|
+
|
22
|
+
|
23
|
+
module SOAP
|
24
|
+
|
25
|
+
|
26
|
+
class WSDLDriverFactory
|
27
|
+
include WSDL::SOAP::ClassDefCreatorSupport
|
28
|
+
|
29
|
+
class FactoryError < StandardError; end
|
30
|
+
|
31
|
+
attr_reader :wsdl
|
32
|
+
|
33
|
+
def initialize(wsdl)
|
34
|
+
@wsdl = import(wsdl)
|
35
|
+
end
|
36
|
+
|
37
|
+
def inspect
|
38
|
+
sprintf("#<%s:%s:0x%x\n\n%s>", self.class.name, @wsdl.name, __id__, dump_method_signatures)
|
39
|
+
end
|
40
|
+
|
41
|
+
def create_rpc_driver(servicename = nil, portname = nil)
|
42
|
+
port = find_port(servicename, portname)
|
43
|
+
drv = SOAP::RPC::Driver.new(port.soap_address.location)
|
44
|
+
if binding = port.find_binding
|
45
|
+
init_driver(drv, binding)
|
46
|
+
add_operation(drv, binding)
|
47
|
+
end
|
48
|
+
drv
|
49
|
+
end
|
50
|
+
|
51
|
+
def dump_method_signatures(servicename = nil, portname = nil)
|
52
|
+
targetservice = XSD::QName.new(@wsdl.targetnamespace, servicename) if servicename
|
53
|
+
targetport = XSD::QName.new(@wsdl.targetnamespace, portname) if portname
|
54
|
+
sig = []
|
55
|
+
element_definitions = @wsdl.collect_elements
|
56
|
+
@wsdl.services.each do |service|
|
57
|
+
next if targetservice and service.name != targetservice
|
58
|
+
service.ports.each do |port|
|
59
|
+
next if targetport and port.name != targetport
|
60
|
+
if porttype = port.porttype
|
61
|
+
assigned_method = collect_assigned_method(porttype.name)
|
62
|
+
if binding = port.porttype.find_binding
|
63
|
+
sig << binding.operations.collect { |op_bind|
|
64
|
+
operation = op_bind.find_operation
|
65
|
+
name = assigned_method[op_bind.boundid] || op_bind.name
|
66
|
+
str = "= #{safemethodname(name)}\n\n"
|
67
|
+
str << dump_method_signature(name, operation, element_definitions)
|
68
|
+
str.gsub(/^#/, " ")
|
69
|
+
}.join("\n")
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
sig.join("\n")
|
75
|
+
end
|
76
|
+
|
77
|
+
private
|
78
|
+
|
79
|
+
def collect_assigned_method(porttypename)
|
80
|
+
name_creator = WSDL::SOAP::ClassNameCreator.new
|
81
|
+
methoddefcreator =
|
82
|
+
WSDL::SOAP::MethodDefCreator.new(@wsdl, name_creator, nil, {})
|
83
|
+
methoddefcreator.dump(porttypename)
|
84
|
+
methoddefcreator.assigned_method
|
85
|
+
end
|
86
|
+
|
87
|
+
def find_port(servicename = nil, portname = nil)
|
88
|
+
service = port = nil
|
89
|
+
if servicename
|
90
|
+
service = @wsdl.service(
|
91
|
+
XSD::QName.new(@wsdl.targetnamespace, servicename))
|
92
|
+
else
|
93
|
+
service = @wsdl.services[0]
|
94
|
+
end
|
95
|
+
if service.nil?
|
96
|
+
raise FactoryError.new("service #{servicename} not found in WSDL")
|
97
|
+
end
|
98
|
+
if portname
|
99
|
+
port = service.ports[XSD::QName.new(@wsdl.targetnamespace, portname)]
|
100
|
+
if port.nil?
|
101
|
+
raise FactoryError.new("port #{portname} not found in WSDL")
|
102
|
+
end
|
103
|
+
else
|
104
|
+
port = service.ports.find { |port| !port.soap_address.nil? }
|
105
|
+
if port.nil?
|
106
|
+
raise FactoryError.new("no ports have soap:address")
|
107
|
+
end
|
108
|
+
end
|
109
|
+
if port.soap_address.nil?
|
110
|
+
raise FactoryError.new("soap:address element not found in WSDL")
|
111
|
+
end
|
112
|
+
port
|
113
|
+
end
|
114
|
+
|
115
|
+
def init_driver(drv, binding)
|
116
|
+
wsdl_elements = @wsdl.collect_elements
|
117
|
+
wsdl_types = @wsdl.collect_complextypes + @wsdl.collect_simpletypes
|
118
|
+
rpc_decode_typemap = wsdl_types +
|
119
|
+
@wsdl.soap_rpc_complextypes(binding)
|
120
|
+
drv.proxy.mapping_registry =
|
121
|
+
Mapping::WSDLEncodedRegistry.new(rpc_decode_typemap)
|
122
|
+
drv.proxy.literal_mapping_registry =
|
123
|
+
Mapping::WSDLLiteralRegistry.new(wsdl_types, wsdl_elements)
|
124
|
+
end
|
125
|
+
|
126
|
+
def add_operation(drv, binding)
|
127
|
+
name_creator = WSDL::SOAP::ClassNameCreator.new
|
128
|
+
modulepath = 'WSDLDriverFactory'
|
129
|
+
methoddefcreator =
|
130
|
+
WSDL::SOAP::MethodDefCreator.new(@wsdl, name_creator, modulepath, {})
|
131
|
+
mdefs = methoddefcreator.create(binding.name)
|
132
|
+
if mdefs.nil?
|
133
|
+
raise FactoryError.new("no method definition found in WSDL")
|
134
|
+
end
|
135
|
+
mdefs.each do |mdef|
|
136
|
+
opt = {
|
137
|
+
:request_style => mdef.style,
|
138
|
+
:response_style => mdef.style,
|
139
|
+
:request_use => mdef.inputuse,
|
140
|
+
:response_use => mdef.outputuse
|
141
|
+
}
|
142
|
+
qname = mdef.qname
|
143
|
+
soapaction = mdef.soapaction
|
144
|
+
name = mdef.name
|
145
|
+
if mdef.style == :rpc
|
146
|
+
drv.add_rpc_operation(qname, soapaction, name, mdef.parameters, opt)
|
147
|
+
else
|
148
|
+
drv.add_document_operation(soapaction, name, mdef.parameters, opt)
|
149
|
+
end
|
150
|
+
orgname = mdef.qname.name
|
151
|
+
if orgname != name and orgname.capitalize == name.capitalize
|
152
|
+
::SOAP::Mapping.define_singleton_method(drv, orgname) do |*arg|
|
153
|
+
__send__(name, *arg)
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
def import(location)
|
160
|
+
WSDL::Importer.import(location)
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
|
165
|
+
end
|
data/lib/wsdl/binding.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL binding definition.
|
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 'wsdl/info'
|
11
|
+
require 'xsd/namedelements'
|
12
|
+
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
|
16
|
+
|
17
|
+
class Binding < Info
|
18
|
+
attr_reader :name # required
|
19
|
+
attr_reader :type # required
|
20
|
+
attr_reader :operations
|
21
|
+
attr_reader :soapbinding
|
22
|
+
|
23
|
+
def initialize
|
24
|
+
super
|
25
|
+
@name = nil
|
26
|
+
@type = nil
|
27
|
+
@operations = XSD::NamedElements.new
|
28
|
+
@soapbinding = nil
|
29
|
+
end
|
30
|
+
|
31
|
+
def targetnamespace
|
32
|
+
parent.targetnamespace
|
33
|
+
end
|
34
|
+
|
35
|
+
def parse_element(element)
|
36
|
+
case element
|
37
|
+
when OperationName
|
38
|
+
o = OperationBinding.new
|
39
|
+
@operations << o
|
40
|
+
o
|
41
|
+
when SOAPBindingName
|
42
|
+
o = WSDL::SOAP::Binding.new
|
43
|
+
@soapbinding = o
|
44
|
+
o
|
45
|
+
when DocumentationName
|
46
|
+
o = Documentation.new
|
47
|
+
o
|
48
|
+
else
|
49
|
+
nil
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def parse_attr(attr, value)
|
54
|
+
case attr
|
55
|
+
when NameAttrName
|
56
|
+
@name = XSD::QName.new(targetnamespace, value.source)
|
57
|
+
when TypeAttrName
|
58
|
+
@type = value
|
59
|
+
else
|
60
|
+
nil
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
|
66
|
+
end
|
data/lib/wsdl/data.rb
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL data definitions.
|
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/qname'
|
11
|
+
require 'wsdl/documentation'
|
12
|
+
require 'wsdl/definitions'
|
13
|
+
require 'wsdl/types'
|
14
|
+
require 'wsdl/message'
|
15
|
+
require 'wsdl/part'
|
16
|
+
require 'wsdl/portType'
|
17
|
+
require 'wsdl/operation'
|
18
|
+
require 'wsdl/param'
|
19
|
+
require 'wsdl/binding'
|
20
|
+
require 'wsdl/operationBinding'
|
21
|
+
require 'wsdl/service'
|
22
|
+
require 'wsdl/port'
|
23
|
+
require 'wsdl/import'
|
24
|
+
|
25
|
+
|
26
|
+
module WSDL
|
27
|
+
|
28
|
+
|
29
|
+
ArrayTypeAttrName = XSD::QName.new(Namespace, 'arrayType')
|
30
|
+
BindingName = XSD::QName.new(Namespace, 'binding')
|
31
|
+
DefinitionsName = XSD::QName.new(Namespace, 'definitions')
|
32
|
+
DocumentationName = XSD::QName.new(Namespace, 'documentation')
|
33
|
+
FaultName = XSD::QName.new(Namespace, 'fault')
|
34
|
+
ImportName = XSD::QName.new(Namespace, 'import')
|
35
|
+
InputName = XSD::QName.new(Namespace, 'input')
|
36
|
+
MessageName = XSD::QName.new(Namespace, 'message')
|
37
|
+
OperationName = XSD::QName.new(Namespace, 'operation')
|
38
|
+
OutputName = XSD::QName.new(Namespace, 'output')
|
39
|
+
PartName = XSD::QName.new(Namespace, 'part')
|
40
|
+
PortName = XSD::QName.new(Namespace, 'port')
|
41
|
+
PortTypeName = XSD::QName.new(Namespace, 'portType')
|
42
|
+
ServiceName = XSD::QName.new(Namespace, 'service')
|
43
|
+
TypesName = XSD::QName.new(Namespace, 'types')
|
44
|
+
|
45
|
+
SchemaName = XSD::QName.new(XSD::Namespace, 'schema')
|
46
|
+
|
47
|
+
SOAPAddressName = XSD::QName.new(SOAPBindingNamespace, 'address')
|
48
|
+
SOAPBindingName = XSD::QName.new(SOAPBindingNamespace, 'binding')
|
49
|
+
SOAPHeaderName = XSD::QName.new(SOAPBindingNamespace, 'header')
|
50
|
+
SOAPBodyName = XSD::QName.new(SOAPBindingNamespace, 'body')
|
51
|
+
SOAPFaultName = XSD::QName.new(SOAPBindingNamespace, 'fault')
|
52
|
+
SOAPOperationName = XSD::QName.new(SOAPBindingNamespace, 'operation')
|
53
|
+
|
54
|
+
BindingAttrName = XSD::QName.new(nil, 'binding')
|
55
|
+
ElementAttrName = XSD::QName.new(nil, 'element')
|
56
|
+
LocationAttrName = XSD::QName.new(nil, 'location')
|
57
|
+
MessageAttrName = XSD::QName.new(nil, 'message')
|
58
|
+
NameAttrName = XSD::QName.new(nil, 'name')
|
59
|
+
NamespaceAttrName = XSD::QName.new(nil, 'namespace')
|
60
|
+
ParameterOrderAttrName = XSD::QName.new(nil, 'parameterOrder')
|
61
|
+
TargetNamespaceAttrName = XSD::QName.new(nil, 'targetNamespace')
|
62
|
+
TypeAttrName = XSD::QName.new(nil, 'type')
|
63
|
+
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,237 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL definitions.
|
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 'wsdl/info'
|
11
|
+
require 'xsd/namedelements'
|
12
|
+
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
|
16
|
+
|
17
|
+
class Definitions < Info
|
18
|
+
attr_reader :name
|
19
|
+
attr_reader :targetnamespace
|
20
|
+
attr_reader :imports
|
21
|
+
|
22
|
+
attr_accessor :location
|
23
|
+
attr_reader :importedschema
|
24
|
+
|
25
|
+
def initialize
|
26
|
+
super
|
27
|
+
@name = nil
|
28
|
+
@targetnamespace = nil
|
29
|
+
@location = nil
|
30
|
+
@importedschema = {}
|
31
|
+
|
32
|
+
@types = nil
|
33
|
+
@imports = []
|
34
|
+
@messages = XSD::NamedElements.new
|
35
|
+
@porttypes = XSD::NamedElements.new
|
36
|
+
@bindings = XSD::NamedElements.new
|
37
|
+
@services = XSD::NamedElements.new
|
38
|
+
|
39
|
+
@anontypes = XSD::NamedElements.new
|
40
|
+
@root = self
|
41
|
+
end
|
42
|
+
|
43
|
+
def inspect
|
44
|
+
sprintf("#<%s:0x%x %s>", self.class.name, __id__, @name || '(unnamed)')
|
45
|
+
end
|
46
|
+
|
47
|
+
def targetnamespace=(targetnamespace)
|
48
|
+
@targetnamespace = targetnamespace
|
49
|
+
if @name
|
50
|
+
@name = XSD::QName.new(@targetnamespace, @name.name)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def collect_attributes
|
55
|
+
collect_imports(:collect_attributes)
|
56
|
+
end
|
57
|
+
|
58
|
+
def collect_modelgroups
|
59
|
+
collect_imports(:collect_modelgroups)
|
60
|
+
end
|
61
|
+
|
62
|
+
def collect_attributegroups
|
63
|
+
collect_imports(:collect_attributegroups)
|
64
|
+
end
|
65
|
+
|
66
|
+
def collect_elements
|
67
|
+
collect_imports(:collect_elements)
|
68
|
+
end
|
69
|
+
|
70
|
+
def collect_complextypes
|
71
|
+
result = collect_imports(:collect_complextypes)
|
72
|
+
@anontypes.dup.concat(result)
|
73
|
+
end
|
74
|
+
|
75
|
+
def collect_simpletypes
|
76
|
+
collect_imports(:collect_simpletypes)
|
77
|
+
end
|
78
|
+
|
79
|
+
# ToDo: simpletype must be accepted...
|
80
|
+
def add_type(complextype)
|
81
|
+
@anontypes << complextype
|
82
|
+
end
|
83
|
+
|
84
|
+
def messages
|
85
|
+
result = @messages.dup
|
86
|
+
@imports.each do |import|
|
87
|
+
result.concat(import.content.messages) if self.class === import.content
|
88
|
+
end
|
89
|
+
result
|
90
|
+
end
|
91
|
+
|
92
|
+
def porttypes
|
93
|
+
result = @porttypes.dup
|
94
|
+
@imports.each do |import|
|
95
|
+
result.concat(import.content.porttypes) if self.class === import.content
|
96
|
+
end
|
97
|
+
result
|
98
|
+
end
|
99
|
+
|
100
|
+
def bindings
|
101
|
+
result = @bindings.dup
|
102
|
+
@imports.each do |import|
|
103
|
+
result.concat(import.content.bindings) if self.class === import.content
|
104
|
+
end
|
105
|
+
result
|
106
|
+
end
|
107
|
+
|
108
|
+
def services
|
109
|
+
result = @services.dup
|
110
|
+
@imports.each do |import|
|
111
|
+
result.concat(import.content.services) if self.class === import.content
|
112
|
+
end
|
113
|
+
result
|
114
|
+
end
|
115
|
+
|
116
|
+
def message(name)
|
117
|
+
message = @messages[name]
|
118
|
+
return message if message
|
119
|
+
@imports.each do |import|
|
120
|
+
message = import.content.message(name) if self.class === import.content
|
121
|
+
return message if message
|
122
|
+
end
|
123
|
+
nil
|
124
|
+
end
|
125
|
+
|
126
|
+
def porttype(name)
|
127
|
+
porttype = @porttypes[name]
|
128
|
+
return porttype if porttype
|
129
|
+
@imports.each do |import|
|
130
|
+
porttype = import.content.porttype(name) if self.class === import.content
|
131
|
+
return porttype if porttype
|
132
|
+
end
|
133
|
+
nil
|
134
|
+
end
|
135
|
+
|
136
|
+
def binding(name)
|
137
|
+
binding = @bindings[name]
|
138
|
+
return binding if binding
|
139
|
+
@imports.each do |import|
|
140
|
+
binding = import.content.binding(name) if self.class === import.content
|
141
|
+
return binding if binding
|
142
|
+
end
|
143
|
+
nil
|
144
|
+
end
|
145
|
+
|
146
|
+
def service(name)
|
147
|
+
service = @services[name]
|
148
|
+
return service if service
|
149
|
+
@imports.each do |import|
|
150
|
+
service = import.content.service(name) if self.class === import.content
|
151
|
+
return service if service
|
152
|
+
end
|
153
|
+
nil
|
154
|
+
end
|
155
|
+
|
156
|
+
def porttype_binding(name)
|
157
|
+
binding = @bindings.find { |item| item.type == name }
|
158
|
+
return binding if binding
|
159
|
+
@imports.each do |import|
|
160
|
+
binding = import.content.porttype_binding(name) if self.class === import.content
|
161
|
+
return binding if binding
|
162
|
+
end
|
163
|
+
nil
|
164
|
+
end
|
165
|
+
|
166
|
+
def parse_element(element)
|
167
|
+
case element
|
168
|
+
when ImportName
|
169
|
+
o = Import.new
|
170
|
+
@imports << o
|
171
|
+
o
|
172
|
+
when TypesName
|
173
|
+
o = Types.new
|
174
|
+
@types = o
|
175
|
+
o
|
176
|
+
when MessageName
|
177
|
+
o = Message.new
|
178
|
+
@messages << o
|
179
|
+
o
|
180
|
+
when PortTypeName
|
181
|
+
o = PortType.new
|
182
|
+
@porttypes << o
|
183
|
+
o
|
184
|
+
when BindingName
|
185
|
+
o = Binding.new
|
186
|
+
@bindings << o
|
187
|
+
o
|
188
|
+
when ServiceName
|
189
|
+
o = Service.new
|
190
|
+
@services << o
|
191
|
+
o
|
192
|
+
when DocumentationName
|
193
|
+
o = Documentation.new
|
194
|
+
o
|
195
|
+
else
|
196
|
+
nil
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
def parse_attr(attr, value)
|
201
|
+
case attr
|
202
|
+
when NameAttrName
|
203
|
+
@name = XSD::QName.new(targetnamespace, value.source)
|
204
|
+
when TargetNamespaceAttrName
|
205
|
+
self.targetnamespace = value.source
|
206
|
+
else
|
207
|
+
nil
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
def self.parse_element(element)
|
212
|
+
if element == DefinitionsName
|
213
|
+
Definitions.new
|
214
|
+
else
|
215
|
+
nil
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
private
|
220
|
+
|
221
|
+
def collect_imports(method)
|
222
|
+
result = XSD::NamedElements.new
|
223
|
+
if @types
|
224
|
+
@types.schemas.each do |schema|
|
225
|
+
result.concat(schema.send(method))
|
226
|
+
end
|
227
|
+
end
|
228
|
+
@imports.each do |import|
|
229
|
+
result.concat(import.content.send(method))
|
230
|
+
end
|
231
|
+
result
|
232
|
+
end
|
233
|
+
|
234
|
+
end
|
235
|
+
|
236
|
+
|
237
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL SOAP documentation element.
|
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 'wsdl/info'
|
11
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
|
15
|
+
|
16
|
+
class Documentation < Info
|
17
|
+
def initialize
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_element(element)
|
22
|
+
# Accepts any element.
|
23
|
+
self
|
24
|
+
end
|
25
|
+
|
26
|
+
def parse_attr(attr, value)
|
27
|
+
# Accepts any attribute.
|
28
|
+
true
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
|
33
|
+
end
|
data/lib/wsdl/import.rb
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL import definition.
|
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 'wsdl/info'
|
11
|
+
require 'wsdl/importer'
|
12
|
+
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
|
16
|
+
|
17
|
+
class Import < Info
|
18
|
+
attr_reader :namespace
|
19
|
+
attr_reader :location
|
20
|
+
attr_reader :content
|
21
|
+
|
22
|
+
def initialize
|
23
|
+
super
|
24
|
+
@namespace = nil
|
25
|
+
@location = nil
|
26
|
+
@content = nil
|
27
|
+
@web_client = nil
|
28
|
+
end
|
29
|
+
|
30
|
+
def parse_element(element)
|
31
|
+
case element
|
32
|
+
when DocumentationName
|
33
|
+
o = Documentation.new
|
34
|
+
o
|
35
|
+
else
|
36
|
+
nil
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def parse_attr(attr, value)
|
41
|
+
case attr
|
42
|
+
when NamespaceAttrName
|
43
|
+
@namespace = value.source
|
44
|
+
if @content
|
45
|
+
@content.targetnamespace = @namespace
|
46
|
+
end
|
47
|
+
@namespace
|
48
|
+
when LocationAttrName
|
49
|
+
@location = URI.parse(value.source)
|
50
|
+
if @location.relative? and !parent.location.nil? and
|
51
|
+
!parent.location.relative?
|
52
|
+
@location = parent.location + @location
|
53
|
+
end
|
54
|
+
if root.importedschema.key?(@location)
|
55
|
+
@content = root.importedschema[@location]
|
56
|
+
else
|
57
|
+
root.importedschema[@location] = nil # placeholder
|
58
|
+
@content = import(@location)
|
59
|
+
if @content.is_a?(Definitions)
|
60
|
+
@content.root = root
|
61
|
+
if @namespace
|
62
|
+
@content.targetnamespace = @namespace
|
63
|
+
end
|
64
|
+
end
|
65
|
+
root.importedschema[@location] = @content
|
66
|
+
end
|
67
|
+
@location
|
68
|
+
else
|
69
|
+
nil
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
def import(location)
|
76
|
+
Importer.import(location, root)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL importer 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 'wsdl/xmlSchema/importer'
|
11
|
+
require 'wsdl/parser'
|
12
|
+
|
13
|
+
|
14
|
+
module WSDL
|
15
|
+
|
16
|
+
|
17
|
+
class Importer < WSDL::XMLSchema::Importer
|
18
|
+
def self.import(location, originalroot = nil)
|
19
|
+
new.import(location, originalroot)
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def parse(content, location, originalroot)
|
25
|
+
opt = {
|
26
|
+
:location => location,
|
27
|
+
:originalroot => originalroot
|
28
|
+
}
|
29
|
+
begin
|
30
|
+
WSDL::Parser.new(opt).parse(content)
|
31
|
+
rescue WSDL::Parser::ParseError
|
32
|
+
super(content, location, originalroot)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
end
|