> -----Original Message-----
> From: Lorenzo Sicilia [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 31, 2004 6:17 AM
> To: Tag Libraries Users List
> Subject: jstl read raw data
>
>
> hi list,
>
> I need read some xml data in post.
> I have found some example in jsp that show raw data post:
> http://www.sci.usq.edu.au/courses/csc8409/src/ShowPost.jsp
>
> Do I can with jstl read raw data?
>
> I send xml object from flash with XML.sendAndLoad(mypage.jsp, "POST");
>
> Thanks in advance for any idea.

Since what you want to read is XML, you can do this as long as you actually
want to parse the XML as well. Try this:

  <x:parse var="parsedXml" xml="${pageContext.request.reader}"/>

I'm not aware of any way of getting the raw content of the reader in JSTL,
though.

--
Martin Cooper


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



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

Reply via email to