X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dc2a2c8ebd1a11e4a64555fda22c6859a51defff..6c1917ce73bf8aec9fb6d391ce80f024982eea2d:/lib/quova.rb diff --git a/lib/quova.rb b/lib/quova.rb index 6cfc2ff92..b09f8acea 100644 --- a/lib/quova.rb +++ b/lib/quova.rb @@ -34,13 +34,13 @@ module Quova ## # Create SOAP endpoint - @@soap = SOAP::WSDLDriverFactory.new(WSDL_URL).create_rpc_driver - @@soap.options["protocol.http.basic_auth"] << [WSDL_URL, WSDL_USER, WSDL_PASS] + @soap = SOAP::WSDLDriverFactory.new(WSDL_URL).create_rpc_driver + @soap.options["protocol.http.basic_auth"] << [WSDL_URL, WSDL_USER, WSDL_PASS] ## # Accessor for SOAP endpoint def self.soap - @@soap + @soap end ##