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
data/lib/wsdl/parser.rb
ADDED
@@ -0,0 +1,180 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL XML Instance parser 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/qname'
|
11
|
+
require 'xsd/charset'
|
12
|
+
require 'xsd/datatypes'
|
13
|
+
require 'xsd/xmlparser'
|
14
|
+
require 'soap/ns'
|
15
|
+
require 'wsdl/wsdl'
|
16
|
+
require 'wsdl/data'
|
17
|
+
require 'wsdl/xmlSchema/data'
|
18
|
+
require 'wsdl/soap/data'
|
19
|
+
|
20
|
+
|
21
|
+
module WSDL
|
22
|
+
|
23
|
+
|
24
|
+
class Parser
|
25
|
+
include WSDL
|
26
|
+
|
27
|
+
class ParseError < Error; end
|
28
|
+
class FormatDecodeError < ParseError; end
|
29
|
+
class UnknownElementError < FormatDecodeError; end
|
30
|
+
class UnknownAttributeError < FormatDecodeError; end
|
31
|
+
class UnexpectedElementError < FormatDecodeError; end
|
32
|
+
class ElementConstraintError < FormatDecodeError; end
|
33
|
+
class AttributeConstraintError < FormatDecodeError; end
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
class ParseFrame
|
38
|
+
attr_reader :ns
|
39
|
+
attr_reader :name
|
40
|
+
attr_accessor :node
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def initialize(ns, name, node)
|
45
|
+
@ns = ns
|
46
|
+
@name = name
|
47
|
+
@node = node
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
public
|
52
|
+
|
53
|
+
def initialize(opt = {})
|
54
|
+
@parser = XSD::XMLParser.create_parser(self, opt)
|
55
|
+
@parsestack = nil
|
56
|
+
@lastnode = nil
|
57
|
+
@ignored = {}
|
58
|
+
@location = opt[:location]
|
59
|
+
@originalroot = opt[:originalroot]
|
60
|
+
end
|
61
|
+
|
62
|
+
def parse(string_or_readable)
|
63
|
+
@parsestack = []
|
64
|
+
@lastnode = nil
|
65
|
+
@textbuf = ''
|
66
|
+
@parser.do_parse(string_or_readable)
|
67
|
+
@lastnode
|
68
|
+
end
|
69
|
+
|
70
|
+
def charset
|
71
|
+
@parser.charset
|
72
|
+
end
|
73
|
+
|
74
|
+
def start_element(name, attrs)
|
75
|
+
lastframe = @parsestack.last
|
76
|
+
ns = parent = nil
|
77
|
+
if lastframe
|
78
|
+
ns = lastframe.ns
|
79
|
+
parent = lastframe.node
|
80
|
+
else
|
81
|
+
ns = ::SOAP::NS.new
|
82
|
+
parent = nil
|
83
|
+
end
|
84
|
+
# ns might be the same
|
85
|
+
ns, attrs = XSD::XMLParser.filter_ns(ns, attrs)
|
86
|
+
node = decode_tag(ns, name, attrs, parent)
|
87
|
+
@parsestack << ParseFrame.new(ns, name, node)
|
88
|
+
end
|
89
|
+
|
90
|
+
def characters(text)
|
91
|
+
lastframe = @parsestack.last
|
92
|
+
if lastframe
|
93
|
+
# Need not to be cloned because character does not have attr.
|
94
|
+
ns = lastframe.ns
|
95
|
+
decode_text(ns, text)
|
96
|
+
else
|
97
|
+
p text if $DEBUG
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def end_element(name)
|
102
|
+
lastframe = @parsestack.pop
|
103
|
+
unless name == lastframe.name
|
104
|
+
raise UnexpectedElementError.new("closing element name '#{name}' does not match with opening element '#{lastframe.name}'")
|
105
|
+
end
|
106
|
+
decode_tag_end(lastframe.ns, lastframe.node)
|
107
|
+
@lastnode = lastframe.node
|
108
|
+
end
|
109
|
+
|
110
|
+
private
|
111
|
+
|
112
|
+
def decode_tag(ns, name, attrs, parent)
|
113
|
+
o = nil
|
114
|
+
elename = ns.parse(name)
|
115
|
+
if !parent
|
116
|
+
if elename == DefinitionsName
|
117
|
+
o = Definitions.parse_element(elename)
|
118
|
+
o.location = @location
|
119
|
+
else
|
120
|
+
raise UnknownElementError.new("unknown element: #{elename}")
|
121
|
+
end
|
122
|
+
o.root = @originalroot if @originalroot # o.root = o otherwise
|
123
|
+
else
|
124
|
+
if elename == XMLSchema::AnnotationName
|
125
|
+
# only the first annotation element is allowed for each xsd element.
|
126
|
+
o = XMLSchema::Annotation.new
|
127
|
+
else
|
128
|
+
o = parent.parse_element(elename)
|
129
|
+
end
|
130
|
+
if o.nil?
|
131
|
+
unless @ignored.key?(elename)
|
132
|
+
warn("ignored element: #{elename}")
|
133
|
+
@ignored[elename] = elename
|
134
|
+
end
|
135
|
+
o = Documentation.new # which accepts any element.
|
136
|
+
end
|
137
|
+
# node could be a pseudo element. pseudo element has its own parent.
|
138
|
+
o.root = parent.root
|
139
|
+
o.parent = parent if o.parent.nil?
|
140
|
+
end
|
141
|
+
to_array_and_splice_name_to_first(attrs).each do |attr|
|
142
|
+
key = attr[:key]
|
143
|
+
value = attr[:value]
|
144
|
+
attr_ele = ns.parse(key, true)
|
145
|
+
value_ele = ns.parse(value, false)
|
146
|
+
value_ele.source = value # for recovery; value may not be a QName
|
147
|
+
if o.parse_attr(attr_ele, value_ele).nil?
|
148
|
+
unless @ignored.key?(attr_ele)
|
149
|
+
warn("ignored attr: #{attr_ele}")
|
150
|
+
@ignored[attr_ele] = attr_ele
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
154
|
+
o
|
155
|
+
end
|
156
|
+
|
157
|
+
def decode_tag_end(ns, node)
|
158
|
+
node.parse_epilogue
|
159
|
+
end
|
160
|
+
|
161
|
+
def decode_text(ns, text)
|
162
|
+
@textbuf << text
|
163
|
+
end
|
164
|
+
|
165
|
+
def to_array_and_splice_name_to_first(attrs)
|
166
|
+
attrs_name = []
|
167
|
+
attrs_other = []
|
168
|
+
attrs.each do |key, value|
|
169
|
+
if key == "name"
|
170
|
+
attrs_name << { :key => key, :value => value }
|
171
|
+
elsif
|
172
|
+
attrs_other << { :key => key, :value => value }
|
173
|
+
end
|
174
|
+
end
|
175
|
+
attrs_name.concat(attrs_other)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
|
180
|
+
end
|
data/lib/wsdl/part.rb
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL part 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
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
|
15
|
+
|
16
|
+
class Part < Info
|
17
|
+
attr_reader :name # required
|
18
|
+
attr_reader :element # optional
|
19
|
+
attr_reader :type # optional
|
20
|
+
|
21
|
+
def initialize
|
22
|
+
super
|
23
|
+
@name = nil
|
24
|
+
@element = nil
|
25
|
+
@type = nil
|
26
|
+
end
|
27
|
+
|
28
|
+
def parse_element(element)
|
29
|
+
case element
|
30
|
+
when DocumentationName
|
31
|
+
o = Documentation.new
|
32
|
+
o
|
33
|
+
else
|
34
|
+
nil
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def parse_attr(attr, value)
|
39
|
+
case attr
|
40
|
+
when NameAttrName
|
41
|
+
@name = value.source
|
42
|
+
when ElementAttrName
|
43
|
+
@element = value
|
44
|
+
when TypeAttrName
|
45
|
+
@type = value
|
46
|
+
else
|
47
|
+
nil
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
|
53
|
+
end
|
data/lib/wsdl/port.rb
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL port 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
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
|
15
|
+
|
16
|
+
class Port < Info
|
17
|
+
attr_reader :name # required
|
18
|
+
attr_reader :binding # required
|
19
|
+
attr_reader :soap_address
|
20
|
+
|
21
|
+
def initialize
|
22
|
+
super
|
23
|
+
@name = nil
|
24
|
+
@binding = nil
|
25
|
+
@soap_address = nil
|
26
|
+
end
|
27
|
+
|
28
|
+
def targetnamespace
|
29
|
+
parent.targetnamespace
|
30
|
+
end
|
31
|
+
|
32
|
+
def porttype
|
33
|
+
root.porttype(find_binding.type)
|
34
|
+
end
|
35
|
+
|
36
|
+
def find_binding
|
37
|
+
root.binding(@binding) or raise RuntimeError.new("#{@binding} not found")
|
38
|
+
end
|
39
|
+
|
40
|
+
def parse_element(element)
|
41
|
+
case element
|
42
|
+
when SOAPAddressName
|
43
|
+
o = WSDL::SOAP::Address.new
|
44
|
+
@soap_address = o
|
45
|
+
o
|
46
|
+
when DocumentationName
|
47
|
+
o = Documentation.new
|
48
|
+
o
|
49
|
+
else
|
50
|
+
nil
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def parse_attr(attr, value)
|
55
|
+
case attr
|
56
|
+
when NameAttrName
|
57
|
+
@name = XSD::QName.new(targetnamespace, value.source)
|
58
|
+
when BindingAttrName
|
59
|
+
@binding = value
|
60
|
+
else
|
61
|
+
nil
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
|
67
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL portType 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 PortType < Info
|
18
|
+
attr_reader :name # required
|
19
|
+
attr_reader :operations
|
20
|
+
|
21
|
+
def targetnamespace
|
22
|
+
parent.targetnamespace
|
23
|
+
end
|
24
|
+
|
25
|
+
def initialize
|
26
|
+
super
|
27
|
+
@name = nil
|
28
|
+
@operations = XSD::NamedElements.new
|
29
|
+
end
|
30
|
+
|
31
|
+
# may be nil if not defined
|
32
|
+
def find_binding
|
33
|
+
root.bindings.find { |item| item.type == @name }
|
34
|
+
end
|
35
|
+
|
36
|
+
def locations
|
37
|
+
binding = find_binding
|
38
|
+
return [] if binding.nil?
|
39
|
+
bind_name = binding.name
|
40
|
+
result = []
|
41
|
+
root.services.each do |service|
|
42
|
+
service.ports.each do |port|
|
43
|
+
if port.binding == bind_name
|
44
|
+
result << port.soap_address.location if port.soap_address
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
result
|
49
|
+
end
|
50
|
+
|
51
|
+
def parse_element(element)
|
52
|
+
case element
|
53
|
+
when OperationName
|
54
|
+
o = Operation.new
|
55
|
+
@operations << o
|
56
|
+
o
|
57
|
+
when DocumentationName
|
58
|
+
o = Documentation.new
|
59
|
+
o
|
60
|
+
else
|
61
|
+
nil
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def parse_attr(attr, value)
|
66
|
+
case attr
|
67
|
+
when NameAttrName
|
68
|
+
@name = XSD::QName.new(targetnamespace, value.source)
|
69
|
+
else
|
70
|
+
nil
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
|
76
|
+
end
|
data/lib/wsdl/service.rb
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL service 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 Service < Info
|
18
|
+
attr_reader :name # required
|
19
|
+
attr_reader :ports
|
20
|
+
attr_reader :soap_address
|
21
|
+
|
22
|
+
def initialize
|
23
|
+
super
|
24
|
+
@name = nil
|
25
|
+
@ports = XSD::NamedElements.new
|
26
|
+
@soap_address = nil
|
27
|
+
end
|
28
|
+
|
29
|
+
def targetnamespace
|
30
|
+
parent.targetnamespace
|
31
|
+
end
|
32
|
+
|
33
|
+
def parse_element(element)
|
34
|
+
case element
|
35
|
+
when PortName
|
36
|
+
o = Port.new
|
37
|
+
@ports << o
|
38
|
+
o
|
39
|
+
when SOAPAddressName
|
40
|
+
o = WSDL::SOAP::Address.new
|
41
|
+
@soap_address = o
|
42
|
+
o
|
43
|
+
when DocumentationName
|
44
|
+
o = Documentation.new
|
45
|
+
o
|
46
|
+
else
|
47
|
+
nil
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def parse_attr(attr, value)
|
52
|
+
case attr
|
53
|
+
when NameAttrName
|
54
|
+
@name = XSD::QName.new(targetnamespace, value.source)
|
55
|
+
else
|
56
|
+
nil
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
|
62
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL SOAP address 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
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
module SOAP
|
15
|
+
|
16
|
+
|
17
|
+
class Address < Info
|
18
|
+
attr_reader :location
|
19
|
+
|
20
|
+
def initialize
|
21
|
+
super
|
22
|
+
@location = nil
|
23
|
+
end
|
24
|
+
|
25
|
+
def parse_element(element)
|
26
|
+
nil
|
27
|
+
end
|
28
|
+
|
29
|
+
def parse_attr(attr, value)
|
30
|
+
case attr
|
31
|
+
when LocationAttrName
|
32
|
+
@location = value.source
|
33
|
+
else
|
34
|
+
nil
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL SOAP 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
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
module SOAP
|
15
|
+
|
16
|
+
|
17
|
+
class Binding < Info
|
18
|
+
attr_reader :style
|
19
|
+
attr_reader :transport
|
20
|
+
|
21
|
+
def initialize
|
22
|
+
super
|
23
|
+
@style = nil
|
24
|
+
@transport = nil
|
25
|
+
end
|
26
|
+
|
27
|
+
def parse_element(element)
|
28
|
+
nil
|
29
|
+
end
|
30
|
+
|
31
|
+
def parse_attr(attr, value)
|
32
|
+
case attr
|
33
|
+
when StyleAttrName
|
34
|
+
if ["document", "rpc"].include?(value.source)
|
35
|
+
@style = value.source.intern
|
36
|
+
else
|
37
|
+
raise Parser::AttributeConstraintError.new(
|
38
|
+
"Unexpected value #{ value }.")
|
39
|
+
end
|
40
|
+
when TransportAttrName
|
41
|
+
@transport = value.source
|
42
|
+
else
|
43
|
+
nil
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - WSDL SOAP body 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
|
+
|
12
|
+
|
13
|
+
module WSDL
|
14
|
+
module SOAP
|
15
|
+
|
16
|
+
|
17
|
+
class Body < Info
|
18
|
+
attr_reader :parts
|
19
|
+
attr_reader :use # required
|
20
|
+
attr_reader :encodingstyle
|
21
|
+
attr_reader :namespace
|
22
|
+
|
23
|
+
def initialize
|
24
|
+
super
|
25
|
+
@parts = nil
|
26
|
+
@use = nil
|
27
|
+
@encodingstyle = nil
|
28
|
+
@namespace = nil
|
29
|
+
end
|
30
|
+
|
31
|
+
def parse_element(element)
|
32
|
+
nil
|
33
|
+
end
|
34
|
+
|
35
|
+
def parse_attr(attr, value)
|
36
|
+
case attr
|
37
|
+
when PartsAttrName
|
38
|
+
@parts = value.source
|
39
|
+
when UseAttrName
|
40
|
+
if ['literal', 'encoded'].include?(value.source)
|
41
|
+
@use = value.source.intern
|
42
|
+
else
|
43
|
+
raise RuntimeError.new("unknown use of soap:body: #{value.source}")
|
44
|
+
end
|
45
|
+
when EncodingStyleAttrName
|
46
|
+
@encodingstyle = value.source
|
47
|
+
@encodingstyle = nil if @encodingstyle.to_s.empty?
|
48
|
+
value.source
|
49
|
+
when NamespaceAttrName
|
50
|
+
@namespace = value.source
|
51
|
+
else
|
52
|
+
nil
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# WSDL4R - Creating CGI stub code from WSDL.
|
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/soap/mappingRegistryCreator'
|
12
|
+
require 'wsdl/soap/methodDefCreator'
|
13
|
+
require 'wsdl/soap/classDefCreatorSupport'
|
14
|
+
|
15
|
+
|
16
|
+
module WSDL
|
17
|
+
module SOAP
|
18
|
+
|
19
|
+
|
20
|
+
class CGIStubCreator
|
21
|
+
include ClassDefCreatorSupport
|
22
|
+
|
23
|
+
attr_reader :definitions
|
24
|
+
|
25
|
+
def initialize(definitions, name_creator, modulepath = nil)
|
26
|
+
@definitions = definitions
|
27
|
+
@name_creator = name_creator
|
28
|
+
@modulepath = modulepath
|
29
|
+
end
|
30
|
+
|
31
|
+
def dump(service_name)
|
32
|
+
warn("CGI stub can have only 1 port. Creating stub for the first port... Rests are ignored.")
|
33
|
+
services = @definitions.service(service_name)
|
34
|
+
unless services
|
35
|
+
raise RuntimeError.new("service not defined: #{service_name}")
|
36
|
+
end
|
37
|
+
ports = services.ports
|
38
|
+
if ports.empty?
|
39
|
+
raise RuntimeError.new("ports not found for #{service_name}")
|
40
|
+
end
|
41
|
+
port = ports[0]
|
42
|
+
if port.porttype.nil?
|
43
|
+
raise RuntimeError.new("porttype not found for #{port}")
|
44
|
+
end
|
45
|
+
dump_porttype(port.porttype)
|
46
|
+
end
|
47
|
+
|
48
|
+
private
|
49
|
+
|
50
|
+
def dump_porttype(porttype)
|
51
|
+
class_name = mapped_class_name(porttype.name, @modulepath)
|
52
|
+
defined_const = {}
|
53
|
+
methoddef = MethodDefCreator.new(@definitions, @name_creator, @modulepath, defined_const).dump(porttype.name)
|
54
|
+
wsdl_name = @definitions.name ? @definitions.name.name : 'default'
|
55
|
+
mrname = safeconstname(wsdl_name + 'MappingRegistry')
|
56
|
+
c1 = XSD::CodeGen::ClassDef.new(class_name)
|
57
|
+
c1.def_require("soap/rpc/cgistub")
|
58
|
+
c1.def_code <<-EOD
|
59
|
+
Methods = [
|
60
|
+
#{methoddef.gsub(/^/, " ")}
|
61
|
+
]
|
62
|
+
EOD
|
63
|
+
defined_const.each do |ns, tag|
|
64
|
+
c1.def_const(tag, dq(ns))
|
65
|
+
end
|
66
|
+
c2 = XSD::CodeGen::ClassDef.new(class_name + "App",
|
67
|
+
"::SOAP::RPC::CGIStub")
|
68
|
+
c2.def_method("initialize", "*arg") do
|
69
|
+
<<-EOD
|
70
|
+
super(*arg)
|
71
|
+
servant = #{class_name}.new
|
72
|
+
#{class_name}::Methods.each do |definitions|
|
73
|
+
opt = definitions.last
|
74
|
+
if opt[:request_style] == :document
|
75
|
+
@router.add_document_operation(servant, *definitions)
|
76
|
+
else
|
77
|
+
@router.add_rpc_operation(servant, *definitions)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
self.mapping_registry = #{mrname}::EncodedRegistry
|
81
|
+
self.literal_mapping_registry = #{mrname}::LiteralRegistry
|
82
|
+
self.level = Logger::Severity::ERROR
|
83
|
+
EOD
|
84
|
+
end
|
85
|
+
c1.dump + "\n" + c2.dump + format(<<-EOD)
|
86
|
+
#{class_name}App.new('app', nil).start
|
87
|
+
EOD
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
|
92
|
+
end
|
93
|
+
end
|