soap4r_es 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/bin/wsdl2ruby.rb +140 -0
  3. data/bin/wsdl2ruby_rails.rb +140 -0
  4. data/bin/xsd2ruby.rb +92 -0
  5. data/lib/soap/attachment.rb +109 -0
  6. data/lib/soap/attrproxy.rb +35 -0
  7. data/lib/soap/baseData.rb +1095 -0
  8. data/lib/soap/element.rb +278 -0
  9. data/lib/soap/encodingstyle/aspDotNetHandler.rb +208 -0
  10. data/lib/soap/encodingstyle/handler.rb +121 -0
  11. data/lib/soap/encodingstyle/literalHandler.rb +196 -0
  12. data/lib/soap/encodingstyle/soapHandler.rb +560 -0
  13. data/lib/soap/filter/filterchain.rb +52 -0
  14. data/lib/soap/filter/handler.rb +32 -0
  15. data/lib/soap/filter/streamhandler.rb +30 -0
  16. data/lib/soap/filter.rb +14 -0
  17. data/lib/soap/generator.rb +299 -0
  18. data/lib/soap/header/handler.rb +64 -0
  19. data/lib/soap/header/handlerset.rb +78 -0
  20. data/lib/soap/header/mappinghandler.rb +48 -0
  21. data/lib/soap/header/simplehandler.rb +45 -0
  22. data/lib/soap/httpconfigloader.rb +140 -0
  23. data/lib/soap/mapping/encodedregistry.rb +541 -0
  24. data/lib/soap/mapping/factory.rb +389 -0
  25. data/lib/soap/mapping/literalregistry.rb +392 -0
  26. data/lib/soap/mapping/mapping.rb +577 -0
  27. data/lib/soap/mapping/registry.rb +297 -0
  28. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  29. data/lib/soap/mapping/schemadefinition.rb +171 -0
  30. data/lib/soap/mapping/typeMap.rb +107 -0
  31. data/lib/soap/mapping/wsdlencodedregistry.rb +212 -0
  32. data/lib/soap/mapping/wsdlliteralregistry.rb +249 -0
  33. data/lib/soap/mapping.rb +13 -0
  34. data/lib/soap/marshal.rb +60 -0
  35. data/lib/soap/mimemessage.rb +243 -0
  36. data/lib/soap/nestedexception.rb +43 -0
  37. data/lib/soap/netHttpClient.rb +242 -0
  38. data/lib/soap/ns.rb +39 -0
  39. data/lib/soap/parser.rb +253 -0
  40. data/lib/soap/processor.rb +67 -0
  41. data/lib/soap/property.rb +330 -0
  42. data/lib/soap/proxy.rb +15 -0
  43. data/lib/soap/rpc/cgistub.rb +249 -0
  44. data/lib/soap/rpc/driver.rb +222 -0
  45. data/lib/soap/rpc/element.rb +375 -0
  46. data/lib/soap/rpc/httpserver.rb +144 -0
  47. data/lib/soap/rpc/methodDef.rb +69 -0
  48. data/lib/soap/rpc/proxy.rb +573 -0
  49. data/lib/soap/rpc/router.rb +672 -0
  50. data/lib/soap/rpc/rpc.rb +26 -0
  51. data/lib/soap/rpc/soaplet.rb +201 -0
  52. data/lib/soap/rpc/standaloneServer.rb +44 -0
  53. data/lib/soap/soap.rb +163 -0
  54. data/lib/soap/streamHandler.rb +302 -0
  55. data/lib/soap/version.rb +12 -0
  56. data/lib/soap/wsdlDriver.rb +165 -0
  57. data/lib/wsdl/binding.rb +66 -0
  58. data/lib/wsdl/data.rb +65 -0
  59. data/lib/wsdl/definitions.rb +237 -0
  60. data/lib/wsdl/documentation.rb +33 -0
  61. data/lib/wsdl/import.rb +81 -0
  62. data/lib/wsdl/importer.rb +39 -0
  63. data/lib/wsdl/info.rb +51 -0
  64. data/lib/wsdl/message.rb +55 -0
  65. data/lib/wsdl/operation.rb +152 -0
  66. data/lib/wsdl/operationBinding.rb +241 -0
  67. data/lib/wsdl/param.rb +94 -0
  68. data/lib/wsdl/parser.rb +180 -0
  69. data/lib/wsdl/part.rb +53 -0
  70. data/lib/wsdl/port.rb +67 -0
  71. data/lib/wsdl/portType.rb +76 -0
  72. data/lib/wsdl/service.rb +62 -0
  73. data/lib/wsdl/soap/address.rb +41 -0
  74. data/lib/wsdl/soap/binding.rb +50 -0
  75. data/lib/wsdl/soap/body.rb +59 -0
  76. data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
  77. data/lib/wsdl/soap/classDefCreator.rb +529 -0
  78. data/lib/wsdl/soap/classDefCreatorSupport.rb +242 -0
  79. data/lib/wsdl/soap/classNameCreator.rb +57 -0
  80. data/lib/wsdl/soap/clientSkeltonCreator.rb +107 -0
  81. data/lib/wsdl/soap/complexType.rb +174 -0
  82. data/lib/wsdl/soap/data.rb +43 -0
  83. data/lib/wsdl/soap/definitions.rb +201 -0
  84. data/lib/wsdl/soap/driverCreator.rb +121 -0
  85. data/lib/wsdl/soap/element.rb +34 -0
  86. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +74 -0
  87. data/lib/wsdl/soap/fault.rb +57 -0
  88. data/lib/wsdl/soap/header.rb +87 -0
  89. data/lib/wsdl/soap/headerfault.rb +57 -0
  90. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +116 -0
  91. data/lib/wsdl/soap/mappingRegistryCreator.rb +59 -0
  92. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +380 -0
  93. data/lib/wsdl/soap/methodDefCreator.rb +200 -0
  94. data/lib/wsdl/soap/operation.rb +113 -0
  95. data/lib/wsdl/soap/servantSkeltonCreator.rb +92 -0
  96. data/lib/wsdl/soap/servletStubCreator.rb +105 -0
  97. data/lib/wsdl/soap/standaloneServerStubCreator.rb +101 -0
  98. data/lib/wsdl/soap/wsdl2ruby.rb +249 -0
  99. data/lib/wsdl/types.rb +45 -0
  100. data/lib/wsdl/wsdl.rb +25 -0
  101. data/lib/wsdl/xmlSchema/all.rb +25 -0
  102. data/lib/wsdl/xmlSchema/annotation.rb +35 -0
  103. data/lib/wsdl/xmlSchema/any.rb +62 -0
  104. data/lib/wsdl/xmlSchema/anyAttribute.rb +49 -0
  105. data/lib/wsdl/xmlSchema/attribute.rb +105 -0
  106. data/lib/wsdl/xmlSchema/attributeGroup.rb +69 -0
  107. data/lib/wsdl/xmlSchema/choice.rb +59 -0
  108. data/lib/wsdl/xmlSchema/complexContent.rb +98 -0
  109. data/lib/wsdl/xmlSchema/complexExtension.rb +120 -0
  110. data/lib/wsdl/xmlSchema/complexRestriction.rb +105 -0
  111. data/lib/wsdl/xmlSchema/complexType.rb +194 -0
  112. data/lib/wsdl/xmlSchema/content.rb +96 -0
  113. data/lib/wsdl/xmlSchema/data.rb +117 -0
  114. data/lib/wsdl/xmlSchema/element.rb +154 -0
  115. data/lib/wsdl/xmlSchema/enumeration.rb +37 -0
  116. data/lib/wsdl/xmlSchema/fractiondigits.rb +38 -0
  117. data/lib/wsdl/xmlSchema/group.rb +101 -0
  118. data/lib/wsdl/xmlSchema/import.rb +53 -0
  119. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  120. data/lib/wsdl/xmlSchema/importer.rb +103 -0
  121. data/lib/wsdl/xmlSchema/include.rb +48 -0
  122. data/lib/wsdl/xmlSchema/length.rb +38 -0
  123. data/lib/wsdl/xmlSchema/list.rb +49 -0
  124. data/lib/wsdl/xmlSchema/maxexclusive.rb +38 -0
  125. data/lib/wsdl/xmlSchema/maxinclusive.rb +38 -0
  126. data/lib/wsdl/xmlSchema/maxlength.rb +38 -0
  127. data/lib/wsdl/xmlSchema/minexclusive.rb +38 -0
  128. data/lib/wsdl/xmlSchema/mininclusive.rb +38 -0
  129. data/lib/wsdl/xmlSchema/minlength.rb +38 -0
  130. data/lib/wsdl/xmlSchema/parser.rb +168 -0
  131. data/lib/wsdl/xmlSchema/pattern.rb +37 -0
  132. data/lib/wsdl/xmlSchema/ref.rb +34 -0
  133. data/lib/wsdl/xmlSchema/schema.rb +179 -0
  134. data/lib/wsdl/xmlSchema/sequence.rb +55 -0
  135. data/lib/wsdl/xmlSchema/simpleContent.rb +70 -0
  136. data/lib/wsdl/xmlSchema/simpleExtension.rb +63 -0
  137. data/lib/wsdl/xmlSchema/simpleRestriction.rb +133 -0
  138. data/lib/wsdl/xmlSchema/simpleType.rb +88 -0
  139. data/lib/wsdl/xmlSchema/totaldigits.rb +38 -0
  140. data/lib/wsdl/xmlSchema/union.rb +36 -0
  141. data/lib/wsdl/xmlSchema/unique.rb +35 -0
  142. data/lib/wsdl/xmlSchema/whitespace.rb +38 -0
  143. data/lib/wsdl/xmlSchema/xsd2ruby.rb +177 -0
  144. data/lib/xsd/charset.rb +190 -0
  145. data/lib/xsd/codegen/classdef.rb +230 -0
  146. data/lib/xsd/codegen/commentdef.rb +35 -0
  147. data/lib/xsd/codegen/gensupport.rb +277 -0
  148. data/lib/xsd/codegen/methoddef.rb +71 -0
  149. data/lib/xsd/codegen/moduledef.rb +209 -0
  150. data/lib/xsd/codegen.rb +13 -0
  151. data/lib/xsd/datatypes.rb +1465 -0
  152. data/lib/xsd/datatypes1999.rb +21 -0
  153. data/lib/xsd/iconvcharset.rb +33 -0
  154. data/lib/xsd/mapping.rb +69 -0
  155. data/lib/xsd/namedelements.rb +133 -0
  156. data/lib/xsd/ns.rb +183 -0
  157. data/lib/xsd/qname.rb +80 -0
  158. data/lib/xsd/xmlparser/libxmlparser.rb +136 -0
  159. data/lib/xsd/xmlparser/nokogiriparser.rb +63 -0
  160. data/lib/xsd/xmlparser/ogaparser.rb +53 -0
  161. data/lib/xsd/xmlparser/oxparser.rb +97 -0
  162. data/lib/xsd/xmlparser/parser.rb +101 -0
  163. data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
  164. data/lib/xsd/xmlparser.rb +81 -0
  165. metadata +240 -0
