I am trying to invoke a session based webservice from Azure Logic apps which requires session id from authentication request to be sent as a cookie for actual request. I am able to authenticate and recieve session id successfully, however when i try to send it as cookie in the next step, it is unsuccessful. Tried below options and got respective responses:
- Using HTTP connector -> gave me 'Unresolvablehostname'
- using custom logic app connector, with on-premises gateway checked and 'http' option -> SOAP Fault and upon looking at destination logs we could see that Cookie was empty. I have tried sending "Cookie" in headers as well as a parameter but no luck.
- using custom logic app connector, with on-premises gateway checked and 'https' option -> certification error and i understand https is not configured and hence wouldn't work.
I tried from SOAP UI and it works when I send cookie in header of the request. or if I check the 'keep same session' box in SOAP UI. But fails with Logic App. could you please help me on how to send cookie from Logic App. where is it getting missed although I am setting it in my application.
