savon 0.7.8 → 0.7.9
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -0
- data/README.rdoc +3 -3
- data/lib/savon/soap.rb +1 -1
- data/lib/savon/version.rb +1 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
@@ -16,7 +16,7 @@ Instantiate Savon::Client, passing in the WSDL of your service.
|
|
16
16
|
|
17
17
|
client = Savon::Client.new "http://example.com/UserService?wsdl"
|
18
18
|
|
19
|
-
For production, it is highly recommended to not use Savon::WSDL. Information on {how to disable the WSDL}[http://savon.rubiii.com/docs/
|
19
|
+
For production, it is highly recommended to not use Savon::WSDL. Information on {how to disable the WSDL}[http://savon.rubiii.com/docs/latest/classes/Savon/WSDL.html].
|
20
20
|
|
21
21
|
== Calling a SOAP action
|
22
22
|
|
@@ -56,9 +56,9 @@ Savon::Response represents the HTTP and SOAP response. It contains and raises er
|
|
56
56
|
== HTTP errors and SOAP faults
|
57
57
|
|
58
58
|
Savon raises a Savon::SOAPFault in case of a SOAP fault and a Savon::HTTPError in case of an HTTP error.
|
59
|
-
More information: {Errors}[http://savon.rubiii.com/docs/
|
59
|
+
More information: {Errors}[http://savon.rubiii.com/docs/latest/classes/Savon/Response.html]
|
60
60
|
|
61
61
|
== Logging
|
62
62
|
|
63
63
|
Savon logs each request and response to STDOUT. But there are a couple of options to change the default behavior.
|
64
|
-
More information: {Logging}[http://savon.rubiii.com/docs/
|
64
|
+
More information: {Logging}[http://savon.rubiii.com/docs/latest/classes/Savon/Request.html]
|
data/lib/savon/soap.rb
CHANGED
@@ -128,7 +128,7 @@ module Savon
|
|
128
128
|
ContentType = { 1 => "text/xml", 2 => "application/soap+xml" }
|
129
129
|
|
130
130
|
# SOAP xs:dateTime format.
|
131
|
-
DateTimeFormat = "%Y-%m-%dT%H:%M:%
|
131
|
+
DateTimeFormat = "%Y-%m-%dT%H:%M:%S%Z"
|
132
132
|
|
133
133
|
# SOAP xs:dateTime Regexp.
|
134
134
|
DateTimeRegexp = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}/
|
data/lib/savon/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 7
|
8
|
-
-
|
9
|
-
version: 0.7.
|
8
|
+
- 9
|
9
|
+
version: 0.7.9
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Daniel Harrington
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-06-14 00:00:00 +02:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|