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
I am trying to integrate the salesforce with my rails 6 application with the help of Washout (0.12.0), and Savon The issue is that I am not able to reach any action within the web service I have created by Washout and Savon gem. I think there may be some with the url/routes.
Further code related details are mentioned follows:
When the request is generated I cannot reach this controller or any action within it. The error I am getting after generating request from salesforce to my rails application.
Started POST "/api/my_controller/action" for 80.194.71.208 at 2020-02-04 18:15:43 +0530
Cannot render console from 80.194.71.208! Allowed networks: 127.0.0.0/127.255.255.255, ::1
Processing by Api::MyController#_invalid_action as HTML
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms | Allocations: 1236)
NoMethodError (undefined method `[]' for nil:NilClass):
wash_out (0.11.0) lib/wash_out/dispatcher.rb:34:in `_map_soap_parameters'
activesupport (6.0.2.1) lib/active_support/callbacks.rb:429:in `block in make_lambda'
And routes are as follows:
namespace :api do
wash_out :my_controller
end
As I further debugged I am not getting request.env['wash_out.soap_action'] proper.
Its something "http://tempuri.org/XYZ/New"
The text was updated successfully, but these errors were encountered:
I am trying to integrate the salesforce with my rails 6 application with the help of Washout (0.12.0), and Savon The issue is that I am not able to reach any action within the web service I have created by Washout and Savon gem. I think there may be some with the url/routes.
Further code related details are mentioned follows:
When the request is generated I cannot reach this controller or any action within it. The error I am getting after generating request from salesforce to my rails application.
And routes are as follows:
As I further debugged I am not getting request.env['wash_out.soap_action'] proper.
Its something
"http://tempuri.org/XYZ/New"
The text was updated successfully, but these errors were encountered: