railsware-soap4r 1.5.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. data/README +5 -0
  2. data/TODO +0 -0
  3. data/bin/wsdl2ruby.rb +137 -0
  4. data/bin/xsd2ruby.rb +90 -0
  5. data/lib/soap/XMLSchemaDatatypes.rb +9 -0
  6. data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
  7. data/lib/soap/attachment.rb +108 -0
  8. data/lib/soap/baseData.rb +1092 -0
  9. data/lib/soap/cgistub.rb +9 -0
  10. data/lib/soap/charset.rb +9 -0
  11. data/lib/soap/compat.rb +182 -0
  12. data/lib/soap/driver.rb +9 -0
  13. data/lib/soap/element.rb +277 -0
  14. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  15. data/lib/soap/encodingstyle/handler.rb +120 -0
  16. data/lib/soap/encodingstyle/literalHandler.rb +192 -0
  17. data/lib/soap/encodingstyle/soapHandler.rb +559 -0
  18. data/lib/soap/filter.rb +13 -0
  19. data/lib/soap/filter/filterchain.rb +51 -0
  20. data/lib/soap/filter/handler.rb +31 -0
  21. data/lib/soap/filter/streamhandler.rb +29 -0
  22. data/lib/soap/generator.rb +304 -0
  23. data/lib/soap/header/handler.rb +61 -0
  24. data/lib/soap/header/handlerset.rb +70 -0
  25. data/lib/soap/header/mappinghandler.rb +47 -0
  26. data/lib/soap/header/simplehandler.rb +44 -0
  27. data/lib/soap/httpconfigloader.rb +139 -0
  28. data/lib/soap/mapping.rb +12 -0
  29. data/lib/soap/mapping/encodedregistry.rb +548 -0
  30. data/lib/soap/mapping/factory.rb +388 -0
  31. data/lib/soap/mapping/literalregistry.rb +388 -0
  32. data/lib/soap/mapping/mapping.rb +609 -0
  33. data/lib/soap/mapping/registry.rb +295 -0
  34. data/lib/soap/mapping/rubytypeFactory.rb +478 -0
  35. data/lib/soap/mapping/schemadefinition.rb +170 -0
  36. data/lib/soap/mapping/typeMap.rb +106 -0
  37. data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
  38. data/lib/soap/mapping/wsdlliteralregistry.rb +243 -0
  39. data/lib/soap/mappingRegistry.rb +9 -0
  40. data/lib/soap/marshal.rb +59 -0
  41. data/lib/soap/mimemessage.rb +241 -0
  42. data/lib/soap/namespace.rb +9 -0
  43. data/lib/soap/nestedexception.rb +42 -0
  44. data/lib/soap/netHttpClient.rb +241 -0
  45. data/lib/soap/ns.rb +34 -0
  46. data/lib/soap/parser.rb +252 -0
  47. data/lib/soap/processor.rb +66 -0
  48. data/lib/soap/property.rb +333 -0
  49. data/lib/soap/proxy.rb +14 -0
  50. data/lib/soap/qname.rb +9 -0
  51. data/lib/soap/rpc/cgistub.rb +247 -0
  52. data/lib/soap/rpc/driver.rb +247 -0
  53. data/lib/soap/rpc/element.rb +369 -0
  54. data/lib/soap/rpc/httpserver.rb +169 -0
  55. data/lib/soap/rpc/proxy.rb +576 -0
  56. data/lib/soap/rpc/router.rb +669 -0
  57. data/lib/soap/rpc/rpc.rb +25 -0
  58. data/lib/soap/rpc/soaplet.rb +210 -0
  59. data/lib/soap/rpc/standaloneServer.rb +43 -0
  60. data/lib/soap/rpcRouter.rb +9 -0
  61. data/lib/soap/rpcUtils.rb +9 -0
  62. data/lib/soap/server.rb +9 -0
  63. data/lib/soap/soap.rb +151 -0
  64. data/lib/soap/standaloneServer.rb +9 -0
  65. data/lib/soap/streamHandler.rb +302 -0
  66. data/lib/soap/wsdlDriver.rb +597 -0
  67. data/lib/tags +5690 -0
  68. data/lib/wsdl/binding.rb +65 -0
  69. data/lib/wsdl/data.rb +64 -0
  70. data/lib/wsdl/definitions.rb +236 -0
  71. data/lib/wsdl/documentation.rb +32 -0
  72. data/lib/wsdl/import.rb +80 -0
  73. data/lib/wsdl/importer.rb +38 -0
  74. data/lib/wsdl/info.rb +50 -0
  75. data/lib/wsdl/message.rb +54 -0
  76. data/lib/wsdl/operation.rb +178 -0
  77. data/lib/wsdl/operationBinding.rb +130 -0
  78. data/lib/wsdl/param.rb +93 -0
  79. data/lib/wsdl/parser.rb +164 -0
  80. data/lib/wsdl/part.rb +52 -0
  81. data/lib/wsdl/port.rb +84 -0
  82. data/lib/wsdl/portType.rb +75 -0
  83. data/lib/wsdl/service.rb +61 -0
  84. data/lib/wsdl/soap/address.rb +40 -0
  85. data/lib/wsdl/soap/binding.rb +49 -0
  86. data/lib/wsdl/soap/body.rb +58 -0
  87. data/lib/wsdl/soap/cgiStubCreator.rb +93 -0
  88. data/lib/wsdl/soap/classDefCreator.rb +433 -0
  89. data/lib/wsdl/soap/classDefCreatorSupport.rb +230 -0
  90. data/lib/wsdl/soap/classNameCreator.rb +54 -0
  91. data/lib/wsdl/soap/clientSkeltonCreator.rb +95 -0
  92. data/lib/wsdl/soap/complexType.rb +172 -0
  93. data/lib/wsdl/soap/data.rb +42 -0
  94. data/lib/wsdl/soap/definitions.rb +200 -0
  95. data/lib/wsdl/soap/driverCreator.rb +118 -0
  96. data/lib/wsdl/soap/element.rb +33 -0
  97. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
  98. data/lib/wsdl/soap/fault.rb +56 -0
  99. data/lib/wsdl/soap/header.rb +86 -0
  100. data/lib/wsdl/soap/headerfault.rb +56 -0
  101. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
  102. data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
  103. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
  104. data/lib/wsdl/soap/methodDefCreator.rb +263 -0
  105. data/lib/wsdl/soap/operation.rb +122 -0
  106. data/lib/wsdl/soap/servantSkeltonCreator.rb +80 -0
  107. data/lib/wsdl/soap/servletStubCreator.rb +107 -0
  108. data/lib/wsdl/soap/standaloneServerStubCreator.rb +103 -0
  109. data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
  110. data/lib/wsdl/types.rb +44 -0
  111. data/lib/wsdl/wsdl.rb +24 -0
  112. data/lib/wsdl/xmlSchema/all.rb +24 -0
  113. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  114. data/lib/wsdl/xmlSchema/any.rb +61 -0
  115. data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
  116. data/lib/wsdl/xmlSchema/attribute.rb +123 -0
  117. data/lib/wsdl/xmlSchema/attributeGroup.rb +86 -0
  118. data/lib/wsdl/xmlSchema/choice.rb +58 -0
  119. data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
  120. data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
  121. data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
  122. data/lib/wsdl/xmlSchema/complexType.rb +193 -0
  123. data/lib/wsdl/xmlSchema/content.rb +95 -0
  124. data/lib/wsdl/xmlSchema/data.rb +116 -0
  125. data/lib/wsdl/xmlSchema/element.rb +173 -0
  126. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  127. data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
  128. data/lib/wsdl/xmlSchema/group.rb +118 -0
  129. data/lib/wsdl/xmlSchema/import.rb +53 -0
  130. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  131. data/lib/wsdl/xmlSchema/importer.rb +102 -0
  132. data/lib/wsdl/xmlSchema/include.rb +48 -0
  133. data/lib/wsdl/xmlSchema/length.rb +37 -0
  134. data/lib/wsdl/xmlSchema/list.rb +48 -0
  135. data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
  136. data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
  137. data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
  138. data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
  139. data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
  140. data/lib/wsdl/xmlSchema/minlength.rb +37 -0
  141. data/lib/wsdl/xmlSchema/parser.rb +167 -0
  142. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  143. data/lib/wsdl/xmlSchema/schema.rb +178 -0
  144. data/lib/wsdl/xmlSchema/sequence.rb +54 -0
  145. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  146. data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
  147. data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
  148. data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
  149. data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
  150. data/lib/wsdl/xmlSchema/union.rb +35 -0
  151. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  152. data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
  153. data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
  154. data/lib/xsd/charset.rb +189 -0
  155. data/lib/xsd/codegen.rb +12 -0
  156. data/lib/xsd/codegen/classdef.rb +208 -0
  157. data/lib/xsd/codegen/commentdef.rb +34 -0
  158. data/lib/xsd/codegen/gensupport.rb +273 -0
  159. data/lib/xsd/codegen/methoddef.rb +70 -0
  160. data/lib/xsd/codegen/moduledef.rb +208 -0
  161. data/lib/xsd/datatypes.rb +1466 -0
  162. data/lib/xsd/datatypes1999.rb +20 -0
  163. data/lib/xsd/iconvcharset.rb +33 -0
  164. data/lib/xsd/mapping.rb +67 -0
  165. data/lib/xsd/namedelements.rb +132 -0
  166. data/lib/xsd/ns.rb +182 -0
  167. data/lib/xsd/qname.rb +79 -0
  168. data/lib/xsd/xmlparser.rb +75 -0
  169. data/lib/xsd/xmlparser/parser.rb +100 -0
  170. data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
  171. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  172. data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
  173. data/soap4r.gemspec +218 -0
  174. metadata +233 -0
@@ -0,0 +1,38 @@
1
+ # WSDL4R - WSDL importer library.
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/xmlSchema/importer'
10
+ require 'wsdl/parser'
11
+
12
+
13
+ module WSDL
14
+
15
+
16
+ class Importer < WSDL::XMLSchema::Importer
17
+ def self.import(location, originalroot = nil)
18
+ new.import(location, originalroot)
19
+ end
20
+
21
+ private
22
+
23
+ def parse(content, location, originalroot)
24
+ opt = {
25
+ :location => location,
26
+ :originalroot => originalroot
27
+ }
28
+ begin
29
+ WSDL::Parser.new(opt).parse(content)
30
+ rescue WSDL::Parser::ParseError
31
+ super(content, location, originalroot)
32
+ end
33
+ end
34
+
35
+ end
36
+
37
+
38
+ end
data/lib/wsdl/info.rb ADDED
@@ -0,0 +1,50 @@
1
+ # WSDL4R - WSDL information base.
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
+ module WSDL
10
+
11
+
12
+ class Info
13
+ attr_accessor :root
14
+ attr_accessor :parent
15
+ attr_accessor :id
16
+
17
+ def initialize
18
+ @root = nil
19
+ @parent = nil
20
+ @id = nil
21
+ end
22
+
23
+ def inspect
24
+ if self.respond_to?(:name)
25
+ sprintf("#<%s:0x%x %s>", self.class.name, __id__, self.name)
26
+ else
27
+ sprintf("#<%s:0x%x>", self.class.name, __id__)
28
+ end
29
+ end
30
+
31
+ def parse_element(element); end # abstract
32
+
33
+ def parse_attr(attr, value); end # abstract
34
+
35
+ def parse_epilogue; end # abstract
36
+
37
+ private
38
+
39
+ def to_int(value)
40
+ Integer(value.source)
41
+ end
42
+
43
+ def to_boolean(value)
44
+ s = value.source
45
+ s == "true" or s == "1"
46
+ end
47
+ end
48
+
49
+
50
+ end
@@ -0,0 +1,54 @@
1
+ # WSDL4R - WSDL message 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
+
14
+
15
+ class Message < Info
16
+ attr_reader :name # required
17
+ attr_reader :parts
18
+
19
+ def initialize
20
+ super
21
+ @name = nil
22
+ @parts = []
23
+ end
24
+
25
+ def targetnamespace
26
+ parent.targetnamespace
27
+ end
28
+
29
+ def parse_element(element)
30
+ case element
31
+ when PartName
32
+ o = Part.new
33
+ @parts << o
34
+ o
35
+ when DocumentationName
36
+ o = Documentation.new
37
+ o
38
+ else
39
+ nil
40
+ end
41
+ end
42
+
43
+ def parse_attr(attr, value)
44
+ case attr
45
+ when NameAttrName
46
+ @name = XSD::QName.new(parent.targetnamespace, value.source)
47
+ else
48
+ nil
49
+ end
50
+ end
51
+ end
52
+
53
+
54
+ end
@@ -0,0 +1,178 @@
1
+ # WSDL4R - WSDL 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
+
14
+
15
+ class Operation < Info
16
+ class NameInfo
17
+ attr_reader :op_name
18
+ attr_reader :optype_name
19
+ attr_reader :parts
20
+ def initialize(op_name, optype_name, parts)
21
+ @op_name = op_name
22
+ @optype_name = optype_name
23
+ @parts = parts
24
+ end
25
+ end
26
+
27
+ attr_reader :name # required
28
+ attr_reader :parameter_order # optional
29
+ attr_reader :input
30
+ attr_reader :output
31
+ attr_reader :fault
32
+ attr_reader :type # required
33
+
34
+ def initialize
35
+ super
36
+ @name = nil
37
+ @type = nil
38
+ @parameter_order = nil
39
+ @input = nil
40
+ @output = nil
41
+ @fault = []
42
+ end
43
+
44
+ def targetnamespace
45
+ parent.targetnamespace
46
+ end
47
+
48
+ def operationname
49
+ as_operationname(@name)
50
+ end
51
+
52
+ def input_info
53
+ if message = input_message
54
+ typename = message.name
55
+ else
56
+ typename = nil
57
+ end
58
+ NameInfo.new(operationname, typename, inputparts)
59
+ end
60
+
61
+ def output_info
62
+ if message = output_message
63
+ typename = message.name
64
+ else
65
+ typename = nil
66
+ end
67
+ NameInfo.new(operationname, typename, outputparts)
68
+ end
69
+
70
+ EMPTY = [].freeze
71
+ def inputparts
72
+ if message = input_message
73
+ sort_parts(message.parts)
74
+ else
75
+ EMPTY
76
+ end
77
+ end
78
+
79
+ def inputname
80
+ if input
81
+ as_operationname(input.name ? input.name.name : @name)
82
+ else
83
+ nil
84
+ end
85
+ end
86
+
87
+ def outputparts
88
+ if message = output_message
89
+ sort_parts(message.parts)
90
+ else
91
+ EMPTY
92
+ end
93
+ end
94
+
95
+ def outputname
96
+ if output
97
+ as_operationname(output.name ? output.name.name : @name + 'Response')
98
+ else
99
+ nil
100
+ end
101
+ end
102
+
103
+ def parse_element(element)
104
+ case element
105
+ when InputName
106
+ o = Param.new
107
+ @input = o
108
+ o
109
+ when OutputName
110
+ o = Param.new
111
+ @output = o
112
+ o
113
+ when FaultName
114
+ o = Param.new
115
+ @fault << o
116
+ o
117
+ when DocumentationName
118
+ o = Documentation.new
119
+ o
120
+ else
121
+ nil
122
+ end
123
+ end
124
+
125
+ def parse_attr(attr, value)
126
+ case attr
127
+ when NameAttrName
128
+ @name = value.source
129
+ when TypeAttrName
130
+ @type = value
131
+ when ParameterOrderAttrName
132
+ @parameter_order = value.source.split(/\s+/)
133
+ else
134
+ nil
135
+ end
136
+ end
137
+
138
+ private
139
+
140
+ def input_message
141
+ if input and message = input.find_message
142
+ message
143
+ else
144
+ nil
145
+ end
146
+ end
147
+
148
+ def output_message
149
+ if output and message = output.find_message
150
+ message
151
+ else
152
+ nil
153
+ end
154
+ end
155
+
156
+ def sort_parts(parts)
157
+ return parts.dup unless parameter_order
158
+ result = []
159
+ parameter_order.each do |orderitem|
160
+ if (ele = parts.find { |part| part.name == orderitem })
161
+ result << ele
162
+ end
163
+ end
164
+ if result.length == 0
165
+ return parts.dup
166
+ end
167
+ # result length can be shorter than parts's.
168
+ # return part must not be a part of the parameterOrder.
169
+ result
170
+ end
171
+
172
+ def as_operationname(name)
173
+ XSD::QName.new(targetnamespace, name)
174
+ end
175
+ end
176
+
177
+
178
+ end
@@ -0,0 +1,130 @@
1
+ # WSDL4R - WSDL bound 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
+
14
+
15
+ class OperationBinding < Info
16
+ attr_reader :name # required
17
+ attr_reader :input
18
+ attr_reader :output
19
+ attr_reader :fault
20
+ attr_reader :soapoperation
21
+
22
+ def initialize
23
+ super
24
+ @name = nil
25
+ @input = nil
26
+ @output = nil
27
+ @fault = []
28
+ @soapoperation = nil
29
+ end
30
+
31
+ def targetnamespace
32
+ parent.targetnamespace
33
+ end
34
+
35
+ def porttype
36
+ root.porttype(parent.type)
37
+ end
38
+
39
+ def find_operation
40
+ porttype.operations.each do |op|
41
+ next if op.name != @name
42
+ next if op.input and @input and op.input.name and @input.name and
43
+ op.input.name != @input.name
44
+ next if op.output and @output and op.output.name and @output.name and
45
+ op.output.name != @output.name
46
+ return op
47
+ end
48
+ raise RuntimeError.new("#{@name} not found")
49
+ end
50
+
51
+ def soapoperation_name
52
+ op_name = find_operation.operationname
53
+ if @input and @input.soapbody and @input.soapbody.namespace
54
+ op_name = XSD::QName.new(@input.soapbody.namespace, op_name.name)
55
+ end
56
+ op_name
57
+ end
58
+
59
+ def soapoperation_style
60
+ style = nil
61
+ if @soapoperation
62
+ style = @soapoperation.operation_style
63
+ elsif parent.soapbinding
64
+ style = parent.soapbinding.style
65
+ else
66
+ raise TypeError.new("operation style definition not found")
67
+ end
68
+ style || :document
69
+ end
70
+
71
+ def soapbody_use_input
72
+ soapbody_use(@input)
73
+ end
74
+
75
+ def soapbody_use_output
76
+ soapbody_use(@output)
77
+ end
78
+
79
+ def soapaction
80
+ if @soapoperation
81
+ @soapoperation.soapaction
82
+ else
83
+ nil
84
+ end
85
+ end
86
+
87
+ def parse_element(element)
88
+ case element
89
+ when InputName
90
+ o = Param.new
91
+ @input = o
92
+ o
93
+ when OutputName
94
+ o = Param.new
95
+ @output = o
96
+ o
97
+ when FaultName
98
+ o = Param.new
99
+ @fault << o
100
+ o
101
+ when SOAPOperationName
102
+ o = WSDL::SOAP::Operation.new
103
+ @soapoperation = o
104
+ o
105
+ when DocumentationName
106
+ o = Documentation.new
107
+ o
108
+ else
109
+ nil
110
+ end
111
+ end
112
+
113
+ def parse_attr(attr, value)
114
+ case attr
115
+ when NameAttrName
116
+ @name = value.source
117
+ else
118
+ nil
119
+ end
120
+ end
121
+
122
+ private
123
+
124
+ def soapbody_use(param)
125
+ param ? param.soapbody_use : nil
126
+ end
127
+ end
128
+
129
+
130
+ end