Keep Session Alive
Step1: A partner firm passes xml values to me via url and thi has a session variable from his server.
Step2: I need to take that xml data and run a query on it to get additional values.
Step3: After the query I need to send back xml to my partner firm, AND I NEED TO KEEP THE SESSION VARIABLE ALIVE FROM WHEN HE SENT IT TO ME in Step 1 and pass back my xml in the same SESSION!!!
Here is the code I have now in Step 3
<cfhttp url="https://partnerfirm.com" method="post">
<cfhttpparam type="xml" name="XMLUpload" value="#xml_validated#">
</cfhttp>
According to my partner firm my xml is getting back to their server but since I dont have the same SESSION from Step 1 it gets rejected.
I guess the <cfhttp> that I send back in Step 3 starts a new Session...so the original session that oartner sent in Step 1 is gone.
Is there a way to keep the session from Session 1 and use that same session in step 3?
Do I need to use a different tag a different technolgy a different coding language??
I have spent all week on this..this is something that should have taken a few hours.
My Partner firm tells me that other firms/programmers have had no issue implementing this and I must be doing somethin wrong.
I have read the BEN NADEL stuff about this about trying to somehow capture the Session variable in Step 1..then do Step 2....then pass the Session variable back with the xml data....it made sense to me.
But partner firm says that wont work...so I stopped pursuing .
Am I just stupid...Am I missing something..Do I need to buy custom tag???
Any Help???
