soap4r_es 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85f79c0dfc36ff1e92f59a298a779dc15651b8ff425a0547e169332509baa91e
4
- data.tar.gz: caa7bc8e470f3c32b62888143836d31968b81c26465dfac234512d06e940006b
3
+ metadata.gz: 4fc1acea7a562334f9d5bc519fb7011f91d54043f0062f7d3db72d8e9319e656
4
+ data.tar.gz: fe5f31469bee8fba84a07a76f6bd2e482b853a9a17067f449512cde10733ffe2
5
5
  SHA512:
6
- metadata.gz: 027a82c9aeb99bffdaf791128bdad18758c1e56c17e30bdf1eb4d47e2e9fdf4b0e9e1e91fdc5558249876c4c007947e0bc2d518f000e251ac38c370b47602308
7
- data.tar.gz: 8473e8b37044a9ee8b6d160734f7b9ce165db85d3a9366283f677704b75d89af08d89fc44278c5c67728cd6e8df292c9564b81309079c2f0c6b815c99d8bc920
6
+ metadata.gz: 535c6147f813ac7dae0b15bdee9953dbf37c361adf553278e5dba7e3e7389d4accc8954d7810274731f7175571641d8b181b45a5f64c0f549a940dadaf3e20a0
7
+ data.tar.gz: 9abd9b0351b4e9b23db9eeeba7c11e0a9de4c750264e0c3d0bc9c8162cb0c4ab0054ae00021fd928df29767131495157d2f347106ad73e25ba4de7e404165c44
@@ -146,7 +146,7 @@ class EncodedRegistry
146
146
  {:derived_class => true}],
147
147
  [::Float, ::SOAP::SOAPFloat, BasetypeFactory,
148
148
  {:derived_class => true}],
149
- [::Fixnum, ::SOAP::SOAPInt, FixnumFactory],
149
+ [::Integer, ::SOAP::SOAPInt, FixnumFactory],
150
150
  [::Integer, ::SOAP::SOAPInt, BasetypeFactory,
151
151
  {:derived_class => true}],
152
152
  [::Integer, ::SOAP::SOAPLong, BasetypeFactory,
@@ -212,7 +212,7 @@ class EncodedRegistry
212
212
  {:derived_class => true}],
213
213
  [::Float, ::SOAP::SOAPFloat, BasetypeFactory,
214
214
  {:derived_class => true}],
215
- [::Fixnum, ::SOAP::SOAPInt, FixnumFactory],
215
+ [::Integer, ::SOAP::SOAPInt, FixnumFactory],
216
216
  [::Integer, ::SOAP::SOAPInt, BasetypeFactory,
217
217
  {:derived_class => true}],
218
218
  [::Integer, ::SOAP::SOAPLong, BasetypeFactory,
@@ -160,7 +160,6 @@ class Router
160
160
  require 'soap/mapping/mapping'
161
161
  def route(conn_data)
162
162
  # we cannot set request_default_encodingsyle before parsing the content.
163
-
164
163
  env = unmarshal(conn_data)
165
164
  if env.nil?
166
165
  raise ArgumentError.new("illegal SOAP marshal format")
@@ -181,7 +180,8 @@ require 'soap/mapping/mapping'
181
180
  #ricavo l'handler configurato
182
181
  my_handler = headerhandler.get_handler(@headerhandlerfactory[0])
183
182
  #chiamo il metodo che mi ritorna l'oggetto
184
- header_soap = my_handler.on_mapping_outbound
183
+ header_soap = nil
184
+ header_soap = my_handler.on_mapping_outbound if my_handler
185
185
  soap_response = op.call(env, header_soap, @mapping_registry, @literal_mapping_registry,
186
186
  create_mapping_opt)
187
187
  conn_data.is_fault = true if soap_response.is_a?(SOAPFault)
data/lib/soap/version.rb CHANGED
@@ -3,7 +3,7 @@ module SOAP
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 0
6
- TINY = 9
6
+ TINY = 10
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
 
9
9
  FORK = "SOAP4R-NG"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soap4r_es
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Laurence A. Lee, Hiroshi NAKAMURA, Fabiano Pavan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-04 00:00:00.000000000 Z
11
+ date: 2024-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient