soap2r 1.5.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/bin/wsdl2ruby.rb +137 -0
  2. data/bin/xsd2ruby.rb +90 -0
  3. data/lib/soap/attachment.rb +108 -0
  4. data/lib/soap/attrproxy.rb +34 -0
  5. data/lib/soap/baseData.rb +1094 -0
  6. data/lib/soap/element.rb +277 -0
  7. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  8. data/lib/soap/encodingstyle/handler.rb +120 -0
  9. data/lib/soap/encodingstyle/literalHandler.rb +195 -0
  10. data/lib/soap/encodingstyle/soapHandler.rb +559 -0
  11. data/lib/soap/filter.rb +13 -0
  12. data/lib/soap/filter/filterchain.rb +51 -0
  13. data/lib/soap/filter/handler.rb +31 -0
  14. data/lib/soap/filter/streamhandler.rb +29 -0
  15. data/lib/soap/generator.rb +299 -0
  16. data/lib/soap/header/handler.rb +61 -0
  17. data/lib/soap/header/handlerset.rb +70 -0
  18. data/lib/soap/header/mappinghandler.rb +47 -0
  19. data/lib/soap/header/simplehandler.rb +44 -0
  20. data/lib/soap/httpconfigloader.rb +141 -0
  21. data/lib/soap/mapping.rb +12 -0
  22. data/lib/soap/mapping/encodedregistry.rb +537 -0
  23. data/lib/soap/mapping/factory.rb +388 -0
  24. data/lib/soap/mapping/literalregistry.rb +391 -0
  25. data/lib/soap/mapping/mapping.rb +576 -0
  26. data/lib/soap/mapping/registry.rb +295 -0
  27. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  28. data/lib/soap/mapping/schemadefinition.rb +170 -0
  29. data/lib/soap/mapping/typeMap.rb +106 -0
  30. data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
  31. data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
  32. data/lib/soap/marshal.rb +59 -0
  33. data/lib/soap/mimemessage.rb +241 -0
  34. data/lib/soap/nestedexception.rb +42 -0
  35. data/lib/soap/netHttpClient.rb +241 -0
  36. data/lib/soap/ns.rb +34 -0
  37. data/lib/soap/parser.rb +252 -0
  38. data/lib/soap/processor.rb +66 -0
  39. data/lib/soap/property.rb +319 -0
  40. data/lib/soap/proxy.rb +14 -0
  41. data/lib/soap/rpc/cgistub.rb +247 -0
  42. data/lib/soap/rpc/driver.rb +221 -0
  43. data/lib/soap/rpc/element.rb +374 -0
  44. data/lib/soap/rpc/httpserver.rb +142 -0
  45. data/lib/soap/rpc/methodDef.rb +68 -0
  46. data/lib/soap/rpc/proxy.rb +572 -0
  47. data/lib/soap/rpc/router.rb +662 -0
  48. data/lib/soap/rpc/rpc.rb +25 -0
  49. data/lib/soap/rpc/soaplet.rb +200 -0
  50. data/lib/soap/rpc/standaloneServer.rb +43 -0
  51. data/lib/soap/soap.rb +151 -0
  52. data/lib/soap/streamHandler.rb +301 -0
  53. data/lib/soap/wsdlDriver.rb +164 -0
  54. data/lib/wsdl/binding.rb +65 -0
  55. data/lib/wsdl/data.rb +64 -0
  56. data/lib/wsdl/definitions.rb +236 -0
  57. data/lib/wsdl/documentation.rb +32 -0
  58. data/lib/wsdl/import.rb +80 -0
  59. data/lib/wsdl/importer.rb +38 -0
  60. data/lib/wsdl/info.rb +50 -0
  61. data/lib/wsdl/message.rb +54 -0
  62. data/lib/wsdl/operation.rb +151 -0
  63. data/lib/wsdl/operationBinding.rb +240 -0
  64. data/lib/wsdl/param.rb +93 -0
  65. data/lib/wsdl/parser.rb +164 -0
  66. data/lib/wsdl/part.rb +52 -0
  67. data/lib/wsdl/port.rb +66 -0
  68. data/lib/wsdl/portType.rb +75 -0
  69. data/lib/wsdl/service.rb +61 -0
  70. data/lib/wsdl/soap/address.rb +40 -0
  71. data/lib/wsdl/soap/binding.rb +49 -0
  72. data/lib/wsdl/soap/body.rb +58 -0
  73. data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
  74. data/lib/wsdl/soap/classDefCreator.rb +433 -0
  75. data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
  76. data/lib/wsdl/soap/classNameCreator.rb +54 -0
  77. data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
  78. data/lib/wsdl/soap/complexType.rb +173 -0
  79. data/lib/wsdl/soap/data.rb +42 -0
  80. data/lib/wsdl/soap/definitions.rb +200 -0
  81. data/lib/wsdl/soap/driverCreator.rb +118 -0
  82. data/lib/wsdl/soap/element.rb +33 -0
  83. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
  84. data/lib/wsdl/soap/fault.rb +56 -0
  85. data/lib/wsdl/soap/header.rb +86 -0
  86. data/lib/wsdl/soap/headerfault.rb +56 -0
  87. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
  88. data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
  89. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
  90. data/lib/wsdl/soap/methodDefCreator.rb +199 -0
  91. data/lib/wsdl/soap/operation.rb +112 -0
  92. data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
  93. data/lib/wsdl/soap/servletStubCreator.rb +104 -0
  94. data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
  95. data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
  96. data/lib/wsdl/types.rb +44 -0
  97. data/lib/wsdl/wsdl.rb +24 -0
  98. data/lib/wsdl/xmlSchema/all.rb +24 -0
  99. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  100. data/lib/wsdl/xmlSchema/any.rb +61 -0
  101. data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
  102. data/lib/wsdl/xmlSchema/attribute.rb +104 -0
  103. data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
  104. data/lib/wsdl/xmlSchema/choice.rb +58 -0
  105. data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
  106. data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
  107. data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
  108. data/lib/wsdl/xmlSchema/complexType.rb +193 -0
  109. data/lib/wsdl/xmlSchema/content.rb +95 -0
  110. data/lib/wsdl/xmlSchema/data.rb +116 -0
  111. data/lib/wsdl/xmlSchema/element.rb +153 -0
  112. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  113. data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
  114. data/lib/wsdl/xmlSchema/group.rb +100 -0
  115. data/lib/wsdl/xmlSchema/import.rb +53 -0
  116. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  117. data/lib/wsdl/xmlSchema/importer.rb +102 -0
  118. data/lib/wsdl/xmlSchema/include.rb +48 -0
  119. data/lib/wsdl/xmlSchema/length.rb +37 -0
  120. data/lib/wsdl/xmlSchema/list.rb +48 -0
  121. data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
  122. data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
  123. data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
  124. data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
  125. data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
  126. data/lib/wsdl/xmlSchema/minlength.rb +37 -0
  127. data/lib/wsdl/xmlSchema/parser.rb +167 -0
  128. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  129. data/lib/wsdl/xmlSchema/ref.rb +33 -0
  130. data/lib/wsdl/xmlSchema/schema.rb +178 -0
  131. data/lib/wsdl/xmlSchema/sequence.rb +54 -0
  132. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  133. data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
  134. data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
  135. data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
  136. data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
  137. data/lib/wsdl/xmlSchema/union.rb +35 -0
  138. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  139. data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
  140. data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
  141. data/lib/xsd/charset.rb +193 -0
  142. data/lib/xsd/codegen.rb +12 -0
  143. data/lib/xsd/codegen/classdef.rb +208 -0
  144. data/lib/xsd/codegen/commentdef.rb +34 -0
  145. data/lib/xsd/codegen/gensupport.rb +273 -0
  146. data/lib/xsd/codegen/methoddef.rb +70 -0
  147. data/lib/xsd/codegen/moduledef.rb +208 -0
  148. data/lib/xsd/datatypes.rb +1466 -0
  149. data/lib/xsd/datatypes1999.rb +20 -0
  150. data/lib/xsd/iconvcharset.rb +39 -0
  151. data/lib/xsd/mapping.rb +68 -0
  152. data/lib/xsd/namedelements.rb +132 -0
  153. data/lib/xsd/ns.rb +182 -0
  154. data/lib/xsd/qname.rb +79 -0
  155. data/lib/xsd/xmlparser.rb +76 -0
  156. data/lib/xsd/xmlparser/libxmlparser.rb +115 -0
  157. data/lib/xsd/xmlparser/parser.rb +100 -0
  158. data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
  159. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  160. data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
  161. metadata +224 -0
@@ -0,0 +1,199 @@
1
+ # WSDL4R - Creating method definition from WSDL
2
+ # Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
+
4
+ # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
+ # redistribute it and/or modify it under the same terms of Ruby's license;
6
+ # either the dual license version in 2003, or any later version.
7
+
8
+
9
+ require 'wsdl/info'
10
+ require 'wsdl/soap/classDefCreatorSupport'
11
+ require 'soap/rpc/element'
12
+ require 'soap/rpc/methodDef'
13
+
14
+
15
+ module WSDL
16
+ module SOAP
17
+
18
+
19
+ class MethodDefCreator
20
+ include ClassDefCreatorSupport
21
+
22
+ attr_reader :definitions
23
+ # TODO: should not export this kind of stateful information.
24
+ # will be rewwritten in 1.6.1
25
+ attr_reader :assigned_method
26
+
27
+ def initialize(definitions, name_creator, modulepath, defined_const)
28
+ @definitions = definitions
29
+ @name_creator = name_creator
30
+ @modulepath = modulepath
31
+ @simpletypes = @definitions.collect_simpletypes
32
+ @complextypes = @definitions.collect_complextypes
33
+ @elements = @definitions.collect_elements
34
+ @defined_const = defined_const
35
+ @assigned_method = {}
36
+ end
37
+
38
+ def dump(name)
39
+ methoddef = ""
40
+ porttype = @definitions.porttype(name)
41
+ binding = porttype.find_binding
42
+ if binding
43
+ create(binding.name).each do |mdef|
44
+ methoddef << ",\n" unless methoddef.empty?
45
+ methoddef << dump_method(mdef).chomp
46
+ end
47
+ end
48
+ methoddef
49
+ end
50
+
51
+ def create(bindingname)
52
+ binding = @definitions.binding(bindingname)
53
+ if binding
54
+ return binding.operations.collect { |op_bind|
55
+ next unless op_bind.soapoperation # not a SOAP operation binding
56
+ create_methoddef(op_bind)
57
+ }
58
+ end
59
+ nil
60
+ end
61
+
62
+ private
63
+
64
+ def create_methoddef(op_bind)
65
+ op_info = op_bind.operation_info
66
+ name = assign_method_name(op_bind)
67
+ soapaction = op_info.boundid.soapaction
68
+ qname = op_bind.soapoperation_name
69
+ mdef = ::SOAP::RPC::MethodDef.new(name, soapaction, qname)
70
+ op_info.parts.each do |part|
71
+ if op_info.style == :rpc
72
+ mapped_class, qname = rpcdefinedtype(part)
73
+ else
74
+ mapped_class, qname = documentdefinedtype(part)
75
+ end
76
+ mdef.add_parameter(part.io_type, part.name, qname, mapped_class)
77
+ end
78
+ op_info.faults.each do |name, faultinfo|
79
+ faultclass = mapped_class_name(name, @modulepath)
80
+ mdef.faults[faultclass] = faultinfo
81
+ end
82
+ mdef.style = op_info.style
83
+ mdef.inputuse = op_info.inputuse
84
+ mdef.outputuse = op_info.outputuse
85
+ mdef
86
+ end
87
+
88
+ def dump_method(mdef)
89
+ style = mdef.style
90
+ inputuse = mdef.inputuse
91
+ outputuse = mdef.outputuse
92
+ paramstr = param2str(mdef.parameters)
93
+ if paramstr.empty?
94
+ paramstr = '[]'
95
+ else
96
+ paramstr = "[ " << paramstr.split(/\r?\n/).join("\n ") << " ]"
97
+ end
98
+ definitions = <<__EOD__
99
+ #{ndq(mdef.soapaction)},
100
+ #{dq(mdef.name)},
101
+ #{paramstr},
102
+ { :request_style => #{nsym(style)}, :request_use => #{nsym(inputuse)},
103
+ :response_style => #{nsym(style)}, :response_use => #{nsym(outputuse)},
104
+ :faults => #{mdef.faults.inspect} }
105
+ __EOD__
106
+ if style == :rpc
107
+ assign_const(mdef.qname.namespace, 'Ns')
108
+ return <<__EOD__
109
+ [ #{dqname(mdef.qname)},
110
+ #{definitions}]
111
+ __EOD__
112
+ else
113
+ return <<__EOD__
114
+ [ #{definitions}]
115
+ __EOD__
116
+ end
117
+ end
118
+
119
+ def assign_method_name(op_bind)
120
+ method_name = safemethodname(op_bind.name)
121
+ i = 1 # starts from _2
122
+ while @assigned_method.value?(method_name)
123
+ i += 1
124
+ method_name = safemethodname("#{op_bind.name}_#{i}")
125
+ end
126
+ @assigned_method[op_bind.boundid] = method_name
127
+ method_name
128
+ end
129
+
130
+ def rpcdefinedtype(part)
131
+ if mapped = basetype_mapped_class(part.type)
132
+ return ['::' + mapped.name, nil]
133
+ elsif definedtype = @simpletypes[part.type]
134
+ return [nil, definedtype.name]
135
+ elsif definedtype = @elements[part.element]
136
+ return [nil, part.element]
137
+ elsif definedtype = @complextypes[part.type]
138
+ case definedtype.compoundtype
139
+ when :TYPE_STRUCT, :TYPE_EMPTY, :TYPE_ARRAY, :TYPE_SIMPLE
140
+ type = mapped_class_name(part.type, @modulepath)
141
+ return [type, part.type]
142
+ when :TYPE_MAP
143
+ return [Hash.name, part.type]
144
+ else
145
+ raise NotImplementedError.new("must not reach here: #{definedtype.compoundtype}")
146
+ end
147
+ elsif part.type == XSD::AnyTypeName
148
+ return [nil, nil]
149
+ else
150
+ raise RuntimeError.new("part: #{part.name} cannot be resolved")
151
+ end
152
+ end
153
+
154
+ def documentdefinedtype(part)
155
+ if mapped = basetype_mapped_class(part.type)
156
+ return ['::' + mapped.name, XSD::QName.new(nil, part.name)]
157
+ elsif definedtype = @simpletypes[part.type]
158
+ if definedtype.base
159
+ return ['::' + basetype_mapped_class(definedtype.base).name, XSD::QName.new(nil, part.name)]
160
+ else
161
+ raise RuntimeError.new("unsupported simpleType: #{definedtype}")
162
+ end
163
+ elsif definedtype = @elements[part.element]
164
+ return ['::SOAP::SOAPElement', part.element]
165
+ elsif definedtype = @complextypes[part.type]
166
+ return ['::SOAP::SOAPElement', part.type]
167
+ else
168
+ raise RuntimeError.new("part: #{part.name} cannot be resolved")
169
+ end
170
+ end
171
+
172
+ def param2str(params)
173
+ params.collect { |param|
174
+ mappingstr = mapping_info2str(param.mapped_class, param.qname)
175
+ "[:#{param.io_type.id2name}, #{dq(param.name)}, #{mappingstr}]"
176
+ }.join(",\n")
177
+ end
178
+
179
+ def mapping_info2str(mapped_class, qname)
180
+ if qname.nil?
181
+ "[#{ndq(mapped_class)}]"
182
+ else
183
+ "[#{ndq(mapped_class)}, #{ndq(qname.namespace)}, #{dq(qname.name)}]"
184
+ end
185
+ end
186
+
187
+ def ele2str(ele)
188
+ qualified = ele
189
+ if qualified
190
+ "true"
191
+ else
192
+ "false"
193
+ end
194
+ end
195
+ end
196
+
197
+
198
+ end
199
+ end
@@ -0,0 +1,112 @@
1
+ # WSDL4R - WSDL SOAP operation definition.
2
+ # Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
+
4
+ # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
+ # redistribute it and/or modify it under the same terms of Ruby's license;
6
+ # either the dual license version in 2003, or any later version.
7
+
8
+
9
+ require 'wsdl/info'
10
+
11
+
12
+ module WSDL
13
+ module SOAP
14
+
15
+
16
+ class Operation < Info
17
+ class ParamInfo
18
+ attr_reader :style
19
+ attr_reader :op_name
20
+ attr_reader :optype_name
21
+ attr_reader :encodingstyle
22
+ attr_reader :headerparts
23
+ attr_reader :bodyparts
24
+ attr_reader :faultpart
25
+ attr_reader :soapaction
26
+
27
+ def initialize(style, use, encodingstyle, op_name, optype_name,
28
+ headerparts, bodyparts, faultpart, soapaction)
29
+ @style = style
30
+ @use = use
31
+ @encodingstyle = encodingstyle
32
+ @op_name = op_name
33
+ @optype_name = optype_name
34
+ @headerparts = headerparts
35
+ @bodyparts = bodyparts
36
+ @faultpart = faultpart
37
+ @soapaction = soapaction
38
+ end
39
+ end
40
+
41
+ attr_reader :soapaction
42
+ attr_reader :style
43
+
44
+ def initialize
45
+ super
46
+ @soapaction = nil
47
+ @style = nil
48
+ end
49
+
50
+ def parse_element(element)
51
+ nil
52
+ end
53
+
54
+ def parse_attr(attr, value)
55
+ case attr
56
+ when StyleAttrName
57
+ if ["document", "rpc"].include?(value.source)
58
+ @style = value.source.intern
59
+ else
60
+ raise Parser::AttributeConstraintError.new(
61
+ "Unexpected value #{ value }.")
62
+ end
63
+ when SOAPActionAttrName
64
+ @soapaction = value.source
65
+ else
66
+ nil
67
+ end
68
+ end
69
+
70
+ def operation_style
71
+ return @style if @style
72
+ if parent_binding.soapbinding
73
+ return parent_binding.soapbinding.style
74
+ end
75
+ nil
76
+ end
77
+
78
+ private
79
+
80
+ def parent_binding
81
+ parent.parent
82
+ end
83
+
84
+ def create_param_info(name_info, param)
85
+ op_style = operation_style()
86
+ op_use = param.soapbody_use
87
+ op_encodingstyle = param.soapbody_encodingstyle
88
+ op_name = name_info.op_name
89
+ optype_name = name_info.optype_name
90
+ soapheader = param.soapheader
91
+ headerparts = soapheader.collect { |item| item.find_part }
92
+ soapbody = param.soapbody
93
+ if soapbody.namespace
94
+ op_name = XSD::QName.new(soapbody.namespace, op_name.name)
95
+ end
96
+ if soapbody.parts
97
+ target = soapbody.parts.split(/\s+/)
98
+ bodyparts = name_info.parts.find_all { |part|
99
+ target.include?(part.name)
100
+ }
101
+ else
102
+ bodyparts = name_info.parts
103
+ end
104
+ faultpart = nil
105
+ ParamInfo.new(op_style, op_use, op_encodingstyle, op_name, optype_name,
106
+ headerparts, bodyparts, faultpart, parent.soapaction)
107
+ end
108
+ end
109
+
110
+
111
+ end
112
+ end
@@ -0,0 +1,89 @@
1
+ # WSDL4R - Creating servant skelton code from WSDL.
2
+ # Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
+
4
+ # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
+ # redistribute it and/or modify it under the same terms of Ruby's license;
6
+ # either the dual license version in 2003, or any later version.
7
+
8
+
9
+ require 'wsdl/info'
10
+ require 'wsdl/soap/classDefCreatorSupport'
11
+ require 'xsd/codegen'
12
+
13
+
14
+ module WSDL
15
+ module SOAP
16
+
17
+
18
+ class ServantSkeltonCreator
19
+ include ClassDefCreatorSupport
20
+ include XSD::CodeGen::GenSupport
21
+
22
+ attr_reader :definitions
23
+
24
+ def initialize(definitions, name_creator, modulepath = nil)
25
+ @definitions = definitions
26
+ @name_creator = name_creator
27
+ @modulepath = modulepath
28
+ end
29
+
30
+ def dump(porttype = nil)
31
+ result = ""
32
+ if @modulepath
33
+ result << "\n"
34
+ result << @modulepath.collect { |ele| "module #{ele}" }.join("; ")
35
+ result << "\n\n"
36
+ end
37
+ if porttype.nil?
38
+ @definitions.porttypes.each do |porttype|
39
+ result << dump_porttype(porttype)
40
+ result << "\n"
41
+ end
42
+ else
43
+ result << dump_porttype(porttype)
44
+ end
45
+ if @modulepath
46
+ result << "\n\n"
47
+ result << @modulepath.collect { |ele| "end" }.join("; ")
48
+ result << "\n"
49
+ end
50
+ result
51
+ end
52
+
53
+ private
54
+
55
+ def dump_porttype(porttype)
56
+ assigned_method = collect_assigned_method(@definitions, porttype.name, @modulepath)
57
+ class_name = mapped_class_basename(porttype.name, @modulepath)
58
+ c = XSD::CodeGen::ClassDef.new(class_name)
59
+ element_definitions = @definitions.collect_elements
60
+ binding = porttype.find_binding
61
+ if binding
62
+ binding.operations.each do |op_bind|
63
+ operation = op_bind.find_operation
64
+ if operation.nil?
65
+ warn("operation not found for binding: #{op_bind}")
66
+ next
67
+ end
68
+ name = assigned_method[op_bind.boundid] || operation.name
69
+ methodname = safemethodname(name)
70
+ input = operation.input
71
+ params = input.find_message.parts.collect { |part|
72
+ safevarname(part.name)
73
+ }
74
+ m = XSD::CodeGen::MethodDef.new(methodname, params) do <<-EOD
75
+ p [#{params.join(", ")}]
76
+ raise NotImplementedError.new
77
+ EOD
78
+ end
79
+ m.comment = dump_method_signature(methodname, operation, element_definitions)
80
+ c.add_method(m)
81
+ end
82
+ end
83
+ c.dump
84
+ end
85
+ end
86
+
87
+
88
+ end
89
+ end
@@ -0,0 +1,104 @@
1
+ # WSDL4R - Creating servlet stub code from WSDL.
2
+ # Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
+
4
+ # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
+ # redistribute it and/or modify it under the same terms of Ruby's license;
6
+ # either the dual license version in 2003, or any later version.
7
+
8
+
9
+ require 'wsdl/info'
10
+ require 'wsdl/soap/mappingRegistryCreator'
11
+ require 'wsdl/soap/methodDefCreator'
12
+ require 'wsdl/soap/classDefCreatorSupport'
13
+
14
+
15
+ module WSDL
16
+ module SOAP
17
+
18
+
19
+ class ServletStubCreator
20
+ include ClassDefCreatorSupport
21
+
22
+ attr_reader :definitions
23
+
24
+ def initialize(definitions, name_creator, modulepath = nil)
25
+ @definitions = definitions
26
+ @name_creator = name_creator
27
+ @modulepath = modulepath
28
+ end
29
+
30
+ def dump(service_name)
31
+ warn("- Servlet stub can have only 1 port for now. So creating stub for the first port and rests are ignored.")
32
+ services = @definitions.service(service_name)
33
+ unless services
34
+ raise RuntimeError.new("service not defined: #{service_name}")
35
+ end
36
+ ports = services.ports
37
+ if ports.empty?
38
+ raise RuntimeError.new("ports not found for #{service_name}")
39
+ end
40
+ port = ports[0]
41
+ if port.porttype.nil?
42
+ raise RuntimeError.new("porttype not found for #{port}")
43
+ end
44
+ dump_porttype(port.porttype)
45
+ end
46
+
47
+ private
48
+
49
+ def dump_porttype(porttype)
50
+ class_name = mapped_class_name(porttype.name, @modulepath)
51
+ defined_const = {}
52
+ methoddef = MethodDefCreator.new(@definitions, @name_creator, @modulepath, defined_const).dump(porttype.name)
53
+ wsdl_name = @definitions.name ? @definitions.name.name : 'default'
54
+ mrname = safeconstname(wsdl_name + 'MappingRegistry')
55
+ c1 = XSD::CodeGen::ClassDef.new(class_name)
56
+ c1.def_require("soap/rpc/soaplet")
57
+ c1.def_code <<-EOD
58
+ Methods = [
59
+ #{methoddef.gsub(/^/, " ")}
60
+ ]
61
+ EOD
62
+ defined_const.each do |ns, tag|
63
+ c1.def_const(tag, dq(ns))
64
+ end
65
+ c2 = XSD::CodeGen::ClassDef.new(class_name + "Servlet",
66
+ "::SOAP::RPC::SOAPlet")
67
+ c2.def_method("initialize", "router = nil") do
68
+ <<-EOD
69
+ super(router)
70
+ servant = #{class_name}.new
71
+ #{class_name}::Methods.each do |definitions|
72
+ opt = definitions.last
73
+ if opt[:request_style] == :document
74
+ @router.add_document_operation(servant, *definitions)
75
+ else
76
+ @router.add_rpc_operation(servant, *definitions)
77
+ end
78
+ end
79
+ @router.mapping_registry = #{mrname}::EncodedRegistry
80
+ @router.literal_mapping_registry = #{mrname}::LiteralRegistry
81
+ EOD
82
+ end
83
+ c1.dump + "\n" + c2.dump + format(<<-EOD)
84
+
85
+ if $0 == __FILE__
86
+ require 'webrick'
87
+ server = WEBrick::HTTPServer.new(
88
+ :BindAddress => "0.0.0.0",
89
+ :Port => 10080,
90
+ :DocumentRoot => "."
91
+ )
92
+ server.mount("/", #{c2.name}.new)
93
+ trap(:INT) do
94
+ server.shutdown
95
+ end
96
+ server.start
97
+ end
98
+ EOD
99
+ end
100
+ end
101
+
102
+
103
+ end
104
+ end