Sha256: 764eba03cba7c3c1aac225e30c6fd29462bdd3b80f233e301a5e3902fd98f965

Contents?: true

Size: 354 Bytes

Versions: 10

Compression:

Stored size: 354 Bytes

Contents

module QuickbooksWebConnector
  class SoapController < QuickbooksWebConnectorController

    def endpoint
      # QWC will perform a GET to check the certificate, so we gotta respond
      render nothing: true and return if request.get?

      response = SoapWrapper.route(request)
      render xml: response, content_type: 'text/xml'
    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
quickbooks_web_connector-0.6.3 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.6.2 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.6.1 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.6.0 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.5.0 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.4.0 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.3.0 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.2.0 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.1.0 app/controllers/quickbooks_web_connector/soap_controller.rb
quickbooks_web_connector-0.0.6 app/controllers/quickbooks_web_connector/soap_controller.rb