ruby - Savon not generating correct SOAPActions -
Savannah shows that there is an operation,
: get_lead
, which will translate to getLead
when loaded in the SOI, then the correct operation sample is given in the request:
paramsGetLead
.
What is happening here and why not: Parama_Get_Lead is seen as an operation?
Or there is a way to manually define SOAPAction and prevent the production of savon
You should use the following configuration options
client = Savon.client (: get_lead,: convert_request_keys_to = & gt ;: camelcase #: lower_camelcase ,: upcase, : None ...)
You can explicitly specify the operation
client.call (: get_lead, soap_action: "some_namespace / getLead" , ...)
Comments
Post a Comment