[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XML from JSP

Subject: Re: XML from JSP
From: Mike Brown <mike@xxxxxxxx>
Date: Fri, 15 Nov 2002 17:15:37 -0700 (MST)
output xml from jsp
sara.mitchell@xxxxxxxxx wrote:
> The JSP directive: 
> 
> 
> > -----Original Message-----
> > <%
> > String block = "work";
> > %>
> 
> is not well-formed XML. The XML parser expects 
> that anything beginning with < represents
> XML markup. (Note: parsers don't compile 
> XML, they parse it.)
> 
> To make it well-formed, you need to have the 
> JSP directive inside a CDATA marked section
> like this: 
> 
> <![CDATA[<%
>  String block = "work";
>  %>]]>

And to answer the inevitable next question, CDATA sections are lexical fluff, 
so the document author might as well just write

&lt;%
String block = "work";
%>

Either way, they have to use either

 1. directly serialized XML or HTML output mode, with
    disable-output-escaping (if supported at all); or

 2. text output mode, after having assembled the entire document
    as nothing but text nodes containing pseudo-markup like this.

Personally, I would instead use XML output mode and make elements that will be
serialized in JSP's XML syntax, or maybe I'd emit processing instructions and
run the serialized output through a regex filter to replace the PIs with the
appropriate tags.

   - Mike
____________________________________________________________________________
  mike j. brown                   |  xml/xslt: http://skew.org/xml/
  denver/boulder, colorado, usa   |  resume: http://skew.org/~mike/resume/

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread
  • XML from JSP
    • Gavin Myers - Fri, 15 Nov 2002 15:26:03 -0500 (EST)
      • <Possible follow-ups>
      • sara . mitchell - Fri, 15 Nov 2002 16:23:02 -0500 (EST)
        • Mike Brown - Fri, 15 Nov 2002 19:11:00 -0500 (EST) <=
        • Mike Brown - Fri, 15 Nov 2002 19:21:52 -0500 (EST)

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.