HI All
I have a situation where I need to authenticate with a HTML POST XML style layout then HTML POST XML to send the data.
Using Webhooks with HTTP requests chain I can authenticate and I can send the correct data in the next Http server in the chain. the problem is in the authenticate post I get a sessionid response that I need to pass to the next http server POST.
For Example <SubscribeResponse xmlns=\"http://MASXMLwebServer.com\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\"><SessionID>82b437d0-95c1-4072-a7e6-5df3ff8d52ba</SessionID><HeartbeatInterval>32000</HeartbeatInterval><ResultCode>0</ResultCode><ResultText>ok</ResultText></SubscribeResponse>
Any idea's how I can capture the data in<SessionID>82b437d0-95c1-4072-a7e6-5df3ff8d52ba</SessionID> and pass it to the next HTTP Server in the Chain.
Thanks for any assistance.