I need to connect a piece of middleware I'm writing in C# to Adobe Connect. Their API returns all data queryied as an XML document. The issue I'm having is this: I need to check a response to see if the login attempt is successful, and if it is I need to retrieve the cookie from the HTTP headers so that I can use that cookie to perform the various actions the application requires. How would I go about this?
This is what a successful login attempt looks like on the XML side of things:
<results>
<status code="ok"/>
</results>
Any help would be appreciated.