1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
|
<HTML><HEAD><TITLE></TITLE><LINK href="resources/simple.css" rel="stylesheet" title="Simple Style" type="text/css"></HEAD><BODY><P class="legal">Cocoon Documentation</P><H1 class="title"></H1><SPECIFICATION>
<TABLE class="header"><TR><TD><B>Authors</B></TD></TR><TR><TD><B>Stefano Mazzocchi</B> - stefano@apache.org</TD></TR><TR><TD><B>Ricardo Rocha</B> - ricardo@apache.org</TD></TR><TR><TD><B>Status</B></TD></TR><TR><TD><B>Working Draft - 2000-01-09</B></TD></TR><TR><TD><B>Notice</B></TD></TR><TR><TD>
This is an Apache Working Draft for review by all interested
parties. It is a draft document and may be updated, replaced, or obsoleted by other
documents at any time. It is inappropriate to use Working Drafts as reference material or
to cite them as other than "work in progress". This work is part of the Apache Cocoon Project
</TD></TR><TR><TD><B>Abstract</B></TD></TR><TR><TD>
This document specifies an XML namespace that addresses a complete
region of web publishing, that of logic-based, dynamic content generation. This language
is introduced to fill an existing gap between the W3C specifications and working draft and
the increasing demand for a flexible server side approach based on the new XML paradigm.
</TD></TR></TABLE>
<BODY>
<H1>Introduction</H1><DIV id="s1">
<P>This document specifies both an XML document type definition and a development
methodology to generate dynamic XML by server side processing of client's requests. Such a
specification is useful to define an open and standard way to develop and maintain dynamic
XML server pages. The technology described in this document was designed to complete the
XML-based publishing framework defined by the Cocoon Project and it's mainly targeted
on this project, even if the final goal of this effort is to submit a request to a standard
body (such as W3C) for final recommendation.</P>
<H2>Origins</H2><DIV id="s2">
<P>The need for an open language to standardizing server side programmatic XML generation
was observed when XML-based web publishing frameworks emerged and no available technology
was detailed, stable, useful and open enough to be used. XSP, by mixing Turing-complete
programming logic with page content, provide a flexible yet fully portable and extensible
way to develop dynamic XML content. Moreover, being completely XML-based, XSP are fully
integrated with XML-based web architectures that allow XSL-transformation to obtain the
context separation that is needed for complex sites to increase their management
parallelism.</P>
<P>Being based on an XML paradigm from the beginning, XSP don't suffer limitations other
server pages technologies do: the ability to XSL-transform XSP directly and recursively
allows a more compact and precise DTD to be designed since content/logic/style separation
is performed by the architecture and not by the language itself. For this reason, XSP are
completely transparent to the namespaces/document-types used.</P>
</DIV>
<H2>Layer Separation</H2><DIV id="s2">
<P>Being a rather complex technology, the XSP specification will be separated into layers.
These layers will have different goals and restrictions and will allow faster development
cycles and a better defined development model. Every layer will define its own document
type definition which may extend the one of the previous layer or completely change it,
depending on layer goals. Layers should be seen as levels of abstraction, much like
programming languages range from higher-levels to lower-levels.</P>
</DIV>
<H2>General Goals</H2><DIV id="s2">
<P>Following is a summary of the design principles governing the general XSP specification:</P>
<OL>
<LI>should integrate completely with existing W3C recommendations and working drafts</LI>
<LI>should be programming language independent</LI>
<LI>should be aimed to programmers but should be relatively easy to understand</LI>
<LI>should allow pages to be compiled (into Java servlets or other equivalent technology)</LI>
<LI>should not aim to replace existing technologies</LI>
<LI>should be document oriented</LI>
<LI>should allow easy reusability of page code</LI>
<LI>should allow complete separation of knowledge contexts (content, logic and style)</LI>
<LI>should be transparent to all but page programmers</LI>
<LI>specification should be open to all but controlled directly by the Cocoon Project</LI>
</OL>
</DIV>
<H2>Layer 1 Goals</H2><DIV id="s2">
<P>Following is a summary of the design principles governing the Layer 1 of the XSP
specification:</P>
<OL>
<LI>should define the complete element set</LI>
<LI>should be aimed to machine generations so:
<UL>
<LI>reducing the number of elements to a minimum is of maximal importance</LI>
<LI>verbosity of the generated documents is of minimal importance</LI>
</UL>
</LI>
<LI>should be human readable/editable so:
<UL>
<LI>terseness and readability are of maximal importance</LI>
<LI>indenting and formattation are of maximal importance</LI>
</UL>
</LI>
<LI>should be possibly XSLT transformed directly into programming language source code</LI>
<LI>should define the relations to the programming languages (object models, variable scopes)</LI>
</OL>
</DIV>
<H2>Layer 2 Goals</H2><DIV id="s2">
<P>Following is a summary of the design principles governing the Layer 2 of the XSP
specification:</P>
<OL>
<LI>should define a human oriented element set</LI>
<LI>should be aimed to human generations so:
<UL>
<LI>reducing the number of elements to a minimum is of minimal importance</LI>
<LI>reducing verbosity of the documents is of maximal importance</LI>
</UL>
</LI>
<LI>should be aimed to medium-low knowledged programmers:
<UL>
<LI>automatization of complex operations is of maximal importance</LI>
<LI>tendency to hide page logic is of maximal importance</LI>
</UL>
</LI>
<LI>should be possibly XSLT transformed into XSP Layer 1 documents</LI>
</OL>
</DIV>
<H2>Final Goals</H2><DIV id="s2">
<P>The XSP specification would eventually evolve into a single specification with a single
document type definition. This will happen when the working draft phase will be terminated
and all involved parties will agree on the specification stability. The Layer 1 will be
the first to be developed and tested in a working implementation. Subsequent layers will
probably need several evolution stages to reach their final shape.</P>
</DIV>
<H2>Relationship to Existing Standards</H2><DIV id="s2">
<P>Three standards have been especially influential:</P>
<DL>
<LI><STRONG>JSP</STRONG> - defines a way to embed programmatic logic into web documents.</LI>
<LI><STRONG>XSLT</STRONG> - defines a way to transform XML documents.</LI>
<LI><STRONG>XML</STRONG> - defines a flexible still highly structured paradigm for web
content generation and distribution.</LI>
</DL>
<P>Many server side dynamic web content generators have been evaluated and confronted,
especially WebMacro and GSP.</P>
</DIV>
<H2>Terminology</H2><DIV id="s2">
<P>The following basic terms apply in this document:</P>
<DL>
<LI><STRONG>document</STRONG> -
a document is the final result of the client request phase and they can be obtain from a
single file that is read from disk/cache or by processing several ones. Documents are said
static if their content doesn't change with user request parameters nor time.
Documents are said dynamic if they do.
</LI>
<LI><STRONG>page</STRONG> -
a page is the entity that is requested by the client and drives the document creation
process. In the simplest case, a document is created reading the page and sending it
directly without further processing. In case of compiled pages, a binary object is
executed and it's content is used as page content. Pages are said compiled if
they are translated into binary code. Note that compiled pages may be created from normal
pages the first time the page is requested and executed as binary code in further requests
for performance reasons.
</LI>
<LI><STRONG>sheet</STRONG> -
a sheet is the processing unit of the document creation chain. Each sheet is a file and
they contain the instructions to transform the requested page into the document sent to
the requesting client. Sheets are said style sheets if they are the last of the
chain and no further processing in performed, logic sheets if they contain XSP
elements. Both types are said transformation sheets since they contain XSLT
elements.
</LI>
<LI><STRONG>document type</STRONG> -
a document type is a unique name that identifies the type of the document being
generated. This term has the same meaning as in the XML specification. Note how a document
has only one document type but this could change during processing since transformation
sheets allow the transformation from one document type into another.
</LI>
</DL>
</DIV>
</DIV>
<H1>XSP Syntax and DTD</H1><DIV id="s1">
<H2>Defined External Entities</H2><DIV id="s2">
<P>The XSP specification defines some external entities that may be used to reduce the
verbosity of XSP document, allowing the inclusion the default DTD via entity mapping. The
standard way to include the XSP DTD into XSP documents is:</P>
<PRE>
<!DOCTYPE page PUBLIC
"-//Apache//DTD XSP//EN"
"http://www.apache.org/1999/XSP/Core"
>
</PRE>
</DIV>
<H2>The XSP Layer 1 Document Type Definition</H2><DIV id="s2">
<P>The XSP DTD was designed with simplicity in mind. The number of elements and attributes
was reduced to a minimum to allow a fast and easy learning process. On the other hand, no
special helper elements were defined in Layer 1 to reduce the spec development time and to
favor early feedback from both implementers and users.</P>
<P>The following is the complete DTD. It must be noted that this DTD can hardly be used
(alone) to validate any XSP due to the fact that XSP are namespace orthogonal and are
designed to include as content mark-up elements that belong to other namespaces.
The XSchema effort will allow multi-namespace validation.</P>
<PRE>
<!ENTITY % elements "xsp:expr |
xsp:element |
xsp:pi |
xsp:comment">
<!ELEMENT xsp:page (xsp:structure?, xsp:logic?, xsp:content)>
<!ATTLIST xsp:page
language CDATA #REQUIRED
indent-result (yes|no) "no"
xmlns:xsp CDATA #FIXED "http://www.apache.org/1999/XSP/Core"
xml:space (default|preserve) "preserve"
>
<!ELEMENT xsp:structure (xsp:dtd?, xsp:include*)>
<!ELEMENT xsp:dtd (#PCDATA)>
<!ELEMENT xsp:include (#PCDATA)>
<!ELEMENT xsp:content (#PCDATA | xsp:logic | %elements;)*>
<!ELEMENT xsp:logic (#PCDATA | xsp:content | %element;)*>
<!ATTLIST xsp:logic xml:space (default|preserve) "preserve">
<!ELEMENT xsp:element
(#PCDATA |
xsp:attribute |
xsp:element |
xsp:logic |
xsp:expr)*>
<!ATTLIST xsp:element
name CDATA #REQUIRED>
<!ELEMENT xsp:attribute (#PCDATA | xsp:expr)>
<!ATTLIST xsp:attribute
name CDATA #REQUIRED
xml:space (default|preserve) "preserve">
<!ELEMENT xsp:pi (#PCDATA | xsp:expr>
<!ELEMENT xsp:comment (#PCDATA | xsp:expr)>
<!ELEMENT xsp:expr (#PCDATA)>
</PRE>
</DIV>
</DIV>
<H1>Example of Usage</H1><DIV id="s1">
<P>Consider the following XML source document:</P>
<PRE>
<?xml version="1.0"?>
<page>
<title>A Simple XSP Page</title>
<p>Hi, I've been hit <counter/> times.</p>
</page>
</PRE>
<P>This simple example shows the power of content/logic/style separation. While the <CODE><title></CODE>
tag has a very special meaning in the <EM>page</EM> document type, indicating the page
title, the <CODE><counter></CODE> element is needs to be dynamically substituted by
the number of times the document has been requested. The logic that performs such behavior
is included in tag itself, but unlike other existing server side technologies, the
behavior is not defined in the page itself, but on the logic sheet that is applied to
evaluate this behavior. In fact, the same page may have a totally different behavior
depending on the logicsheet that is applied to the page. Note that it's beyond the scope
of this specification to define a way to associate transformation sheets to pages. The
associated logicsheet that uses the Java language as logic definition may look like:</P>
<PRE>
<?xml version="1.0"?>
<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Tranform"
xmlns:xsp="http://www.apache.org/1999/XSP/Core"
>
<xsl:template match="page">
<xsp:page language="java">
<xsp:structure>
<xsp:include>java.lang.*</xsp:include>
</xsp:structure>
<xsp:logic>
private static int counter = 0;
private synchronized int currentCount() {
return ++counter;
}
</xsp:logic>
<xsp:content>
<page>
<xsl:apply-templates/>
</page>
</xsp:content>
</xsp:page>
</xsl:template>
<xsl:template match="counter">
<xsp:expr>currentCount()</xsp:expr>
</xsl:template>
<!-- Transcribe everything else verbatim -->
<xsl:template match="*|@*|comment()|pi()|text()">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:transform>
</PRE>
<P>After applying the above logic sheet, the resulting document would be equivalent to the
following:</P>
<PRE>
<xsp:page
result-ns="http://www.dummy.org/SimpleHomepageDTD"
language="java">
<xsp:structure>
<xsp:include>java.lang.*</xsp:include>
</xsp:structure>
<xsp:logic>
private static int counter = 0;
private synchronized int currentCount() {
return ++counter;
}
</xsp:logic>
<xsp:content>
<page>
<title>A Sample XSP Page</title>
<p>
Hi, I've been hit
<xsp:expr>currentCount()</xsp:expr>
times.
</p>
</page>
</xsp:content>
</xsp:page>
</PRE>
<P>At this point it's worth to note that from an XSP point of view, there is
no difference in how the XSP page was created, either directly written or
created with n levels of transformation. So, independently of whether an
XSL stylesheet or a special algorithm was used to generate the final
source code, it may look like this [<EM>Note</EM>: many key issues regarding
servlets were omitted for simplicity and this example must not be
considered mandating as a way to format XSP into servlet source code]</P>
<PRE>
// package automatically created from the full request URL...
package org.apache.cocoon.xsp.example;
// packages imported automatically by source code generator
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import org.w3c.dom.*;
// packages imported due to XSP structure
import java.lang.*;
// class name automatically created from the
// request URI file name...
public class Counter extends HttpServlet {
public void init(ServletConfig config)
throws ServletException
{
super.init(config);
}
private static int counter = 0;
private synchronized int currentCount() {
return ++counter;
}
public void service(HttpServletRequest request,
HttpServletResponse response) throws IOException
{
Document document = parser.createEmptyDocument();
Element root = document.createElement("page");
document.appendChild(root);
Element element_1 = document.createElement("title");
root.appendChild(element_1);
Text textNode_1 = document.createTextNode("A Sample XSP Page");
element_1.appendChild(textNode_1);
Element element_2 = document.createElement("p");
root.appendChild(element_2);
Text textNode_2 = document.createTextNode("Hi, I've been hit ");
element_2.appendChild(textNode_2);
StringBuffer buffer_1 = new StringBuffer.append(currentCount());
Text textNode_3 = document.createTextNode(string_1.toString());
element_2.appendChild(textNode_3);
Text textNode_4 = document.createTextNode("times.");
element_2.appendChild(textNode_4);
// Produce generated DOM tree on output as an XML stream
((Child) document).toXMLString(response.getWriter());
}
}
</PRE>
<P>Note that in this example the XML document is being generated as a <EM>stream</EM>
but a DOM tree is used to create it. The DOM tree can't be passed directly to
the servlet engine for further processing because the current servlet specification
(2.2) does not allow for content generation in a format other than a stream. A rather undesirable consequence
of this is that the resulting XML document would need to be re-parsed in case a final XSL
stylesheet or other post-transformation must be applied.</P>
<P>To solve this problem and speed up the execution on server side XML
processing, the XSP can be compiled into something like this:</P>
<PRE>
// package automatically created from the full request URL...
package org.apache.cocoon.xsp.example;
// packages imported automatically by source code generator
import java.io.*;
import java.util.*;
import org.xml.sax.*;
import org.apache.cocoon.*;
// packages imported due to XSP structure
import java.lang.*;
// class name automatically created from the
// request URI file name...
public class Counter extends AbstractProducer {
private static final char[] chars_0 =
{'A',' ','S','i','m','p','l','e',' ','X','S','P',' ','P','a','g','e'};
private static final char[] chars_1 =
{'H','i',' ','I','\'','v','e',' ','b','e','e','n',' ','h','i','t',' '};
private static final char[] chars_3 =
{' ','t','i','m','e','s'};
private static int counter = 0;
private synchronized int currentCount() {
return ++counter;
}
public void toSAX(Request request, DocumentHandler handler)
throws SAXException
{
handler.startDocument();
handler.startElement("page", null);
handler.startElement("title", null);
handler.characters(chars_0, 0, 17);
handler.endElement("title");
handler.startElement("p", null);
handler.characters(chars_1, 0, 17);
String string_0 = (new StringBuffer.append(
currentCount()
)).toString();
int string_0_length = string_0.length();
char[] chars_2 = char[string_0_length];
string_0.getChars(0, string_0_length, chars_2, 0);
handler.characters(chars_3, 0, 6);
handler.endElement("p");
handler.endElement("page");
handler.endDocument();
}
}
</PRE>
<P>The above shows one of the best features of XSP: output independence.
Since the output objects are not accessible directly from the internal page
logic (unlike other similar technologies, such as JSP), the page compiler can
choose between a great variety of possible ways to generate and forward the
page content. In fact, while the first example uses DOM as a construction set
and a stream as output method, the exact same page is compiled in the second
example to use a SAX event-based model and a document handler as output.</P>
<P>Finally, It is beyond the scope of this specification to define how XSP are translated
into binary code and how these interact with the publishing frameworks that handle
them, but it is mandated that this should be completely transparent to the
page programmer and an XSP page should behave exactly the same (modulo
performance) in every XSP engine.</P>
</DIV>
<H1>XSP and JSP</H1><DIV id="s1">
<P>XSP and JSP might appear as overlapping at a first glance since they both:</P>
<UL>
<LI>follow the <EM>compiled server pages</EM> model, allowing server pages to
be compiled into binary code for faster execution.</LI>
<LI>can be parsed and validated by regular XML parsers</LI>
<LI>can be transformed by XSLT processors</LI>
<LI>aim to programming language abstraction</LI>
</UL>
<P>While these are very important points were the two specifications <EM>do</EM>
overlap, there are significant differences described hereafter.</P>
<H2>Output Exposure</H2><DIV id="s2">
<P>In all different server pages technologies, some data regarding the status
of the resource are available to page logic. Since JSP follow the Servlet API
model, expecting JSP pages to be compiled into servlets, the same data
available to servlet is available to page logic. This allows the page logic to
obtain access to the output channel (being either an OutputStream or a Writer
for servlets).</P>
<P>While this is not a problem for normal web operation when no further server
side processing is performed, for XML generation (where further server side
processing may be needed, depending on client capabilities) the Servlet/JSP
limitations impose on the server pages engine a parsing stage that is
completely avoided in XSP.</P>
<P>In fact, in XSP, page logic has <EM>not</EM> direct access to the output
channel and it's the page compiler responsibility to choose the preferred
method to compile the page, depending on processing needs and server
requirements.</P>
<P>It should be noted how XSP spec provides three different contexts: <CODE>content</CODE>,
<CODE>logic</CODE> and <CODE>eval</CODE>. These three contexts never overlap
since <CODE>content</CODE> is used to create static markup content, <CODE>logic</CODE>
to indicate programming logic and <CODE>eval</CODE> to bridge the two domains,
allowing a logic component to be evaluated without exposing the output channel
to the logic context.</P>
<P>This is a very significant difference since it allows XSP page compiler to <EM>hardcode</EM>
pre-parsed XML content thus removing the request time parsing overhead that
JSP always require.</P>
</DIV>
<H2>Page Readability</H2><DIV id="s2">
<P>For these reasons, XSP, unlike JSP, uses the XML feature of <EM>syntax
orthogonalily</EM> that allows almost any programming language code to be
easily distinguishable between markup elements, while JSP needs to enclose
programming code by <CODE>scriptlet</CODE> tags. The following is an example to show
the different results based on the same logic and code.</P>
<PRE>
<xsp:logic>
e = request.getParameterNames();
if ((e != null) &amp;&amp; (e.hasMoreElements())) {
<xsl:content>
<list>
<title>Servlet Parameters</title>
<xsp:logic>
while (e.hasMoreElements()) {
String k = (String) e.nextElement();
String val = request.getParameter(k);
String vals[] = request.getParameterValues(k);
<xsp:element name="element">
<xsp:attribute name="name">
<xsp:expr>k</xsp:expr>
</xsp:attribute>
<xsp:logic>
for(int i = 0; i &lt; vals.length; i++) {
<item>
<xsp:expr>vals[i]</xsp:expr>
</item>
}
</xsp:logic>
</xsp:element>
}
</xsp:logic>
</list>
</xsl:content>
}
</xsp:logic>
</PRE>
<P>This is the JSP equivalent:</P>
<PRE>
<jsp:scriplet>
e = request.getParameterNames();
if ((e != null) &amp;&amp; (e.hasMoreElements())) {
</jsp:scriplet>
<list>
<title>Servlet Parameters</title>
<jsp:scriplet>
while (e.hasMoreElements()) {
String k = (String) e.nextElement();
String val = request.getParameter(k);
String vals[] = request.getParameterValues(k);
out.println("&lt;element name=\"name\"&gt;");
</jsp:scriplet>
<jsp:expression>k</jsp:expression>
<jsp:scriplet>
out.println("&lt;/element&gt;");
for(int i = 0; i &lt; vals.length; i++) {
</jsp:scriplet>
<item>
<jsp:expression>vals[i]</jsp:expression>
</item>
<jsp:scriplet>}</jsp:scriplet>
<jsp:scriplet>}</jsp:scriplet>
</list>
<jsp:scriplet>}</jsp:scriplet>
</PRE>
<P>It must be noted the use of the <CODE>out</CODE> object in the JSP example while
XSP provide specific tags to avoid that.</P>
</DIV>
</DIV>
</BODY>
<H1>Normative References</H1><DIV id="s1">
<UL class="biblio">
<LI class="biblio"><B>[<A href="http://www.w3.org/TR/REC-DOM-Level-1">DOM</A>]</B> "Document Object Model (DOM) Level 1 Specification", Lauren Wood et al., 1 October 1998</LI>
<LI class="biblio"><B>[<A href="http://www.ietf.org/rfc/rfc2119.txt">RFC2119</A>]</B> "Key words for use in RFCs to Indicate Requirement Levels", S. Bradner, March 1997</LI>
<LI class="biblio"><B>[<A href="http://www.ietf.org/rfc/rfc2376.txt">RFC2376</A>]</B> "XML Media Types", E. Whitehead, M. Murata, July 1998</LI>
<LI class="biblio"><B>[<A href="http://www.ietf.org/rfc/rfc2396.txt">RFC2396</A>]</B> "Uniform Resource Identifiers (URI): Generic Syntax", T. Berners-Lee, R. Fielding, L. Masinter, August 1998</LI>
<LI class="biblio"><B>[<A href="http://www.w3.org/TR/REC-xml">XML</A>]</B> "Extensible Markup Language (XML) 1.0 Specification", T. Bray, J. Paoli, C. M. Sperberg-McQueen, 10 February 1998</LI>
<LI class="biblio"><B>[<A href="http://www.w3.org/TR/REC-xml-names">XMLNAMES</A>]</B> "Namespaces in XML", T. Bray, D. Hollander, A. Layman, 14 January 1999</LI>
<LI class="biblio"><B>[<A href="http://www.w3.org/TR/xslt">XSLT</A>]</B> "XSL Transformations (XSLT) Specification Version 1.0", J. Clark, 16 November 1999</LI>
<LI class="biblio"><B>[<A href="http://www.megginson.com/SAX/">SAX</A>]</B> "The Simple API for XML (Java implementation) version 1.0", D.Megginson</LI>
</UL>
</DIV>
</SPECIFICATION><P class="legal">Copyright © 1999-2000 The Apache Software Foundation.<BR>All rights reserved.</P></BODY></HTML>
|