soap4r 1.5.6 → 1.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. data/bin/wsdl2ruby.rb +1 -1
  2. data/bin/xsd2ruby.rb +12 -4
  3. data/lib/soap/baseData.rb +3 -1
  4. data/lib/soap/encodingstyle/literalHandler.rb +3 -2
  5. data/lib/soap/encodingstyle/soapHandler.rb +7 -4
  6. data/lib/soap/filter.rb +4 -1
  7. data/lib/soap/filter/filterchain.rb +1 -1
  8. data/lib/soap/filter/streamhandler.rb +29 -0
  9. data/lib/soap/generator.rb +6 -0
  10. data/lib/soap/httpconfigloader.rb +21 -6
  11. data/lib/soap/mapping/encodedregistry.rb +2 -1
  12. data/lib/soap/mapping/literalregistry.rb +31 -16
  13. data/lib/soap/mapping/registry.rb +5 -1
  14. data/lib/soap/mapping/rubytypeFactory.rb +3 -0
  15. data/lib/soap/mapping/wsdlliteralregistry.rb +3 -3
  16. data/lib/soap/netHttpClient.rb +6 -0
  17. data/lib/soap/rpc/router.rb +26 -17
  18. data/lib/soap/soap.rb +4 -4
  19. data/lib/soap/streamHandler.rb +61 -26
  20. data/lib/wsdl/soap/classDefCreator.rb +4 -2
  21. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +7 -2
  22. data/lib/wsdl/soap/mappingRegistryCreator.rb +0 -2
  23. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +2 -0
  24. data/lib/wsdl/soap/methodDefCreator.rb +6 -3
  25. data/lib/wsdl/xmlSchema/element.rb +4 -0
  26. data/lib/wsdl/xmlSchema/importer.rb +21 -9
  27. data/lib/wsdl/xmlSchema/xsd2ruby.rb +56 -3
  28. data/lib/xsd/mapping.rb +30 -13
  29. data/test/interopR2/client.log +5 -0
  30. data/test/interopR2/client.rb +9 -3
  31. data/test/interopR2/server.rb +1 -0
  32. data/test/soap/asp.net/test_aspdotnet.rb +1 -1
  33. data/test/soap/auth/htdigest +2 -0
  34. data/test/soap/auth/htpasswd +2 -0
  35. data/test/soap/auth/test_basic.rb +116 -0
  36. data/test/soap/auth/test_digest.rb +117 -0
  37. data/test/soap/htpasswd +2 -0
  38. data/test/soap/ssl/README +1 -1
  39. data/test/soap/ssl/test_ssl.rb +9 -9
  40. data/test/soap/test_cookie.rb +112 -0
  41. data/test/soap/test_custom_ns.rb +63 -0
  42. data/test/soap/test_httpconfigloader.rb +20 -5
  43. data/test/soap/test_mapping.rb +62 -0
  44. data/test/soap/test_nil.rb +55 -0
  45. data/test/soap/test_no_indent.rb +1 -1
  46. data/test/soap/test_streamhandler.rb +26 -14
  47. data/test/wsdl/datetime/datetimeServant.rb +1 -0
  48. data/test/wsdl/datetime/test_datetime.rb +4 -0
  49. data/test/wsdl/document/array/double.wsdl +50 -0
  50. data/test/wsdl/document/array/test_array.rb +34 -7
  51. data/test/wsdl/qualified/test_qualified.rb +1 -1
  52. data/test/wsdl/qualified/test_unqualified.rb +2 -16
  53. data/test/wsdl/rpc/test_rpc.rb +3 -0
  54. data/test/wsdl/rpc/test_rpc_lit.rb +1 -1
  55. data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +2 -2
  56. data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +2 -2
  57. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +1 -1
  58. data/test/xsd/xsd2ruby/expected_mysample.rb +54 -0
  59. data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +11 -0
  60. data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +57 -0
  61. data/test/xsd/xsd2ruby/section.xsd +41 -0
  62. data/test/xsd/xsd2ruby/test_xsd2ruby.rb +90 -0
  63. metadata +31 -12
  64. data/lib/soap/mapping/encodedregistry.rb~ +0 -531
  65. data/lib/tags +0 -5144
  66. data/lib/xsd/classloader.rb +0 -26
  67. data/test/interopR2/result_client.NetRemoting.txt +0 -0
  68. data/test/wsdl/rpc/test-rpc-lit-qualified.wsdl +0 -74
  69. data/test/wsdl/rpc/test-rpc-lit12.wsdl +0 -455
@@ -5,7 +5,7 @@ require 'soap/wsdlDriver'
5
5
  require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
6
6
 
7
7
 
8
- if defined?(HTTPAccess2)
8
+ if defined?(HTTPClient)
9
9
 
10
10
  module WSDL
11
11
 
@@ -5,7 +5,7 @@ require 'soap/wsdlDriver'
5
5
  require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
6
6
 
7
7
 
8
- if defined?(HTTPAccess2)
8
+ if defined?(HTTPClient)
9
9
 
10
10
  module WSDL
11
11
 
@@ -87,20 +87,6 @@ class TestUnqualified < Test::Unit::TestCase
87
87
 
88
88
  LOGIN_REQUEST_QUALIFIED_UNTYPED =
89
89
  %q[<?xml version="1.0" encoding="utf-8" ?>
90
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
91
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
92
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
93
- <env:Body>
94
- <n1:login xmlns:n1="urn:lp">
95
- <username>NaHi</username>
96
- <password>passwd</password>
97
- <timezone>JST</timezone>
98
- </n1:login>
99
- </env:Body>
100
- </env:Envelope>]
101
-
102
- LOGIN_REQUEST_QUALIFIED_TYPED =
103
- %q[<?xml version="1.0" encoding="utf-8" ?>
104
90
  <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
105
91
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
106
92
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
@@ -138,7 +124,7 @@ class TestUnqualified < Test::Unit::TestCase
138
124
 
139
125
  @client.wiredump_dev = str = ''
140
126
  @client.login(Login.new('NaHi', 'passwd', 'JST'))
141
- assert_equal(LOGIN_REQUEST_QUALIFIED_TYPED, parse_requestxml(str))
127
+ assert_equal(LOGIN_REQUEST_QUALIFIED_UNTYPED, parse_requestxml(str))
142
128
  end
143
129
 
144
130
  def parse_requestxml(str)
@@ -43,6 +43,7 @@ class TestRPC < Test::Unit::TestCase
43
43
  end
44
44
 
45
45
  def echo_basetype(arg1, arg2)
46
+ return nil if arg1.nil? and arg2.nil?
46
47
  raise unless arg1.is_a?(Date)
47
48
  arg1
48
49
  end
@@ -158,6 +159,8 @@ class TestRPC < Test::Unit::TestCase
158
159
  assert_nil(ret.family_name)
159
160
  assert_nil(ret.given_name)
160
161
  assert_nil(ret.age)
162
+ #
163
+ assert_nil(@client.echo_basetype(nil, nil))
161
164
  end
162
165
 
163
166
  def test_basetype_stub
@@ -5,7 +5,7 @@ require 'soap/wsdlDriver'
5
5
  require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
6
6
 
7
7
 
8
- if defined?(HTTPAccess2) and defined?(OpenSSL)
8
+ if defined?(HTTPClient) and defined?(OpenSSL)
9
9
 
10
10
  module WSDL; module RPC
11
11
 
@@ -10,7 +10,7 @@ module Echo_versionMappingRegistry
10
10
  :schema_ns => "urn:example.com:simpletype-rpc-type",
11
11
  :schema_type => "version_struct",
12
12
  :schema_element => [
13
- ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]],
13
+ ["version", ["Version", XSD::QName.new(nil, "version")]],
14
14
  ["msg", ["SOAP::SOAPString", XSD::QName.new(nil, "msg")]]
15
15
  ]
16
16
  )
@@ -39,7 +39,7 @@ module Echo_versionMappingRegistry
39
39
  :schema_type => "version_struct",
40
40
  :schema_qualified => false,
41
41
  :schema_element => [
42
- ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]],
42
+ ["version", ["Version", XSD::QName.new(nil, "version")]],
43
43
  ["msg", ["SOAP::SOAPString", XSD::QName.new(nil, "msg")]]
44
44
  ]
45
45
  )
@@ -10,7 +10,7 @@ module Echo_versionMappingRegistry
10
10
  :schema_ns => "urn:example.com:simpletype-rpc-type",
11
11
  :schema_type => "version_struct",
