method
new
v1.0.0 -
Show latest stable
- Class:
ActionWebService::Client::Soap
new(api, endpoint_uri, options={})public
Creates a new web service client using the SOAP RPC protocol.
api must be an ActionWebService::API::Base derivative, and endpoint_uri must point at the relevant URL to which protocol requests will be sent with HTTP POST.
Valid options:
- :namespace
- If the remote server has used a custom namespace to declare its custom types, you can specify it here. This would be the namespace declared with a [WebService(Namespace = "http://namespace")] attribute in .NET, for example.
- :driver_options
- If you want to supply any custom SOAP RPC driver options, you can provide them as a Hash here
The :driver_options option can be used to configure the backend SOAP RPC driver. An example of configuring the SOAP backend to do client-certificate authenticated SSL connections to the server:
opts = {} opts['protocol.http.ssl_config.verify_mode'] = 'OpenSSL::SSL::VERIFY_PEER' opts['protocol.http.ssl_config.client_cert'] = client_cert_file_path opts['protocol.http.ssl_config.client_key'] = client_key_file_path opts['protocol.http.ssl_config.ca_file'] = ca_cert_file_path client = ActionWebService::Client::Soap.new(api, 'https://some/service', :driver_options => opts)