views:

103

answers:

0

Hiya I'm trying to write an application for red5 that uses some servlet classes in order to package a requestion for facebook.

the client side is a Adobe flash builder application.

is it possible to send session information from the flex application in order for the red5 client side to create proper HttpServletRequest and HttpServletResponse objects?

in tomcat the code would be:

public void doGet (HttpServletRequest req,
                                     HttpServletResponse res)
    throws ServletException, IOException
 {
        HttpServletRequest request = (HttpServletRequest)req;
        HttpServletResponse response = (HttpServletResponse)res;

       ...

}