12
12
  :schema_element => [
13
- ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]],
13
+ ["version", ["Version", XSD::QName.new(nil, "version")]],
14
14
  ["msg", ["SOAP::SOAPString", XSD::QName.new(nil, "msg")]]
15
15
  ]
16
16
  )
@@ -27,7 +27,7 @@ module Echo_versionMappingRegistry
27
27
  :schema_type => "version_struct",
28
28
  :schema_qualified => false,
29
29
  :schema_element => [
30
- ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]],
30
+ ["version", ["Version", XSD::QName.new(nil, "version")]],
31
31
  ["msg", ["SOAP::SOAPString", XSD::QName.new(nil, "msg")]]
32
32
  ]
33
33
  )
@@ -12,7 +12,7 @@ class TestSection < Test::Unit::TestCase
12
12
  RUBY = Config::CONFIG['RUBY_INSTALL_NAME']
13
13
 
14
14
  def setup
15
- system("cd #{DIR} && #{RUBY} #{pathname("../../../../../bin/xsd2ruby.rb")} --xsd #{pathname("section.xsd")} --force --quiet")
15
+ system("cd #{DIR} && #{RUBY} #{pathname("../../../../../bin/xsd2ruby.rb")} --xsd #{pathname("section.xsd")} --classdef --force --quiet")
16
16
  end
17
17
 
18
18
  def teardown
@@ -0,0 +1,54 @@
1
+ require 'xsd/qname'
2
+
3
+ module XSD::XSD2Ruby
4
+
5
+
6
+ # {urn:mysample}question
7
+ class Question
8
+ attr_accessor :something
9
+
10
+ def initialize(something = nil)
11
+ @something = something
12
+ end
13
+ end
14
+
15
+ # {urn:mysample}section
16
+ class Section
17
+ attr_accessor :sectionID
18
+ attr_accessor :name
19
+ attr_accessor :description
20
+ attr_accessor :index
21
+ attr_accessor :firstQuestion
22
+
23
+ def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
24
+ @sectionID = sectionID
25
+ @name = name
26
+ @description = description
27
+ @index = index
28
+ @firstQuestion = firstQuestion
29
+ end
30
+ end
31
+
32
+ # {urn:mysample}sectionArray
33
+ class SectionArray < ::Array
34
+ end
35
+
36
+ # {urn:mysample}sectionElement
37
+ class SectionElement
38
+ attr_accessor :sectionID
39
+ attr_accessor :name
40
+ attr_accessor :description
41
+ attr_accessor :index
42
+ attr_accessor :firstQuestion
43
+
44
+ def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
45
+ @sectionID = sectionID
46
+ @name = name
47
+ @description = description
48
+ @index = index
49
+ @firstQuestion = firstQuestion
50
+ end
51
+ end
52
+
53
+
54
+ end
@@ -0,0 +1,11 @@
1
+ require 'mysample_mapping_registry.rb'
2
+
3
+ module XSD; module XSD2Ruby
4
+
5
+ class MysampleMapper < XSD::Mapping::Mapper
6
+ def initialize
7
+ super(MysampleMappingRegistry::Registry)
8
+ end
9
+ end
10
+
11
+ end; end
@@ -0,0 +1,57 @@
1
+ require 'xsd/mapping'
2
+ require 'mysample.rb'
3
+
4
+ module XSD; module XSD2Ruby
5
+
6
+ module MysampleMappingRegistry
7
+ Registry = ::SOAP::Mapping::LiteralRegistry.new
8
+
9
+ Registry.register(
10
+ :class => XSD::XSD2Ruby::Question,
11
+ :schema_ns => "urn:mysample",
12
+ :schema_type => "question",
13
+ :schema_qualified => false,
14
+ :schema_element => [
15
+ ["something", ["SOAP::SOAPString", XSD::QName.new(nil, "something")]]
16
+ ]
17
+ )
18
+
19
+ Registry.register(
20
+ :class => XSD::XSD2Ruby::Section,
21
+ :schema_ns => "urn:mysample",
22
+ :schema_type => "section",
23
+ :schema_qualified => false,
24
+ :schema_element => [
25
+ ["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
26
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
27
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
28
+ ["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
29
+ ["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
30
+ ]
31
+ )
32
+
33
+ Registry.register(
34
+ :class => XSD::XSD2Ruby::SectionArray,
35
+ :schema_ns => "urn:mysample",
36
+ :schema_type => "sectionArray",
37
+ :schema_element => [
38
+ ["element", ["XSD::XSD2Ruby::Section[]", XSD::QName.new(nil, "element")], [1, nil]]
39
+ ]
40
+ )
41
+
42
+ Registry.register(
43
+ :class => XSD::XSD2Ruby::SectionElement,
44
+ :schema_ns => "urn:mysample",
45
+ :schema_name => "sectionElement",
46
+ :schema_qualified => true,
47
+ :schema_element => [
48
+ ["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
49
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
50
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
51
+ ["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
52
+ ["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
53
+ ]
54
+ )
55
+ end
56
+
57
+ end; end
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xsd:schema targetNamespace="urn:mysample"
3
+ xmlns:tns="urn:mysample"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5
+ xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/"
6
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
7
+
8
+ <xsd:complexType name="question">
9
+ <xsd:sequence>
10
+ <xsd:element name="something" type="xsd:string" />
11
+ </xsd:sequence>
12
+ </xsd:complexType>
13
+
14
+ <xsd:complexType name="section">
15
+ <xsd:sequence>
16
+ <xsd:element name="sectionID" type="xsd:int" />
17
+ <xsd:element name="name" type="xsd:string" />
18
+ <xsd:element name="description" type="xsd:string" />
19
+ <xsd:element name="index" type="xsd:int" />
20
+ <xsd:element name="firstQuestion" type="tns:question" />
21
+ </xsd:sequence>
22
+ </xsd:complexType>
23
+
24
+ <xsd:complexType name="sectionArray">
25
+ <xsd:sequence>
26
+ <xsd:element name="element" type="tns:section" maxOccurs="unbounded"/>
27
+ </xsd:sequence>
28
+ </xsd:complexType>
29
+
30
+ <xsd:element name="sectionElement">
31
+ <xsd:complexType>
32
+ <xsd:sequence>
33
+ <xsd:element name="sectionID" type="xsd:int" />
34
+ <xsd:element name="name" type="xsd:string" />
35
+ <xsd:element name="description" type="xsd:string" />
36
+ <xsd:element name="index" type="xsd:int" />
37
+ <xsd:element name="firstQuestion" type="tns:question" />
38
+ </xsd:sequence>
39
+ </xsd:complexType>
40
+ </xsd:element>
41
+ </xsd:schema>
@@ -0,0 +1,90 @@
1
+ require 'test/unit'
2
+ require 'wsdl/xmlSchema/xsd2ruby'
3
+ require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
4
+
5
+
6
+ module XSD; module XSD2Ruby
7
+
8
+
9
+ class TestXSD2Ruby < Test::Unit::TestCase
10
+ DIR = File.dirname(File.expand_path(__FILE__))
11
+
12
+ def setup
13
+ Dir.chdir(DIR) do
14
+ gen = WSDL::XMLSchema::XSD2Ruby.new
15
+ gen.location = pathname("section.xsd")
16
+ gen.basedir = DIR
17
+ gen.logger.level = Logger::FATAL
18
+ gen.opt['module_path'] = "XSD::XSD2Ruby"
19
+ gen.opt['classdef'] = nil
20
+ gen.opt['mapping_registry'] = nil
21
+ gen.opt['mapper'] = nil
22
+ gen.opt['force'] = true
23
+ gen.run
24
+ TestUtil.require(DIR, 'mysample.rb', 'mysample_mapping_registry.rb', 'mysample_mapper.rb')
25
+ end
26
+ end
27
+
28
+ def teardown
29
+ unless $DEBUG
30
+ File.unlink(pathname("mysample.rb"))
31
+ File.unlink(pathname("mysample_mapping_registry.rb"))
32
+ File.unlink(pathname("mysample_mapper.rb"))
33
+ end
34
+ # leave generated file for debug.
35
+ end
36
+
37
+ def test_generate
38
+ compare("expected_mysample.rb", "mysample.rb")
39
+ compare("expected_mysample_mapping_registry.rb", "mysample_mapping_registry.rb")
40
+ compare("expected_mysample_mapper.rb", "mysample_mapper.rb")
41
+ end
42
+
43
+ def test_mapper
44
+ mapper = XSD::XSD2Ruby::MysampleMapper.new
45
+ # complexType
46
+ arg = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
47
+ obj = mapper.xml2obj(mapper.obj2xml(arg))
48
+ assert_section_equal(arg, obj)
49
+ # element
50
+ arg = XSD::XSD2Ruby::SectionElement.new(10001, 'name', 'description', 1, Question.new("hello world"))
51
+ obj = mapper.xml2obj(mapper.obj2xml(arg))
52
+ assert_section_equal(arg, obj)
53
+ # array
54
+ ele = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
55
+ arg = XSD::XSD2Ruby::SectionArray[ele, ele, ele]
56
+ obj = mapper.xml2obj(mapper.obj2xml(arg))
57
+ assert_equal(arg.class, obj.class)
58
+ assert_equal(arg.size, obj.size)
59
+ 0.upto(arg.size - 1) do |idx|
60
+ assert_section_equal(arg[idx], obj[idx])
61
+ end
62
+ end
63
+
64
+ private
65
+
66
+ def assert_section_equal(arg, obj)
67
+ assert_equal(arg.class, obj.class)
68
+ assert_equal(arg.sectionID, obj.sectionID)
69
+ assert_equal(arg.name, obj.name)
70
+ assert_equal(arg.description, obj.description)
71
+ assert_equal(arg.index, obj.index)
72
+ assert_equal(arg.firstQuestion.class, obj.firstQuestion.class)
73
+ assert_equal(arg.firstQuestion.something, obj.firstQuestion.something)
74
+ end
75
+
76
+ def pathname(filename)
77
+ File.join(DIR, filename)
78
+ end
79
+
80
+ def compare(expected, actual)
81
+ TestUtil.filecompare(pathname(expected), pathname(actual))
82
+ end
83
+
84
+ def loadfile(file)
85
+ File.open(pathname(file)) { |f| f.read }
86
+ end
87
+ end
88
+
89
+
90
+ end; end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: soap4r
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.5.6
7
- date: 2007-06-14 00:00:00 +09:00
6
+ version: 1.5.7
7
+ date: 2007-07-16 00:00:00 +09:00
8
8
  summary: An implementation of SOAP 1.1 for Ruby.
9
9
  require_paths:
10
10
  - lib
@@ -31,7 +31,6 @@ authors:
31
31
  files:
32
32
  - bin/wsdl2ruby.rb
33
33
  - bin/xsd2ruby.rb
34
- - lib/tags
35
34
  - lib/xsd
36
35
  - lib/xsd/datatypes.rb
37
36
  - lib/xsd/namedelements.rb
@@ -51,7 +50,6 @@ files:
51
50
  - lib/xsd/xmlparser/parser.rb
52
51
  - lib/xsd/xmlparser/xmlparser.rb
53
52
  - lib/xsd/codegen.rb
54
- - lib/xsd/classloader.rb
55
53
  - lib/xsd/xmlparser.rb
56
54
  - lib/xsd/ns.rb
57
55
  - lib/xsd/datatypes1999.rb
@@ -135,6 +133,7 @@ files:
135
133
  - lib/soap/mappingRegistry.rb
136
134
  - lib/soap/filter
137
135
  - lib/soap/filter/filterchain.rb
136
+ - lib/soap/filter/streamhandler.rb
138
137
  - lib/soap/filter/handler.rb
139
138
  - lib/soap/encodingstyle
140
139
  - lib/soap/encodingstyle/literalHandler.rb
@@ -162,7 +161,6 @@ files:
162
161
  - lib/soap/mapping/rubytypeFactory.rb
163
162
  - lib/soap/mapping/encodedregistry.rb
164
163
  - lib/soap/mapping/wsdlencodedregistry.rb
165
- - lib/soap/mapping/encodedregistry.rb~
166
164
  - lib/soap/mapping/factory.rb
167
165
  - lib/soap/mapping/wsdlliteralregistry.rb
168
166
  - lib/soap/mapping/schemadefinition.rb
@@ -208,6 +206,12 @@ files:
208
206
  - test/xsd
209
207
  - test/xsd/xmlschema.xml
210
208
  - test/xsd/test_xsd.rb
209
+ - test/xsd/xsd2ruby
210
+ - test/xsd/xsd2ruby/expected_mysample.rb
211
+ - test/xsd/xsd2ruby/section.xsd
212
+ - test/xsd/xsd2ruby/expected_mysample_mapper.rb
213
+ - test/xsd/xsd2ruby/test_xsd2ruby.rb
214
+ - test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
211
215
  - test/xsd/test_noencoding.rb
212
216
  - test/xsd/codegen
213
217
  - test/xsd/codegen/test_classdef.rb
@@ -233,11 +237,9 @@ files:
233
237
  - test/wsdl/abstract/abstract.wsdl
234
238
  - test/wsdl/rpc
235
239
  - test/wsdl/rpc/test_rpc.rb
236
- - test/wsdl/rpc/test-rpc-lit-qualified.wsdl
237
240
  - test/wsdl/rpc/test_rpc_lit.rb
238
241
  - test/wsdl/rpc/test-rpc-lit.wsdl
239
242
  - test/wsdl/rpc/rpc.wsdl
240
- - test/wsdl/rpc/test-rpc-lit12.wsdl
241
243
  - test/wsdl/test_multiplefault.rb
242
244
  - test/wsdl/marshal
243
245
  - test/wsdl/marshal/person.wsdl
@@ -346,6 +348,7 @@ files:
346
348
  - test/interopR2
347
349
  - test/interopR2/clientBEAWebLogic.rb
348
350
  - test/interopR2/client4S4C2.rb
351
+ - test/interopR2/client.log
349
352
  - test/interopR2/rwikiInteropService.rb
350
353
  - test/interopR2/InteropTest.wsdl
351
354
  - test/interopR2/clientJSOAP.rb
@@ -374,7 +377,6 @@ files:
374
377
  - test/interopR2/clientSQLData.rb
375
378
  - test/interopR2/groupc.wsdl
376
379
  - test/interopR2/clientJAX-RPC.rb
377
- - test/interopR2/result_client.NetRemoting.txt
378
380
  - test/interopR2/iSimonReg.rb
379
381
  - test/interopR2/clientWhiteMesa.rb
380
382
  - test/interopR2/clienteSOAP.rb
@@ -461,8 +463,10 @@ files:
461
463
  - test/soap/test_envelopenamespace.rb
462
464
  - test/soap/struct
463
465
  - test/soap/struct/test_struct.rb
466
+ - test/soap/test_nil.rb
464
467
  - test/soap/case
465
468
  - test/soap/case/test_mapping.rb
469
+ - test/soap/test_cookie.rb
466
470
  - test/soap/test_property.rb
467
471
  - test/soap/test_streamhandler.rb
468
472
  - test/soap/header
@@ -478,19 +482,26 @@ files:
478
482
  - test/soap/styleuse/client.rb
479
483
  - test/soap/test_styleuse.rb
480
484
  - test/soap/test_no_indent.rb
485
+ - test/soap/test_custom_ns.rb
486
+ - test/soap/htpasswd
481
487
  - test/soap/literalArrayMapping
482
488
  - test/soap/literalArrayMapping/amazonEcDriver.rb
483
489
  - test/soap/literalArrayMapping/amazonresponse.xml
484
490
  - test/soap/literalArrayMapping/amazonEc.rb
485
491
  - test/soap/literalArrayMapping/test_definedarray.rb
492
+ - test/soap/auth
493
+ - test/soap/auth/htdigest
494
+ - test/soap/auth/test_basic.rb
495
+ - test/soap/auth/htpasswd
496
+ - test/soap/auth/test_digest.rb
486
497
  - test/soap/swa
487
498
  - test/soap/swa/test_file.rb
488
499
  - test/soap/fault
489
500
  - test/soap/fault/test_customfault.rb
490
501
  - test/soap/test_mapping.rb
491
502
  - test/16runner.rb
492
- test_files: []
493
-
503
+ test_files:
504
+ - test/runner.rb
494
505
  rdoc_options: []
495
506
 
496
507
  extra_rdoc_files: []
@@ -502,5 +513,13 @@ extensions: []
502
513
 
503
514
  requirements: []
504
515
 
505
- dependencies: []
506
-
516
+ dependencies:
517
+ - !ruby/object:Gem::Dependency
518
+ name: httpclient
519
+ version_requirement:
520
+ version_requirements: !ruby/object:Gem::Version::Requirement
521
+ requirements:
522
+ - - ">="
523
+ - !ruby/object:Gem::Version
524
+ version: 2.1.0
525
+ version: