I solved this problem by chaining the use of an AIR HTML control in conjunction to use of SwfLoader to then load the desired remote .swf file.
I wrote a JavaScript function on an HTML web page that my AIR app loads into an HTML instance (when the page complete event fires, it is then safe to call the JavaScript function from AIR Flex code - the Flex code can, of course, handle the HTML complete event).
This JavaScript function uses XmlHttpRequest() to login to the web site that uses Spring Security for authorization. A Set-Cookie header gets processed upon a successful login. When the response for the XmlHttpRequest() is complete then a synthetic click event is dispatched on a dummy DIV object that has been placed on the web page. AIR Flex code is able to register for and process this synthetic click event.
Upon processing the click event, the AIR Flex code then knows it is safe to proceed to instantiate a SwfLoader instance. When the complete event from the SwfLoader object fires, then the object reference of the SwfLoader is placed in the AIR app display list.
The user then sees the remotely loaded swf file begin to execute and show its own UI. It is running in a sub-application remote sandbox context. The sub-application feature is supported in Flex SDK 3.2 via the SwfLoader control.
So the AIR app is managing the cookie header that was established by the HTML control. That cookie header is emitted in the HTTP request of the SwfLoader control when it is used to load the remote .swf file. Spring Security filter sees this and finds the request to be from an authenticated user session.
