You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
I have a test app on pixi and want to access its data via Rails app.
I configured the client as following:
PixiClient.configure do |config|
config.endpoint = ENV["ENDPOINT_URL"]
config.username = ENV["PIXI_USERNAME"]
config.password = ENV["PIXI_PASSWORD"]
config.wsdl = "#{Rails.root}/config/pixi_client.wsdl"
end
When i try to fullfil a SOAP request response = PixiClient::Requests::GetInvoice.new(invoice_id).call in irb,
i get ArgumentError (wrong number of arguments (given 0, expected 2)).
Same request via SoapUI returns correct data.
I cannot get through this.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a test app on pixi and want to access its data via Rails app.
I configured the client as following:
When i try to fullfil a SOAP request
response = PixiClient::Requests::GetInvoice.new(invoice_id).call
in irb,i get ArgumentError (wrong number of arguments (given 0, expected 2)).
Same request via SoapUI returns correct data.
I cannot get through this.
The text was updated successfully, but these errors were encountered: