xsp. I need to take content of request.
no method getContent() .
but there is getInputStream(), but I can't understand how to use that... how
I can to take content like a String?
btw, I found this method:
private byte[] getContent(HttpServletRequest req)
    {
        if (req.getParameter("content") != null)
            return Base64.decode(req.getParameter("content").getBytes());
        return "".getBytes();
    }
but cocoon Request return _null_ for req.getParameter("content") even if
request.getContentLength() > 0
so, how can I take request Content?
-- 
View this message in context: 
http://www.nabble.com/-C2.1.11--get-Content-from-request-tp15587155p15587155.html
Sent from the Cocoon - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to