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 have a soap request where I'll be getting duplicate elements (Unique ID in the request given below) in soap request. But I can't find a way to define these elements in the args parameter.
These args generate a WSDL with with only one UniqueId element. I have tried defining the UniqueId multiple times in the args but it is generating only one UniqueId element.
The text was updated successfully, but these errors were encountered:
hm... I'm not a specialist for building the parameters but if I understand right, I would assume a list for unique IDs like <IDS> <UniqueID ID="859623" Type="501"/> <UniqueID ID="ABCDEF" Type="502"/> <UniqueID ID="123456" Type="10"/> </IDS>
and then you could use it in the params with :IDS => [ :UniqueID => { :@ID => :integer, :@Type => :integer }]
I don't know if you can have a list of elements without having an element that builds the list.
I have a soap request where I'll be getting duplicate elements (Unique ID in the request given below) in soap request. But I can't find a way to define these elements in the args parameter.
The SOAP request is :
Here is the code in my wash out controller :
These args generate a WSDL with with only one UniqueId element. I have tried defining the UniqueId multiple times in the args but it is generating only one UniqueId element.
The text was updated successfully, but these errors were encountered: