savon 2.3.0 → 2.3.1

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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 2.3.1 (2013-12-05)
2
+
3
+ * Removed dependency on Nokogiri <= 1.4 -- This improves support for ruby 1.9.3 and 2.0.0 and officially begins the end of support for ruby 1.8.7
4
+ See [issue #487](https://github.com/savonrb/savon/issues/487)
5
+
1
6
  ### 2.3.0 (2013-07-27)
2
7
 
3
8
  Combined release ticket: [#481](https://github.com/savonrb/savon/issues/481)
@@ -240,10 +245,10 @@ Combined release ticket: [#481](https://github.com/savonrb/savon/issues/481)
240
245
  in the document:
241
246
 
242
247
  ``` xml
243
- <env:Envelope
244
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
245
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
246
- xmlns:tns="http://v1_0.ws.auth.order.example.com/"
248
+ <env:Envelope
249
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
250
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
251
+ xmlns:tns="http://v1_0.ws.auth.order.example.com/"
247
252
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
248
253
 
249
254
  <tns:authenticate>
@@ -261,7 +266,7 @@ Combined release ticket: [#481](https://github.com/savonrb/savon/issues/481)
261
266
  The global config is cloned when a new client is initialized and gets used instead of the global one.
262
267
  In addition, for `Savon::Model` classes, the config is cloned per class.
263
268
 
264
- Closes [#84](https://github.com/savonrb/savon/issues/84) by allowing one logger per client and
269
+ Closes [#84](https://github.com/savonrb/savon/issues/84) by allowing one logger per client and
265
270
  [#270](https://github.com/savonrb/savon/issues/270) by allowing to specify error handling per client.
266
271
 
267
272
  * Feature: Added an option to pretty print XML in log messages. Closes [#256](https://github.com/savonrb/savon/issues/256)
@@ -951,7 +956,7 @@ Pay attention to the following list and read the updated Wiki: http://wiki.githu
951
956
 
952
957
  ```
953
958
  Benchmarks (1000 SOAP calls):
954
-
959
+
955
960
  user system total real
956
961
  0.6.4 72.180000 8.280000 80.460000 (750.799011)
957
962
  0.6.3 192.900000 19.630000 212.530000 (914.031865)
@@ -965,7 +970,7 @@ Pay attention to the following list and read the updated Wiki: http://wiki.githu
965
970
 
966
971
  ```
967
972
  Benchmarks (1000 SOAP calls):
968
-
973
+
969
974
  user system total real
970
975
  WSDL 192.900000 19.630000 212.530000 (914.031865)
971
976
  disabled WSDL 5.680000 1.340000 7.020000 (298.265318)
@@ -975,7 +980,7 @@ Pay attention to the following list and read the updated Wiki: http://wiki.githu
975
980
 
976
981
  ```
977
982
  Benchmarks (1000 SOAP calls):
978
-
983
+
979
984
  user system total real
980
985
  0.6.3 192.900000 19.630000 212.530000 (914.031865)
981
986
  0.6.2 574.720000 78.380000 653.100000 (1387.778539)
data/README.md CHANGED
@@ -22,10 +22,25 @@ $ gem install savon
22
22
  or add it to your Gemfile like this:
23
23
 
24
24
  ```
25
- gem 'savon', '~> 2.2.0'
25
+ gem 'savon', '~> 2.3.0'
26
26
  ```
27
27
 
28
28
 
29
+ ## Maintainer needed
30
+
31
+ So I've been maintaining Savon and its dependant projects for the last four years and it's become quite
32
+ apparent now with my schedule I do not have the time to keep this project going single-handed.
33
+
34
+ Luckily there are numerous people helping out from time to time, but maintaining this project is pretty
35
+ much a full-time job and it keeps me from working on the next major version.
36
+
37
+ I'll be able to contribute on a small scale going forward, and will do my best in the meantime to catch
38
+ up with everything I am behind on.
39
+
40
+ If you are interested, please email me at [me at rubiii dot com].
41
+ I'll do everything I can to help you get started.
42
+
43
+
29
44
  ## Usage example
30
45
 
31
46
  ``` ruby
data/lib/savon/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Savon
2
2
 
3
- VERSION = "2.3.0"
3
+ VERSION = "2.3.1"
4
4
 
5
5
  end
data/savon.gemspec CHANGED
@@ -23,7 +23,13 @@ Gem::Specification.new do |s|
23
23
  s.add_dependency "gyoku", "~> 1.1.0"
24
24
 
25
25
  s.add_dependency "builder", ">= 2.1.2"
26
- s.add_dependency "nokogiri", ">= 1.4.0", "< 1.6"
26
+
27
+ if RUBY_VERSION[0,3] == "1.8"
28
+ # nokogiri 1.6 dropped support for ruby 1.8
29
+ s.add_dependency "nokogiri", ">= 1.4.0", "< 1.6"
30
+ else
31
+ s.add_dependency "nokogiri", ">= 1.4.0"
32
+ end
27
33
 
28
34
  s.add_development_dependency "rack"
29
35
  s.add_development_dependency "puma", "2.0.0.b4"
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'rpc/encoded binding test' do
4
+
5
+ it 'should should work with WSDLs that have rpc/encoded SOAP binding' do
6
+ client = Savon.client(
7
+ :wsdl => "http://www.boyzoid.com/comp/randomQuote.cfc?wsdl",
8
+ :open_timeout => 10,
9
+ :read_timeout => 10,
10
+ :log => false
11
+ )
12
+
13
+ begin
14
+ client.call(:get_quote)
15
+ rescue Savon::SOAPFault => e
16
+ $stderr.puts e.to_hash.inspect
17
+ f_c = e.to_hash[:fault][:faultstring]
18
+ f_c.should_not == 'No such operation \'getQuoteRequest\''
19
+ f_c.should == 'soapenv:Server.userException'
20
+ pending e
21
+ end
22
+ end
23
+ end
metadata CHANGED
@@ -1,18 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: savon
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Daniel Harrington
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-07-27 00:00:00.000000000 Z
12
+ date: 2013-12-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: nori
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
19
  - - ~>
18
20
  - !ruby/object:Gem::Version
@@ -20,6 +22,7 @@ dependencies:
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
27
  - - ~>
25
28
  - !ruby/object:Gem::Version
@@ -27,6 +30,7 @@ dependencies:
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: httpi
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
35
  - - ~>
32
36
  - !ruby/object:Gem::Version
@@ -34,6 +38,7 @@ dependencies:
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
43
  - - ~>
39
44
  - !ruby/object:Gem::Version
@@ -41,6 +46,7 @@ dependencies:
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: wasabi
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
51
  - - ~>
46
52
  - !ruby/object:Gem::Version
@@ -48,6 +54,7 @@ dependencies:
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
59
  - - ~>
53
60
  - !ruby/object:Gem::Version
@@ -55,6 +62,7 @@ dependencies:
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: akami
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
67
  - - ~>
60
68
  - !ruby/object:Gem::Version
@@ -62,6 +70,7 @@ dependencies:
62
70
  type: :runtime
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
75
  - - ~>
67
76
  - !ruby/object:Gem::Version
@@ -69,6 +78,7 @@ dependencies:
69
78
  - !ruby/object:Gem::Dependency
70
79
  name: gyoku
71
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
72
82
  requirements:
73
83
  - - ~>
74
84
  - !ruby/object:Gem::Version
@@ -76,6 +86,7 @@ dependencies:
76
86
  type: :runtime
77
87
  prerelease: false
78
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
79
90
  requirements:
80
91
  - - ~>
81
92
  - !ruby/object:Gem::Version
@@ -83,54 +94,55 @@ dependencies:
83
94
  - !ruby/object:Gem::Dependency
84
95
  name: builder
85
96
  requirement: !ruby/object:Gem::Requirement
97
+ none: false
86
98
  requirements:
87
- - - '>='
99
+ - - ! '>='
88
100
  - !ruby/object:Gem::Version
89
101
  version: 2.1.2
90
102
  type: :runtime
91
103
  prerelease: false
92
104
  version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
93
106
  requirements:
94
- - - '>='
107
+ - - ! '>='
95
108
  - !ruby/object:Gem::Version
96
109
  version: 2.1.2
97
110
  - !ruby/object:Gem::Dependency
98
111
  name: nokogiri
99
112
  requirement: !ruby/object:Gem::Requirement
113
+ none: false
100
114
  requirements:
101
- - - '>='
115
+ - - ! '>='
102
116
  - !ruby/object:Gem::Version
103
117
  version: 1.4.0
104
- - - <
105
- - !ruby/object:Gem::Version
106
- version: '1.6'
107
118
  type: :runtime
108
119
  prerelease: false
109
120
  version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
110
122
  requirements:
111
- - - '>='
123
+ - - ! '>='
112
124
  - !ruby/object:Gem::Version
113
125
  version: 1.4.0
114
- - - <
115
- - !ruby/object:Gem::Version
116
- version: '1.6'
117
126
  - !ruby/object:Gem::Dependency
118
127
  name: rack
119
128
  requirement: !ruby/object:Gem::Requirement
129
+ none: false
120
130
  requirements:
121
- - - '>='
131
+ - - ! '>='
122
132
  - !ruby/object:Gem::Version
123
133
  version: '0'
124
134
  type: :development
125
135
  prerelease: false
126
136
  version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
127
138
  requirements:
128
- - - '>='
139
+ - - ! '>='
129
140
  - !ruby/object:Gem::Version
130
141
  version: '0'
131
142
  - !ruby/object:Gem::Dependency
132
143
  name: puma
133
144
  requirement: !ruby/object:Gem::Requirement
145
+ none: false
134
146
  requirements:
135
147
  - - '='
136
148
  - !ruby/object:Gem::Version
@@ -138,6 +150,7 @@ dependencies:
138
150
  type: :development
139
151
  prerelease: false
140
152
  version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
141
154
  requirements:
142
155
  - - '='
143
156
  - !ruby/object:Gem::Version
@@ -145,6 +158,7 @@ dependencies:
145
158
  - !ruby/object:Gem::Dependency
146
159
  name: rake
147
160
  requirement: !ruby/object:Gem::Requirement
161
+ none: false
148
162
  requirements:
149
163
  - - ~>
150
164
  - !ruby/object:Gem::Version
@@ -152,6 +166,7 @@ dependencies:
152
166
  type: :development
153
167
  prerelease: false
154
168
  version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
155
170
  requirements:
156
171
  - - ~>
157
172
  - !ruby/object:Gem::Version
@@ -159,6 +174,7 @@ dependencies:
159
174
  - !ruby/object:Gem::Dependency
160
175
  name: rspec
161
176
  requirement: !ruby/object:Gem::Requirement
177
+ none: false
162
178
  requirements:
163
179
  - - ~>
164
180
  - !ruby/object:Gem::Version
@@ -166,6 +182,7 @@ dependencies:
166
182
  type: :development
167
183
  prerelease: false
168
184
  version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
169
186
  requirements:
170
187
  - - ~>
171
188
  - !ruby/object:Gem::Version
@@ -173,6 +190,7 @@ dependencies:
173
190
  - !ruby/object:Gem::Dependency
174
191
  name: mocha
175
192
  requirement: !ruby/object:Gem::Requirement
193
+ none: false
176
194
  requirements:
177
195
  - - ~>
178
196
  - !ruby/object:Gem::Version
@@ -180,6 +198,7 @@ dependencies:
180
198
  type: :development
181
199
  prerelease: false
182
200
  version_requirements: !ruby/object:Gem::Requirement
201
+ none: false
183
202
  requirements:
184
203
  - - ~>
185
204
  - !ruby/object:Gem::Version
@@ -187,6 +206,7 @@ dependencies:
187
206
  - !ruby/object:Gem::Dependency
188
207
  name: json
189
208
  requirement: !ruby/object:Gem::Requirement
209
+ none: false
190
210
  requirements:
191
211
  - - ~>
192
212
  - !ruby/object:Gem::Version
@@ -194,6 +214,7 @@ dependencies:
194
214
  type: :development
195
215
  prerelease: false
196
216
  version_requirements: !ruby/object:Gem::Requirement
217
+ none: false
197
218
  requirements:
198
219
  - - ~>
199
220
  - !ruby/object:Gem::Version
@@ -261,6 +282,7 @@ files:
261
282
  - spec/fixtures/wsdl/vies.xml
262
283
  - spec/fixtures/wsdl/wasmuth.xml
263
284
  - spec/integration/email_example_spec.rb
285
+ - spec/integration/random_quote_spec.rb
264
286
  - spec/integration/ratp_example_spec.rb
265
287
  - spec/integration/stockquote_example_spec.rb
266
288
  - spec/integration/support/application.rb
@@ -287,29 +309,29 @@ files:
287
309
  - spec/support/fixture.rb
288
310
  - spec/support/integration.rb
289
311
  - spec/support/stdout.rb
290
- - tags
291
312
  homepage: http://savonrb.com
292
313
  licenses:
293
314
  - MIT
294
- metadata: {}
295
315
  post_install_message:
296
316
  rdoc_options: []
297
317
  require_paths:
298
318
  - lib
299
319
  required_ruby_version: !ruby/object:Gem::Requirement
320
+ none: false
300
321
  requirements:
301
- - - '>='
322
+ - - ! '>='
302
323
  - !ruby/object:Gem::Version
303
324
  version: '0'
304
325
  required_rubygems_version: !ruby/object:Gem::Requirement
326
+ none: false
305
327
  requirements:
306
- - - '>='
328
+ - - ! '>='
307
329
  - !ruby/object:Gem::Version
308
330
  version: '0'
309
331
  requirements: []
310
332
  rubyforge_project: savon
311
- rubygems_version: 2.0.6
333
+ rubygems_version: 1.8.23
312
334
  signing_key:
313
- specification_version: 4
335
+ specification_version: 3
314
336
  summary: Heavy metal SOAP client
315
337
  test_files: []
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: cae0817f78856aab3d2755e35f8d8eae26f13ab1
4
- data.tar.gz: f072a4794247d9bbd34e1c20884c398524b34ef3
5
- SHA512:
6
- metadata.gz: 60c8697a66a84e2405318c27900207f14734231baa672ca609e77c8425e9ed6e6a897df1e1e62759775acfb14d66194bb08c32210552b0d19cb570c9ff927d70
7
- data.tar.gz: 1467af7b259d9a6d67b724eabe9cd9905b37580b923c552ce0b7a76251e6a3e960379dab11ba8e3f2555502aebf56b7f8728a1f331c51975b5a905212da1ed1c
data/tags DELETED
@@ -1,299 +0,0 @@
1
- !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
- !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
- !_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
4
- !_TAG_PROGRAM_NAME Exuberant Ctags //
5
- !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
- !_TAG_PROGRAM_VERSION 5.8 //
7
- << lib/savon/wsdl/document_collection.rb /^ def <<(document)$/;" f class:Savon.WSDL.DocumentCollection
8
- << lib/savon/xs/schema_collection.rb /^ def <<(schema)$/;" f class:Savon.XS.SchemaCollection
9
- All lib/savon/xs/types.rb /^ class All < BaseType; end$/;" c class:Savon.XS
10
- Annotation lib/savon/xs/types.rb /^ class Annotation < BaseType$/;" c class:Savon.XS
11
- AnyType lib/savon/xs/types.rb /^ class AnyType < BaseType; end$/;" c class:Savon.XS
12
- Attribute lib/savon/attribute.rb /^ class Attribute$/;" c class:Savon
13
- Attribute lib/savon/xs/types.rb /^ class Attribute < BaseType$/;" c class:Savon.XS
14
- AttributeGroup lib/savon/xs/types.rb /^ class AttributeGroup < BaseType$/;" c class:Savon.XS
15
- BaseType lib/savon/xs/types.rb /^ class BaseType$/;" c class:Savon.XS
16
- Binding lib/savon/wsdl/binding.rb /^ class Binding$/;" c class:Savon.WSDL
17
- BindingOperation lib/savon/wsdl/binding_operation.rb /^ class BindingOperation$/;" c class:Savon.WSDL
18
- Choice lib/savon/xs/types.rb /^ class Choice < BaseType; end$/;" c class:Savon.XS
19
- ComplexContent lib/savon/xs/types.rb /^ class ComplexContent < BaseType; end$/;" c class:Savon.XS
20
- ComplexType lib/savon/xs/types.rb /^ class ComplexType < PrimaryType$/;" c class:Savon.XS
21
- Document lib/savon/wsdl/document.rb /^ class Document$/;" c class:Savon.WSDL
22
- DocumentCollection lib/savon/wsdl/document_collection.rb /^ class DocumentCollection$/;" c class:Savon.WSDL
23
- Element lib/savon/element.rb /^ class Element$/;" c class:Savon
24
- Element lib/savon/xs/types.rb /^ class Element < PrimaryType$/;" c class:Savon.XS
25
- ElementBuilder lib/savon/element_builder.rb /^ class ElementBuilder$/;" c class:Savon
26
- Enumeration lib/savon/xs/types.rb /^ class Enumeration < BaseType; end$/;" c class:Savon.XS
27
- Envelope lib/savon/envelope.rb /^ class Envelope$/;" c class:Savon
28
- ExampleMessage lib/savon/example_message.rb /^ class ExampleMessage$/;" c class:Savon
29
- Extension lib/savon/xs/types.rb /^ class Extension < BaseType$/;" c class:Savon.XS
30
- Fixture spec/support/fixture.rb /^ class Fixture$/;" c class:SpecSupport
31
- HTTPClient lib/savon/httpclient.rb /^ class HTTPClient$/;" c class:Savon
32
- HTTPMock spec/support/http_mock.rb /^ class HTTPMock$/;" c class:SpecSupport
33
- Importer lib/savon/importer.rb /^ class Importer$/;" c class:Savon
34
- Input lib/savon/wsdl/input_output.rb /^ class Input$/;" c class:Savon.WSDL
35
- Message lib/savon/message.rb /^ class Message$/;" c class:Savon
36
- Message lib/savon/wsdl/message.rb /^ class Message$/;" c class:Savon.WSDL
37
- Operation lib/savon/operation.rb /^ class Operation$/;" c class:Savon
38
- Operation lib/savon/wsdl/operation.rb /^ class Operation$/;" c class:Savon.WSDL
39
- Output lib/savon/wsdl/input_output.rb /^ class Output < Input$/;" c class:Savon.WSDL
40
- Port lib/savon/wsdl/port.rb /^ class Port$/;" c class:Savon.WSDL
41
- PortType lib/savon/wsdl/port_type.rb /^ class PortType$/;" c class:Savon.WSDL
42
- PortTypeOperation lib/savon/wsdl/port_type_operation.rb /^ class PortTypeOperation$/;" c class:Savon.WSDL
43
- PrimaryType lib/savon/xs/types.rb /^ class PrimaryType < BaseType$/;" c class:Savon.XS
44
- Resolver lib/savon/resolver.rb /^ class Resolver$/;" c class:Savon
45
- Response lib/savon/response.rb /^ class Response$/;" c class:Savon
46
- Restriction lib/savon/xs/types.rb /^ class Restriction < BaseType; end$/;" c class:Savon.XS
47
- Savon lib/savon.rb /^class Savon$/;" c
48
- Savon lib/savon/attribute.rb /^class Savon$/;" c
49
- Savon lib/savon/element.rb /^class Savon$/;" c
50
- Savon lib/savon/element_builder.rb /^class Savon$/;" c
51
- Savon lib/savon/envelope.rb /^class Savon$/;" c
52
- Savon lib/savon/errors.rb /^class Savon$/;" c
53
- Savon lib/savon/example_message.rb /^class Savon$/;" c
54
- Savon lib/savon/httpclient.rb /^class Savon$/;" c
55
- Savon lib/savon/importer.rb /^class Savon$/;" c
56
- Savon lib/savon/message.rb /^class Savon$/;" c
57
- Savon lib/savon/operation.rb /^class Savon$/;" c
58
- Savon lib/savon/resolver.rb /^class Savon$/;" c
59
- Savon lib/savon/response.rb /^class Savon$/;" c
60
- Savon lib/savon/version.rb /^class Savon$/;" c
61
- Savon lib/savon/wsdl.rb /^class Savon$/;" c
62
- Savon lib/savon/wsdl/binding.rb /^class Savon$/;" c
63
- Savon lib/savon/wsdl/binding_operation.rb /^class Savon$/;" c
64
- Savon lib/savon/wsdl/document.rb /^class Savon$/;" c
65
- Savon lib/savon/wsdl/document_collection.rb /^class Savon$/;" c
66
- Savon lib/savon/wsdl/input_output.rb /^class Savon$/;" c
67
- Savon lib/savon/wsdl/message.rb /^class Savon$/;" c
68
- Savon lib/savon/wsdl/operation.rb /^class Savon$/;" c
69
- Savon lib/savon/wsdl/port.rb /^class Savon$/;" c
70
- Savon lib/savon/wsdl/port_type.rb /^class Savon$/;" c
71
- Savon lib/savon/wsdl/port_type_operation.rb /^class Savon$/;" c
72
- Savon lib/savon/wsdl/service.rb /^class Savon$/;" c
73
- Savon lib/savon/xs/schema.rb /^class Savon$/;" c
74
- Savon lib/savon/xs/schema_collection.rb /^class Savon$/;" c
75
- Savon lib/savon/xs/types.rb /^class Savon$/;" c
76
- Schema lib/savon/xs/schema.rb /^ class Schema$/;" c class:Savon.XS
77
- SchemaCollection lib/savon/xs/schema_collection.rb /^ class SchemaCollection$/;" c class:Savon.XS
78
- Sequence lib/savon/xs/types.rb /^ class Sequence < BaseType; end$/;" c class:Savon.XS
79
- Service lib/savon/wsdl/service.rb /^ class Service$/;" c class:Savon.WSDL
80
- SimpleContent lib/savon/xs/types.rb /^ class SimpleContent < BaseType$/;" c class:Savon.XS
81
- SimpleType lib/savon/xs/types.rb /^ class SimpleType < PrimaryType$/;" c class:Savon.XS
82
- SpecSupport spec/support/fixture.rb /^module SpecSupport$/;" m
83
- SpecSupport spec/support/http_mock.rb /^module SpecSupport$/;" m
84
- WSDL lib/savon/wsdl.rb /^ class WSDL$/;" c class:Savon
85
- WSDL lib/savon/wsdl/binding.rb /^ class WSDL$/;" c class:Savon
86
- WSDL lib/savon/wsdl/binding_operation.rb /^ class WSDL$/;" c class:Savon
87
- WSDL lib/savon/wsdl/document.rb /^ class WSDL$/;" c class:Savon
88
- WSDL lib/savon/wsdl/document_collection.rb /^ class WSDL$/;" c class:Savon
89
- WSDL lib/savon/wsdl/input_output.rb /^ class WSDL$/;" c class:Savon
90
- WSDL lib/savon/wsdl/message.rb /^ class WSDL$/;" c class:Savon
91
- WSDL lib/savon/wsdl/operation.rb /^ class WSDL$/;" c class:Savon
92
- WSDL lib/savon/wsdl/port.rb /^ class WSDL$/;" c class:Savon
93
- WSDL lib/savon/wsdl/port_type.rb /^ class WSDL$/;" c class:Savon
94
- WSDL lib/savon/wsdl/port_type_operation.rb /^ class WSDL$/;" c class:Savon
95
- WSDL lib/savon/wsdl/service.rb /^ class WSDL$/;" c class:Savon
96
- XS lib/savon/xs/schema.rb /^ class XS$/;" c class:Savon
97
- XS lib/savon/xs/schema_collection.rb /^ class XS$/;" c class:Savon
98
- XS lib/savon/xs/types.rb /^ class XS$/;" c class:Savon
99
- [] lib/savon/xs/types.rb /^ def [](key)$/;" f class:Savon.XS.BaseType
100
- absolute_url? lib/savon/importer.rb /^ def absolute_url?(location)$/;" f class:Savon.Importer
101
- attribute lib/savon/xs/schema_collection.rb /^ def attribute(namespace, name)$/;" f class:Savon.XS.SchemaCollection
102
- attribute_group lib/savon/xs/schema_collection.rb /^ def attribute_group(namespace, name)$/;" f class:Savon.XS.SchemaCollection
103
- base lib/savon/xs/types.rb /^ def base$/;" f class:Savon.XS.SimpleType
104
- bindings lib/savon/wsdl/document_collection.rb /^ def bindings$/;" f class:Savon.WSDL.DocumentCollection
105
- body lib/savon/response.rb /^ def body$/;" f class:Savon.Response
106
- body_parts lib/savon/operation.rb /^ def body_parts$/;" f class:Savon.Operation
107
- build lib/savon/element_builder.rb /^ def build(parts)$/;" f class:Savon.ElementBuilder
108
- build lib/savon/example_message.rb /^ def self.build(parts)$/;" F class:Savon.ExampleMessage
109
- build lib/savon/message.rb /^ def build(message)$/;" f class:Savon.Message
110
- build lib/savon/operation.rb /^ def build$/;" f class:Savon.Operation
111
- build lib/savon/xs/types.rb /^ def self.build(node, schemas, schema = {})$/;" F class:Savon.XS
112
- build_body lib/savon/envelope.rb /^ def build_body$/;" f class:Savon.Envelope
113
- build_complex_type_element lib/savon/message.rb /^ def build_complex_type_element(element, xml, tag, value)$/;" f class:Savon.Message
114
- build_element lib/savon/element_builder.rb /^ def build_element(part)$/;" f class:Savon.ElementBuilder
115
- build_elements lib/savon/message.rb /^ def build_elements(elements, message, xml)$/;" f class:Savon.Message
116
- build_envelope lib/savon/envelope.rb /^ def build_envelope(header, body)$/;" f class:Savon.Envelope
117
- build_header lib/savon/envelope.rb /^ def build_header$/;" f class:Savon.Envelope
118
- build_parts lib/savon/wsdl/input_output.rb /^ def build_parts$/;" f class:Savon.WSDL.Input
119
- build_rpc_wrapper lib/savon/envelope.rb /^ def build_rpc_wrapper(body)$/;" f class:Savon.Envelope
120
- build_simple_type_element lib/savon/message.rb /^ def build_simple_type_element(element, xml, tag, value)$/;" f class:Savon.Message
121
- build_type_element lib/savon/element_builder.rb /^ def build_type_element(part)$/;" f class:Savon.ElementBuilder
122
- call lib/savon/operation.rb /^ def call$/;" f class:Savon.Operation
123
- child_elements lib/savon/element_builder.rb /^ def child_elements(parent, type)$/;" f class:Savon.ElementBuilder
124
- children lib/savon/xs/types.rb /^ def children$/;" f class:Savon.XS.BaseType
125
- client spec/support/http_mock.rb /^ def client$/;" f class:SpecSupport.HTTPMock
126
- collect_attributes lib/savon/example_message.rb /^ def self.collect_attributes(element)$/;" F class:Savon.ExampleMessage
127
- collect_attributes lib/savon/xs/types.rb /^ def collect_attributes(memo = [])$/;" f class:Savon.XS.Annotation
128
- collect_attributes lib/savon/xs/types.rb /^ def collect_attributes(memo = [])$/;" f class:Savon.XS.AttributeGroup
129
- collect_attributes lib/savon/xs/types.rb /^ def collect_attributes(memo = [])$/;" f class:Savon.XS.BaseType
130
- collect_attributes lib/savon/xs/types.rb /^ def collect_attributes(memo = [])$/;" f class:Savon.XS.SimpleContent
131
- collect_body_parts lib/savon/wsdl/input_output.rb /^ def collect_body_parts$/;" f class:Savon.WSDL.Input
132
- collect_child_elements lib/savon/xs/types.rb /^ def collect_child_elements(memo = [])$/;" f class:Savon.XS.Annotation
133
- collect_child_elements lib/savon/xs/types.rb /^ def collect_child_elements(memo = [])$/;" f class:Savon.XS.Attribute
134
- collect_child_elements lib/savon/xs/types.rb /^ def collect_child_elements(memo = [])$/;" f class:Savon.XS.BaseType
135
- collect_child_elements lib/savon/xs/types.rb /^ def collect_child_elements(memo = [])$/;" f class:Savon.XS.Extension
136
- collect_child_elements lib/savon/xs/types.rb /^ def collect_child_elements(memo = [])$/;" f class:Savon.XS.SimpleContent
137
- collect_header_parts lib/savon/wsdl/input_output.rb /^ def collect_header_parts$/;" f class:Savon.WSDL.Input
138
- collect_namespaces lib/savon/envelope.rb /^ def collect_namespaces$/;" f class:Savon.Envelope
139
- collect_sections lib/savon/wsdl/document.rb /^ def collect_sections(mapping)$/;" f class:Savon.WSDL.Document
140
- collect_sections lib/savon/wsdl/document_collection.rb /^ def collect_sections$/;" f class:Savon.WSDL.DocumentCollection
141
- complex_type lib/savon/xs/schema_collection.rb /^ def complex_type(namespace, name)$/;" f class:Savon.XS.SchemaCollection
142
- complex_type? lib/savon/element.rb /^ def complex_type?$/;" f class:Savon.Element
143
- create_nsid lib/savon/envelope.rb /^ def create_nsid$/;" f class:Savon.Envelope
144
- doc lib/savon/response.rb /^ def doc$/;" f class:Savon.Response
145
- each lib/savon/wsdl/document_collection.rb /^ def each(&block)$/;" f class:Savon.WSDL.DocumentCollection
146
- each lib/savon/xs/schema_collection.rb /^ def each(&block)$/;" f class:Savon.XS.SchemaCollection
147
- element lib/savon/xs/schema_collection.rb /^ def element(namespace, name)$/;" f class:Savon.XS.SchemaCollection
148
- element_attributes lib/savon/element_builder.rb /^ def element_attributes(type)$/;" f class:Savon.ElementBuilder
149
- empty? lib/savon/xs/types.rb /^ def empty?$/;" f class:Savon.XS.BaseType
150
- example_body lib/savon/operation.rb /^ def example_body$/;" f class:Savon.Operation
151
- example_header lib/savon/operation.rb /^ def example_header$/;" f class:Savon.Operation
152
- expand_qname lib/savon/element_builder.rb /^ def expand_qname(qname, namespaces)$/;" f class:Savon.ElementBuilder
153
- extract_attributes lib/savon/message.rb /^ def extract_attributes(hash)$/;" f class:Savon.Message
154
- extract_value lib/savon/message.rb /^ def extract_value(name, symbol_name, message)$/;" f class:Savon.Message
155
- fake_request spec/support/http_mock.rb /^ def fake_request(url, fixture = nil)$/;" f class:SpecSupport.HTTPMock
156
- fetch_binding lib/savon/wsdl/port.rb /^ def fetch_binding(documents)$/;" f class:Savon.WSDL.Port
157
- fetch_port_type lib/savon/wsdl/binding.rb /^ def fetch_port_type(documents)$/;" f class:Savon.WSDL.Binding
158
- find_attribute lib/savon/element_builder.rb /^ def find_attribute(qname, namespaces)$/;" f class:Savon.ElementBuilder
159
- find_by_namespace lib/savon/xs/schema_collection.rb /^ def find_by_namespace(namespace)$/;" f class:Savon.XS.SchemaCollection
160
- find_element lib/savon/element_builder.rb /^ def find_element(qname, namespaces)$/;" f class:Savon.ElementBuilder
161
- find_input_child_nodes lib/savon/wsdl/binding_operation.rb /^ def find_input_child_nodes(child_name)$/;" f class:Savon.WSDL.BindingOperation
162
- find_message lib/savon/wsdl/input_output.rb /^ def find_message(qname)$/;" f class:Savon.WSDL.Input
163
- find_node lib/savon/wsdl/port_type_operation.rb /^ def find_node(node_name)$/;" f class:Savon.WSDL.PortTypeOperation
164
- find_schema lib/savon/element_builder.rb /^ def find_schema(namespace)$/;" f class:Savon.ElementBuilder
165
- find_soap_node lib/savon/wsdl/binding.rb /^ def find_soap_node$/;" f class:Savon.WSDL.Binding
166
- find_soap_operation_node lib/savon/wsdl/binding_operation.rb /^ def find_soap_operation_node$/;" f class:Savon.WSDL.BindingOperation
167
- find_type lib/savon/element_builder.rb /^ def find_type(qname, namespaces)$/;" f class:Savon.ElementBuilder
168
- find_type_for_element lib/savon/element_builder.rb /^ def find_type_for_element(element)$/;" f class:Savon.ElementBuilder
169
- fixture spec/support/fixture.rb /^ def fixture(path)$/;" f class:SpecSupport
170
- form lib/savon/xs/types.rb /^ def form$/;" f class:Savon.XS.PrimaryType
171
- get lib/savon/httpclient.rb /^ def get(url)$/;" f class:Savon.HTTPClient
172
- get spec/savon/resolver_spec.rb /^ def get(url)$/;" f
173
- get spec/support/http_mock.rb /^ def get(url)$/;" f class:SpecSupport.HTTPMock
174
- get_documents spec/savon/wsdl/document_spec.rb /^ def get_documents(fixture)$/;" f
175
- handle_simple_type lib/savon/element_builder.rb /^ def handle_simple_type(attribute, type)$/;" f class:Savon.ElementBuilder
176
- handle_type lib/savon/element_builder.rb /^ def handle_type(element, type)$/;" f class:Savon.ElementBuilder
177
- hash lib/savon/response.rb /^ def hash$/;" f class:Savon.Response
178
- headers lib/savon/wsdl/input_output.rb /^ def headers$/;" f class:Savon.WSDL.Input
179
- headers lib/savon/wsdl/input_output.rb /^ def headers$/;" f class:Savon.WSDL.Output
180
- http lib/savon.rb /^ def http$/;" f class:Savon
181
- http_adapter lib/savon.rb /^ def self.http_adapter$/;" F class:Savon
182
- http_adapter lib/savon.rb /^ def self.http_adapter=(adapter)$/;" F class:Savon
183
- http_headers lib/savon/operation.rb /^ def http_headers$/;" f class:Savon.Operation
184
- http_mock spec/support/http_mock.rb /^ def http_mock$/;" f class:SpecSupport
185
- id lib/savon/xs/types.rb /^ def id$/;" f class:Savon.XS.ComplexType
186
- import lib/savon/importer.rb /^ def import(location)$/;" f class:Savon.Importer
187
- import_document lib/savon/importer.rb /^ def import_document(location, &block)$/;" f class:Savon.Importer
188
- import_schemas lib/savon/importer.rb /^ def import_schemas$/;" f class:Savon.Importer
189
- imports lib/savon/wsdl/document.rb /^ def imports$/;" f class:Savon.WSDL.Document
190
- initialize lib/savon.rb /^ def initialize(wsdl, http = nil)$/;" f class:Savon
191
- initialize lib/savon/element.rb /^ def initialize$/;" f class:Savon.Element
192
- initialize lib/savon/element_builder.rb /^ def initialize(schemas)$/;" f class:Savon.ElementBuilder
193
- initialize lib/savon/envelope.rb /^ def initialize(operation, header, body)$/;" f class:Savon.Envelope
194
- initialize lib/savon/httpclient.rb /^ def initialize$/;" f class:Savon.HTTPClient
195
- initialize lib/savon/importer.rb /^ def initialize(resolver, documents, schemas)$/;" f class:Savon.Importer
196
- initialize lib/savon/message.rb /^ def initialize(envelope, parts)$/;" f class:Savon.Message
197
- initialize lib/savon/operation.rb /^ def initialize(operation, wsdl, http)$/;" f class:Savon.Operation
198
- initialize lib/savon/resolver.rb /^ def initialize(http)$/;" f class:Savon.Resolver
199
- initialize lib/savon/response.rb /^ def initialize(raw_response)$/;" f class:Savon.Response
200
- initialize lib/savon/wsdl.rb /^ def initialize(wsdl, http)$/;" f class:Savon.WSDL
201
- initialize lib/savon/wsdl/binding.rb /^ def initialize(binding_node)$/;" f class:Savon.WSDL.Binding
202
- initialize lib/savon/wsdl/binding_operation.rb /^ def initialize(operation_node, defaults = {})$/;" f class:Savon.WSDL.BindingOperation
203
- initialize lib/savon/wsdl/document.rb /^ def initialize(document, schemas)$/;" f class:Savon.WSDL.Document
204
- initialize lib/savon/wsdl/document_collection.rb /^ def initialize$/;" f class:Savon.WSDL.DocumentCollection
205
- initialize lib/savon/wsdl/input_output.rb /^ def initialize(binding_operation, port_type_operation, wsdl)$/;" f class:Savon.WSDL.Input
206
- initialize lib/savon/wsdl/message.rb /^ def initialize(message_node)$/;" f class:Savon.WSDL.Message
207
- initialize lib/savon/wsdl/operation.rb /^ def initialize(name, endpoint, binding_operation, port_type_operation, wsdl)$/;" f class:Savon.WSDL.Operation
208
- initialize lib/savon/wsdl/port.rb /^ def initialize(port_node, soap_node)$/;" f class:Savon.WSDL.Port
209
- initialize lib/savon/wsdl/port_type.rb /^ def initialize(port_type_node)$/;" f class:Savon.WSDL.PortType
210
- initialize lib/savon/wsdl/port_type_operation.rb /^ def initialize(operation_node)$/;" f class:Savon.WSDL.PortTypeOperation
211
- initialize lib/savon/wsdl/service.rb /^ def initialize(service_node)$/;" f class:Savon.WSDL.Service
212
- initialize lib/savon/xs/schema.rb /^ def initialize(schema, schemas)$/;" f class:Savon.XS.Schema
213
- initialize lib/savon/xs/schema_collection.rb /^ def initialize$/;" f class:Savon.XS.SchemaCollection
214
- initialize lib/savon/xs/types.rb /^ def initialize(node, schemas, schema = {})$/;" f class:Savon.XS.Attribute
215
- initialize lib/savon/xs/types.rb /^ def initialize(node, schemas, schema = {})$/;" f class:Savon.XS.BaseType
216
- initialize lib/savon/xs/types.rb /^ def initialize(node, schemas, schema = {})$/;" f class:Savon.XS.Element
217
- initialize lib/savon/xs/types.rb /^ def initialize(node, schemas, schema = {})$/;" f class:Savon.XS.PrimaryType
218
- initialize spec/support/http_mock.rb /^ def initialize$/;" f class:SpecSupport.HTTPMock
219
- inline_type lib/savon/xs/types.rb /^ def inline_type$/;" f class:Savon.XS.Attribute
220
- inline_type lib/savon/xs/types.rb /^ def inline_type$/;" f class:Savon.XS.Element
221
- input lib/savon/wsdl/operation.rb /^ def input$/;" f class:Savon.WSDL.Operation
222
- input lib/savon/wsdl/port_type_operation.rb /^ def input$/;" f class:Savon.WSDL.PortTypeOperation
223
- input_body lib/savon/wsdl/binding_operation.rb /^ def input_body$/;" f class:Savon.WSDL.BindingOperation
224
- input_headers lib/savon/wsdl/binding_operation.rb /^ def input_headers$/;" f class:Savon.WSDL.BindingOperation
225
- input_style lib/savon/operation.rb /^ def input_style$/;" f class:Savon.Operation
226
- input_style lib/savon/wsdl/operation.rb /^ def input_style$/;" f class:Savon.WSDL.Operation
227
- inspect lib/savon/xs/types.rb /^ def inspect$/;" f class:Savon.XS.BaseType
228
- load_fixture spec/support/http_mock.rb /^ def load_fixture(fixture)$/;" f class:SpecSupport.HTTPMock
229
- message_name lib/savon/wsdl/input_output.rb /^ def message_name$/;" f class:Savon.WSDL.Input
230
- message_name lib/savon/wsdl/input_output.rb /^ def message_name$/;" f class:Savon.WSDL.Output
231
- messages lib/savon/wsdl/document_collection.rb /^ def messages$/;" f class:Savon.WSDL.DocumentCollection
232
- name lib/savon/wsdl/binding_operation.rb /^ def name$/;" f class:Savon.WSDL.BindingOperation
233
- name lib/savon/wsdl/message.rb /^ def name$/;" f class:Savon.WSDL.Message
234
- name lib/savon/wsdl/port_type.rb /^ def name$/;" f class:Savon.WSDL.PortType
235
- name lib/savon/wsdl/service.rb /^ def name$/;" f class:Savon.WSDL.Service
236
- new_complex_type spec/savon/xs/complex_type_spec.rb /^ def new_complex_type(xml, schemas = nil)$/;" f
237
- new_element spec/savon/xs/element_spec.rb /^ def new_element(xml)$/;" f
238
- new_http_client lib/savon.rb /^ def new_http_client$/;" f class:Savon
239
- new_simple_type spec/savon/xs/simple_type_spec.rb /^ def new_simple_type(xml)$/;" f
240
- nori lib/savon/response.rb /^ def nori$/;" f class:Savon.Response
241
- operation lib/savon.rb /^ def operation(service_name, port_name, operation_name)$/;" f class:Savon
242
- operation lib/savon/wsdl.rb /^ def operation(service_name, port_name, operation_name)$/;" f class:Savon.WSDL
243
- operations lib/savon.rb /^ def operations(service_name, port_name)$/;" f class:Savon
244
- operations lib/savon/wsdl.rb /^ def operations(service_name, port_name)$/;" f class:Savon.WSDL
245
- operations lib/savon/wsdl/binding.rb /^ def operations$/;" f class:Savon.WSDL.Binding
246
- operations lib/savon/wsdl/port_type.rb /^ def operations$/;" f class:Savon.WSDL.PortType
247
- operations! lib/savon/wsdl/binding.rb /^ def operations!$/;" f class:Savon.WSDL.Binding
248
- operations! lib/savon/wsdl/port_type.rb /^ def operations!$/;" f class:Savon.WSDL.PortType
249
- optional? lib/savon/attribute.rb /^ def optional?$/;" f class:Savon.Attribute
250
- output lib/savon/wsdl/operation.rb /^ def output$/;" f class:Savon.WSDL.Operation
251
- output lib/savon/wsdl/port_type_operation.rb /^ def output$/;" f class:Savon.WSDL.PortTypeOperation
252
- output_style lib/savon/operation.rb /^ def output_style$/;" f class:Savon.Operation
253
- output_style lib/savon/wsdl/operation.rb /^ def output_style$/;" f class:Savon.WSDL.Operation
254
- parse lib/savon/xs/schema.rb /^ def parse$/;" f class:Savon.XS.Schema
255
- parse_node lib/savon/wsdl/port_type_operation.rb /^ def parse_node(node)$/;" f class:Savon.WSDL.PortTypeOperation
256
- parts lib/savon/wsdl/message.rb /^ def parts$/;" f class:Savon.WSDL.Message
257
- parts! lib/savon/wsdl/message.rb /^ def parts!$/;" f class:Savon.WSDL.Message
258
- path spec/support/fixture.rb /^ def self.path(path)$/;" F class:SpecSupport.Fixture
259
- port_types lib/savon/wsdl/document_collection.rb /^ def port_types$/;" f class:Savon.WSDL.DocumentCollection
260
- ports lib/savon/wsdl/service.rb /^ def ports$/;" f class:Savon.WSDL.Service
261
- ports! lib/savon/wsdl/service.rb /^ def ports!$/;" f class:Savon.WSDL.Service
262
- post lib/savon/httpclient.rb /^ def post(url, headers, body)$/;" f class:Savon.HTTPClient
263
- post spec/support/http_mock.rb /^ def post(url, headers, body)$/;" f class:SpecSupport.HTTPMock
264
- push lib/savon/xs/schema_collection.rb /^ def push(schemas)$/;" f class:Savon.XS.SchemaCollection
265
- raise_mock_error! spec/support/http_mock.rb /^ def raise_mock_error!(method, url)$/;" f class:SpecSupport.HTTPMock
266
- raw lib/savon/response.rb /^ def raw$/;" f class:Savon.Response
267
- recursive? lib/savon/element.rb /^ def recursive?$/;" f class:Savon.Element
268
- recursive_child_definition? lib/savon/element_builder.rb /^ def recursive_child_definition?(parent, element)$/;" f class:Savon.ElementBuilder
269
- register_namespace lib/savon/envelope.rb /^ def register_namespace(namespace)$/;" f class:Savon.Envelope
270
- request lib/savon/httpclient.rb /^ def request(method, url, headers, body)$/;" f class:Savon.HTTPClient
271
- resolve lib/savon/resolver.rb /^ def resolve(location)$/;" f class:Savon.Resolver
272
- rpc_call? lib/savon/envelope.rb /^ def rpc_call?$/;" f class:Savon.Envelope
273
- schema_nodes lib/savon/wsdl/document.rb /^ def schema_nodes$/;" f class:Savon.WSDL.Document
274
- schema_nodes! lib/savon/wsdl/document.rb /^ def schema_nodes!$/;" f class:Savon.WSDL.Document
275
- schemas lib/savon/wsdl/document.rb /^ def schemas$/;" f class:Savon.WSDL.Document
276
- service_name lib/savon/wsdl.rb /^ def service_name$/;" f class:Savon.WSDL
277
- service_name lib/savon/wsdl/document.rb /^ def service_name$/;" f class:Savon.WSDL.Document
278
- service_name lib/savon/wsdl/document_collection.rb /^ def service_name$/;" f class:Savon.WSDL.DocumentCollection
279
- service_port lib/savon/wsdl/document_collection.rb /^ def service_port(service_name, port_name)$/;" f class:Savon.WSDL.DocumentCollection
280
- services lib/savon.rb /^ def services$/;" f class:Savon
281
- services lib/savon/wsdl.rb /^ def services$/;" f class:Savon.WSDL
282
- services lib/savon/wsdl/document_collection.rb /^ def services$/;" f class:Savon.WSDL.DocumentCollection
283
- services! lib/savon/wsdl.rb /^ def services!$/;" f class:Savon.WSDL
284
- simple_type lib/savon/xs/schema_collection.rb /^ def simple_type(namespace, name)$/;" f class:Savon.XS.SchemaCollection
285
- simple_type? lib/savon/element.rb /^ def simple_type?$/;" f class:Savon.Element
286
- soap_action lib/savon/wsdl/operation.rb /^ def soap_action$/;" f class:Savon.WSDL.Operation
287
- soap_version lib/savon/wsdl/operation.rb /^ def soap_version$/;" f class:Savon.WSDL.Operation
288
- split_qname lib/savon/element_builder.rb /^ def split_qname(qname)$/;" f class:Savon.ElementBuilder
289
- store_element lib/savon/xs/schema.rb /^ def store_element(collection, node, schema)$/;" f class:Savon.XS.Schema
290
- store_import lib/savon/xs/schema.rb /^ def store_import(node)$/;" f class:Savon.XS.Schema
291
- target_namespace lib/savon/wsdl/document.rb /^ def target_namespace$/;" f class:Savon.WSDL.Document
292
- to_a lib/savon/element.rb /^ def to_a(memo = [], stack = [])$/;" f class:Savon.Element
293
- to_s lib/savon/envelope.rb /^ def to_s$/;" f class:Savon.Envelope
294
- type_class lib/savon/xs/types.rb /^ def self.type_class(type)$/;" F class:Savon.XS
295
- verify_operation_exists! lib/savon/wsdl.rb /^ def verify_operation_exists!(service_name, port_name, operation_name)$/;" f class:Savon.WSDL
296
- verify_operation_style! lib/savon.rb /^ def verify_operation_style!(operation)$/;" f class:Savon
297
- verify_port_exists! lib/savon/wsdl.rb /^ def verify_port_exists!(service_name, port_name)$/;" f class:Savon.WSDL
298
- verify_service_exists! lib/savon/wsdl.rb /^ def verify_service_exists!(service_name)$/;" f class:Savon.WSDL
299
- xpath lib/savon/response.rb /^ def xpath(path, namespaces = nil)$/;" f class:Savon.Response