red5 and servlets: can i get HttpServerRequest and HttpServerResponse?

Posted by ufk on Stack Overflow See other posts from Stack Overflow or by ufk
Published on 2010-02-01T03:35:16Z Indexed on 2010/05/21 23:00 UTC
Read the original article Hit count: 358

Filed under:
|

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;

       ...

}

© Stack Overflow or respective owner

Related posts about red5

Related posts about httpservletrequest