@@ -0,0 +1,201 @@
1
+ # encoding: UTF-8
2
+ # WSDL4R - WSDL additional definitions for SOAP.
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
+ require 'soap/mapping'
13
+
14
+
15
+ module WSDL
16
+
17
+
18
+ class Definitions < Info
19
+ def self.soap_rpc_complextypes
20
+ types = XSD::NamedElements.new
21
+ types << array_complextype
22
+ types << fault_complextype
23
+ types << exception_complextype
24
+ types
25
+ end
26
+
27
+ def self.array_complextype
28
+ type = XMLSchema::ComplexType.new(::SOAP::ValueArrayName)
29
+ type.complexcontent = XMLSchema::ComplexContent.new
30
+ type.complexcontent.restriction = XMLSchema::ComplexRestriction.new
31
+ type.complexcontent.restriction.base = ::SOAP::ValueArrayName
32
+ attr = XMLSchema::Attribute.new
33
+ attr.ref = ::SOAP::AttrArrayTypeName
34
+ anyarray = XSD::QName.new(
35
+ XSD::AnyTypeName.namespace,
36
+ XSD::AnyTypeName.name + '[]')
37
+ attr.arytype = anyarray
38
+ type.complexcontent.restriction.attributes << attr
39
+ type
40
+ end
41
+
42
+ =begin
43
+ <xs:complexType name="Fault" final="extension">
44
+ <xs:sequence>
45
+ <xs:element name="faultcode" type="xs:QName" />
46
+ <xs:element name="faultstring" type="xs:string" />
47
+ <xs:element name="faultactor" type="xs:anyURI" minOccurs="0" />
48
+ <xs:element name="detail" type="tns:detail" minOccurs="0" />
49
+ </xs:sequence>
50
+ </xs:complexType>
51
+ =end
52
+ def self.fault_complextype
53
+ type = XMLSchema::ComplexType.new(::SOAP::EleFaultName)
54
+ faultcode = XMLSchema::Element.new(::SOAP::EleFaultCodeName, XSD::XSDQName::Type)
55
+ faultstring = XMLSchema::Element.new(::SOAP::EleFaultStringName, XSD::XSDString::Type)
56
+ faultactor = XMLSchema::Element.new(::SOAP::EleFaultActorName, XSD::XSDAnyURI::Type)
57
+ faultactor.minoccurs = 0
58
+ detail = XMLSchema::Element.new(::SOAP::EleFaultDetailName, XSD::AnyTypeName)
59
+ detail.minoccurs = 0
60
+ type.all_elements = [faultcode, faultstring, faultactor, detail]
61
+ type.final = 'extension'
62
+ type
63
+ end
64
+
65
+ def self.exception_complextype
66
+ type = XMLSchema::ComplexType.new(XSD::QName.new(
67
+ ::SOAP::Mapping::RubyCustomTypeNamespace, 'SOAPException'))
68
+ excn_name = XMLSchema::Element.new(XSD::QName.new(nil, 'excn_type_name'), XSD::XSDString::Type)
69
+ cause = XMLSchema::Element.new(XSD::QName.new(nil, 'cause'), XSD::AnyTypeName)
70
+ backtrace = XMLSchema::Element.new(XSD::QName.new(nil, 'backtrace'), ::SOAP::ValueArrayName)
71
+ message = XMLSchema::Element.new(XSD::QName.new(nil, 'message'), XSD::XSDString::Type)
72
+ type.all_elements = [excn_name, cause, backtrace, message]
73
+ type
74
+ end
75
+
76
+ def soap_rpc_complextypes(binding)
77
+ types = rpc_operation_complextypes(binding)
78
+ types + self.class.soap_rpc_complextypes
79
+ end
80
+
81
+ def collect_faulttypes
82
+ result = []
83
+ collect_fault_messages.each do |name|
84
+ faultparts = message(name).parts
85
+ if faultparts.size != 1
86
+ raise RuntimeError.new("Expecting fault message \"#{name}\" to have ONE part")
87
+ end
88
+ fault_part = faultparts[0]
89
+ # WS-I Basic Profile Version 1.1 (R2205) requires fault message parts
90
+ # to refer to elements rather than types
91
+ faulttype = fault_part.element
92
+ if not faulttype
93
+ warn("Fault message \"#{name}\" part \"#{fault_part.name}\" must specify an \"element\" attribute")
94
+ faulttype = fault_part.type
95
+ end
96
+ if faulttype and result.index(faulttype).nil?
97
+ result << faulttype
98
+ end
99
+ end
100
+ result
101
+ end
102
+
103
+ private
104
+
105
+ def get_fault_binding(op_binding, fault_name)
106
+ op_binding.fault.each do |fault|
107
+ return fault if fault.name == fault_name
108
+ end
109
+ return nil
110
+ end
111
+
112
+ def op_binding_declares_fault(op_binding, fault_name)
113
+ return get_fault_binding(op_binding, fault_name) != nil
114
+ end
115
+
116
+ def collect_fault_messages
117
+ result = []
118
+ porttypes.each do |porttype|
119
+ port_binding = porttype.find_binding()
120
+ next unless port_binding
121
+ porttype.operations.each do |operation|
122
+ op_binding = port_binding.operations.find { |ele| ele.name == operation.name }
123
+ next unless op_binding
124
+ operation.fault.each do |fault|
125
+ # Make sure the operation fault has a name
126
+ if not fault.name
127
+ warn("Operation \"#{operation.name}\": fault must specify a \"name\" attribute")
128
+ next
129
+ end
130
+ # Make sure that portType fault has a corresponding soap:fault
131
+ # definition in binding section.
132
+ if not op_binding_declares_fault(op_binding, fault.name)
133
+ warn("Operation \"#{operation.name}\", fault \"#{fault.name}\": no corresponding wsdl:fault binding found with a matching \"name\" attribute")
134
+ next
135
+ end
136
+ fault_binding = get_fault_binding(op_binding, fault.name)
137
+ if fault_binding.soapfault.nil?
138
+ warn("WARNING: no soap:fault found for wsdl:fault \"#{fault_binding.name}\" in operation \"#{operation.name}\" \n\n")
139
+ next
140
+ end
141
+ if fault_binding.soapfault.name != fault_binding.name
142
+ warn("WARNING: name of soap:fault \"#{fault_binding.soapfault.name}\" doesn't match the name of wsdl:fault \"#{fault_binding.name}\" in operation \"#{operation.name}\" \n\n")
143
+ next
144
+ end
145
+ # According to WS-I (R2723): if in a wsdl:binding the use attribute
146
+ # on a contained soapbind:fault element is present, its value MUST
147
+ # be "literal".
148
+ if fault_binding.soapfault.use and fault_binding.soapfault.use != "literal"
149
+ warn("Operation \"#{operation.name}\", fault \"#{fault.name}\": soap:fault \"use\" attribute must be \"literal\"")
150
+ end
151
+ if result.index(fault.message).nil?
152
+ result << fault.message
153
+ end
154
+ end
155
+ end
156
+ end
157
+ result
158
+ end
159
+
160
+ def rpc_operation_complextypes(binding)
161
+ types = XSD::NamedElements.new
162
+ binding.operations.each do |op_bind|
163
+ if op_bind_rpc?(op_bind)
164
+ operation = op_bind.find_operation
165
+ if op_bind.input
166
+ type = XMLSchema::ComplexType.new(op_bind.soapoperation_name)
167
+ message = messages[operation.input.message]
168
+ type.sequence_elements = elements_from_message(message)
169
+ types << type
170
+ end
171
+ if op_bind.output
172
+ type = XMLSchema::ComplexType.new(operation.outputname)
173
+ message = messages[operation.output.message]
174
+ type.sequence_elements = elements_from_message(message)
175
+ types << type
176
+ end
177
+ end
178
+ end
179
+ types
180
+ end
181
+
182
+ def op_bind_rpc?(op_bind)
183
+ op_bind.soapoperation_style == :rpc
184
+ end
185
+
186
+ def elements_from_message(message)
187
+ message.parts.collect { |part|
188
+ if part.element
189
+ collect_elements[part.element]
190
+ elsif part.name.nil? or part.type.nil?
191
+ raise RuntimeError.new("part of a message must be an element or typed")
192
+ else
193
+ qname = XSD::QName.new(nil, part.name)
194
+ XMLSchema::Element.new(qname, part.type)
195
+ end
196
+ }
197
+ end
198
+ end
199
+
200
+
201
+ end
@@ -0,0 +1,121 @@
1
+ # encoding: UTF-8
2
+ # WSDL4R - Creating driver 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
+ require 'xsd/codegen'
15
+
16
+
17
+ module WSDL
18
+ module SOAP
19
+
20
+
21
+ class DriverCreator
22
+ include ClassDefCreatorSupport
23
+
24
+ attr_reader :definitions
25
+ attr_accessor :drivername_postfix
26
+
27
+ def initialize(definitions, name_creator, modulepath = nil)
28
+ @definitions = definitions
29
+ @name_creator = name_creator
30
+ @modulepath = modulepath
31
+ @drivername_postfix = ''
32
+ end
33
+
34
+ def dump(porttype = nil)
35
+ result = "require 'soap/rpc/driver'\n\n"
36
+ if @modulepath
37
+ modulepath = @modulepath.respond_to?(:lines) ? @modulepath.lines : @modulepath # RubyJedi: compatible with Ruby 1.8.6 and above
38
+ modulepath.each do |name|
39
+ result << "module #{name}\n"
40
+ end
41
+ result << "\n"
42
+ end
43
+ if porttype.nil?
44
+ @definitions.porttypes.each do |type|
45
+ result << dump_porttype(type.name)
46
+ result << "\n"
47
+ end
48
+ else
49
+ result << dump_porttype(porttype)
50
+ end
51
+ if @modulepath
52
+ result << "\n"
53
+ modulepath = @modulepath.respond_to?(:lines) ? @modulepath.lines : @modulepath # RubyJedi: compatible with Ruby 1.8.6 and above
54
+ modulepath.each do |name|
55
+ result << "end\n"
56
+ end
57
+ end
58
+ result
59
+ end
60
+
61
+ private
62
+
63
+ def dump_porttype(porttype)
64
+ drivername = porttype.name + @drivername_postfix
65
+ qname = XSD::QName.new(porttype.namespace, drivername)
66
+ class_name = mapped_class_basename(qname, @modulepath)
67
+ defined_const = {}
68
+ mdcreator = MethodDefCreator.new(@definitions, @name_creator, @modulepath, defined_const)
69
+ methoddef = mdcreator.dump(porttype)
70
+ binding = @definitions.bindings.find { |item| item.type == porttype }
71
+ if binding.nil? or binding.soapbinding.nil?
72
+ # not bound or not a SOAP binding
73
+ return ''
74
+ end
75
+ address = @definitions.porttype(porttype).locations[0]
76
+
77
+ c = XSD::CodeGen::ClassDef.new(class_name, "::SOAP::RPC::Driver")
78
+ c.def_const("DefaultEndpointUrl", ndq(address))
79
+ c.def_code <<-EOD
80
+ Methods = [
81
+ #{methoddef.gsub(/^/, " ")}
82
+ ]
83
+ EOD
84
+ wsdl_name = @definitions.name ? @definitions.name.name : 'default'
85
+ mrname = safeconstname(wsdl_name + 'MappingRegistry')
86
+ c.def_method("initialize", "endpoint_url = nil") do
87
+ %Q[endpoint_url ||= DefaultEndpointUrl\n] +
88
+ %Q[super(endpoint_url, nil)\n] +
89
+ %Q[self.mapping_registry = #{mrname}::EncodedRegistry\n] +
90
+ %Q[self.literal_mapping_registry = #{mrname}::LiteralRegistry\n] +
91
+ %Q[init_methods]
92
+ end
93
+ c.def_privatemethod("init_methods") do
94
+ <<-EOD
95
+ Methods.each do |definitions|
96
+ opt = definitions.last
97
+ if opt[:request_style] == :document
98
+ add_document_operation(*definitions)
99
+ else
100
+ add_rpc_operation(*definitions)
101
+ qname = definitions[0]
102
+ name = definitions[2]
103
+ if qname.name != name and qname.name.capitalize == name.capitalize
104
+ ::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
105
+ __send__(name, *arg)
106
+ end
107
+ end
108
+ end
109
+ end
110
+ EOD
111
+ end
112
+ defined_const.each do |ns, tag|
113
+ c.def_const(tag, dq(ns))
114
+ end
115
+ c.dump
116
+ end
117
+ end
118
+
119
+
120
+ end
121
+ end
@@ -0,0 +1,34 @@
1
+ # encoding: UTF-8
2
+ # WSDL4R - XMLSchema element definition for 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/xmlSchema/element'
11
+
12
+
13
+ module WSDL
14
+ module XMLSchema
15
+
16
+
17
+ class Element < Info
18
+ def map_as_array?
19
+ # parent sequence / choice may be marked as maxOccurs="unbounded"
20
+ maxoccurs.nil? or maxoccurs != 1 or (parent and parent.map_as_array?)
21
+ end
22
+
23
+ def anonymous_type?
24
+ !@ref and @name and @local_complextype
25
+ end
26
+
27
+ def attributes
28
+ @local_complextype.attributes
29
+ end
30
+ end
31
+
32
+
33
+ end
34
+ end
@@ -0,0 +1,74 @@
1
+ # encoding: UTF-8
2
+ # WSDL4R - Creating EncodedMappingRegistry 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/mappingRegistryCreatorSupport'
12
+
13
+
14
+ module WSDL
15
+ module SOAP
16
+
17
+
18
+ class EncodedMappingRegistryCreator
19
+ include MappingRegistryCreatorSupport
20
+
21
+ attr_reader :definitions
22
+
23
+ def initialize(definitions, name_creator, modulepath, defined_const)
24
+ @definitions = definitions
25
+ @name_creator = name_creator
26
+ @modulepath = nil #modulepath #tolgo il modulo per condividere le classi dei modelli tra client e server soap
27
+ @simpletypes = definitions.collect_simpletypes
28
+ @simpletypes.uniq!
29
+ @complextypes = definitions.collect_complextypes
30
+ @complextypes.uniq!
31
+ @varname = nil
32
+ @defined_const = defined_const
33
+ end
34
+
35
+ def dump(varname)
36
+ @varname = varname
37
+ result = ''
38
+ str = dump_complextype
39
+ unless str.empty?
40
+ result << "\n" unless result.empty?
41
+ result << str
42
+ end
43
+ str = dump_simpletype
44
+ unless str.empty?
45
+ result << "\n" unless result.empty?
46
+ result << str
47
+ end
48
+ result
49
+ end
50
+
51
+ private
52
+
53
+ def dump_complextype
54
+ @complextypes.collect { |type|
55
+ unless type.abstract
56
+ dump_with_inner {
57
+ dump_complextypedef(@modulepath, type.name, type, nil, :encoded => true)
58
+ }
59
+ end
60
+ }.compact.join("\n")
61
+ end
62
+
63
+ def dump_simpletype
64
+ @simpletypes.collect { |type|
65
+ dump_with_inner {
66
+ dump_simpletypedef(@modulepath, type.name, type, nil, :encoded => true)
67
+ }
68
+ }.compact.join("\n")
69
+ end
70
+ end
71
+
72
+
73
+ end
74
+ end
@@ -0,0 +1,57 @@
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 Fault < Info
18
+ attr_reader :name # required
19
+ attr_reader :use # required
20
+ attr_reader :encodingstyle
21
+ attr_reader :namespace
22
+
23
+ def initialize
24
+ super
25
+ @name = nil
26
+ @use = nil
27
+ @encodingstyle = nil
28
+ @namespace = nil
29
+ end
30
+
31
+ def targetnamespace
32
+ parent.targetnamespace
33
+ end
34
+
35
+ def parse_element(element)
36
+ nil
37
+ end
38
+
39
+ def parse_attr(attr, value)
40
+ case attr
41
+ when NameAttrName
42
+ @name = XSD::QName.new(targetnamespace, value.source)
43
+ when UseAttrName
44
+ @use = value.source
45
+ when EncodingStyleAttrName
46
+ @encodingstyle = value.source
47
+ when NamespaceAttrName
48
+ @namespace = value.source
49
+ else
50
+ nil
51
+ end
52
+ end
53
+ end
54
+
55
+
56
+ end
57
+ end
@@ -0,0 +1,87 @@
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 Header < Info
18
+ attr_reader :headerfault
19
+
20
+ attr_reader :message # required
21
+ attr_reader :part # required
22
+ attr_reader :use # required
23
+ attr_reader :encodingstyle
24
+ attr_reader :namespace
25
+
26
+ def initialize
27
+ super
28
+ @message = nil
29
+ @part = nil
30
+ @use = nil
31
+ @encodingstyle = nil
32
+ @namespace = nil
33
+ @headerfault = nil
34
+ end
35
+
36
+ def targetnamespace
37
+ parent.targetnamespace
38
+ end
39
+
40
+ def find_message
41
+ root.message(@message) or raise RuntimeError.new("#{@message} not found")
42
+ end
43
+
44
+ def find_part
45
+ find_message.parts.each do |part|
46
+ if part.name == @part
47
+ return part
48
+ end
49
+ end
50
+ raise RuntimeError.new("#{@part} not found")
51
+ end
52
+
53
+ def parse_element(element)
54
+ case element
55
+ when HeaderFaultName
56
+ o = WSDL::SOAP::HeaderFault.new
57
+ @headerfault = o
58
+ o
59
+ else
60
+ nil
61
+ end
62
+ end
63
+
64
+ def parse_attr(attr, value)
65
+ case attr
66
+ when MessageAttrName
67
+ if value.namespace.nil?
68
+ value = XSD::QName.new(targetnamespace, value.source)
69
+ end
70
+ @message = value
71
+ when PartAttrName
72
+ @part = value.source
73
+ when UseAttrName
74
+ @use = value.source
75
+ when EncodingStyleAttrName
76
+ @encodingstyle = value.source
77
+ when NamespaceAttrName
78
+ @namespace = value.source
79
+ else
80
+ nil
81
+ end
82
+ end
83
+ end
84
+
85
+
86
+ end
87
+ end
@@ -0,0 +1,57 @@
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 HeaderFault < Info
18
+ attr_reader :message # required
19
+ attr_reader :part # required
20
+ attr_reader :use # required
21
+ attr_reader :encodingstyle
22
+ attr_reader :namespace
23
+
24
+ def initialize
25
+ super
26
+ @message = nil
27
+ @part = nil
28
+ @use = nil
29
+ @encodingstyle = nil
30
+ @namespace = nil
31
+ end
32
+
33
+ def parse_element(element)
34
+ nil
35
+ end
36
+
37
+ def parse_attr(attr, value)
38
+ case attr
39
+ when MessageAttrName
40
+ @message = value
41
+ when PartAttrName
42
+ @part = value.source
43
+ when UseAttrName
44
+ @use = value.source
45
+ when EncodingStyleAttrName
46
+ @encodingstyle = value.source
47
+ when NamespaceAttrName
48
+ @namespace = value.source
49
+ else
50
+ nil
51
+ end
52
+ end
53
+ end
54
+
55
+
56
+ end
57
+ end