2002/ws/desc/wsdl20 wsdl20-primer.xml,1.159,1.160

Update of /sources/public/2002/ws/desc/wsdl20
In directory hutz:/tmp/cvs-serv13524

Modified Files:
	wsdl20-primer.xml 
Log Message:
Fixed references to QNames and WSDL 2.0 Core


Index: wsdl20-primer.xml
===================================================================
RCS file: /sources/public/2002/ws/desc/wsdl20/wsdl20-primer.xml,v
retrieving revision 1.159
retrieving revision 1.160
diff -C 2 -d -r1.159 -r1.160
*** wsdl20-primer.xml	26 Apr 2007 13:31:39 -0000	1.159
--- wsdl20-primer.xml	17 May 2007 13:41:29 -0000	1.160
***************
*** 10,14 ****
  <!ENTITY thisdoc.title "&part0.title;">
  	<!ENTITY status SYSTEM "status-primer.xml">
! <!ENTITY prevloc "http://www.w3.org/TR/2006/CR-wsdl20-primer-20060327">
  ]>
  
--- 10,14 ----
  <!ENTITY thisdoc.title "&part0.title;">
  	<!ENTITY status SYSTEM "status-primer.xml">
! <!ENTITY prevloc "http://www.w3.org/TR/2007/WD-wsdl20-primer-20070326">
  ]>
  
***************
*** 251,255 ****
  					</p>
  				</def>
! </gitem><gitem><label><code>targetNamespace= "http://greath.example.com/2004/wsdl/resSvc"</code></label><def><p>This defines the WSDL 2.0 target namespace that we have chosen for the GreatH reservation service, as described above.  Note that this is not an actual XML namespace declaration.  Rather, it is a WSDL 2.0 attribute whose purpose is <emph>analogous</emph> to an XML Schema target namespace.</p></def></gitem><gitem><label><code>xmlns:tns= "http://greath.example.com/2004/wsdl/resSvc"</code></label><def><p>This is an actual XML namespace declaration for use in our GreatH service description.  Note that this is the same URI that was specified above as the value of  the <att>targetNamespace</att> attribute.   This will allow us later to use the  <code>tns:</code>   prefix in QNames, to refer to the WSDL 2.0 target namespace of the GreatH service.  (For more on QNames see <bibref ref="XMLNS"/>   section 3 <xspecref href="http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-qualnames">Qualified Names</xsecref>.)</p></def></gitem></glist></p><p>  Now  we can start describing the GreatH service. </p></div4></div3>
  
  <div3 id="basics-types"><head>Defining Message Types</head><p>We know that the GreatH service will be sending and receiving messages, so a good starting point in describing the service is to define the message types that the service will use.  We'll use XML Schema to do so, because WSDL 2.0 processors are likely to support XML Schema at a minimum.  However, WSDL 2.0 does not prohibit the use of some other schema definition language.</p><p>WSDL 2.0 allows message types to be defined directly within the WSDL 2.0 document, inside the <code>types</code> element, which is a child of the <code>description</code> element.   (Later we'll see how we can provide the type definitions in a separate document, using XML Schema's <code>import</code> mechanism.)    The following schema defines <code>checkAvailability</code>, <code>checkAvailabilityResponse</code> and <code>invalidDataError</code> message types that we'll need.  </p><p>In WSDL 2.0, all normal and fault message types must be defined as single <emph>element</emph> at the topmost level (though of course each element may have any amount of substructure inside it).  Thus, a message type must not directly consist of a sequence of elements or other complex type.  </p><example id="example-initial-types">
--- 251,255 ----
  					</p>
  				</def>
! </gitem><gitem><label><code>targetNamespace= "http://greath.example.com/2004/wsdl/resSvc"</code></label><def><p>This defines the WSDL 2.0 target namespace that we have chosen for the GreatH reservation service, as described above.  Note that this is not an actual XML namespace declaration.  Rather, it is a WSDL 2.0 attribute whose purpose is <emph>analogous</emph> to an XML Schema target namespace.</p></def></gitem><gitem><label><code>xmlns:tns= "http://greath.example.com/2004/wsdl/resSvc"</code></label><def><p>This is an actual XML namespace declaration for use in our GreatH service description.  Note that this is the same URI that was specified above as the value of  the <att>targetNamespace</att> attribute.   This will allow us later to use the  <code>tns:</code>   prefix in QNames, to refer to the WSDL 2.0 target namespace of the GreatH service.  (For more on QNames see <bibref ref="XMLNS"/>   section 3 <xspecref href="http://www.w3.org/TR/2006/REC-xml-names-20060816/#ns-qualnames">Qualified Names</xsecref>.)</p></def></gitem></glist></p><p>  Now  we can start describing the GreatH service. </p></div4></div3>
  
  <div3 id="basics-types"><head>Defining Message Types</head><p>We know that the GreatH service will be sending and receiving messages, so a good starting point in describing the service is to define the message types that the service will use.  We'll use XML Schema to do so, because WSDL 2.0 processors are likely to support XML Schema at a minimum.  However, WSDL 2.0 does not prohibit the use of some other schema definition language.</p><p>WSDL 2.0 allows message types to be defined directly within the WSDL 2.0 document, inside the <code>types</code> element, which is a child of the <code>description</code> element.   (Later we'll see how we can provide the type definitions in a separate document, using XML Schema's <code>import</code> mechanism.)    The following schema defines <code>checkAvailability</code>, <code>checkAvailabilityResponse</code> and <code>invalidDataError</code> message types that we'll need.  </p><p>In WSDL 2.0, all normal and fault message types must be defined as single <emph>element</emph> at the topmost level (though of course each element may have any amount of substructure inside it).  Thus, a message type must not directly consist of a sequence of elements or other complex type.  </p><example id="example-initial-types">
***************
*** 482,486 ****
    
  </description>]]></eg>
! 				</example><div4 id="example-initial-service-explanation"><head>Explanation of Example</head><glist><gitem><label><code>&lt;service name="reservationService"</code></label><def><p>This defines a name for this service, which must be unique among service names in the WSDL 2.0 target namespace.   The name attribute is required.  It allows URIs to be created that identify components in WSDL 2.0 description.  (See <emph>WSDL 2.0 Core Language</emph> <bibref ref="WSDL-PART1"/> appendix C <xspecref href="http://www.w3.org/TR/2004/WD-wsdl20-20040803/#wsdl-uri-references">URI References for WSDL 2.0 constructs</xspecref>.)</p></def></gitem><gitem><label><code>interface="tns:reservationInterface"&gt;</code></label><def><p>This specifies the name of the previously defined interface that these service endpoints will support.  </p></def></gitem><gitem><label><code>&lt;endpoint name="reservationEndpoint"</code></label><def><p>This defines an endpoint for the service, and a name for this endpoint, which must be uniqu within this service.  </p></def></gitem><gitem><label><code>binding="tns:reservationSOAPBinding"</code></label><def><p>This specifies the name of the previously defined binding to be used by this endpoint.  </p></def></gitem><gitem><label><code>address ="http://greath.example.com/2004/reservation"/&gt;</code></label><def><p>This specifies the physical address at which this service can be accessed using the binding specified by the <att>binding</att> attribute.</p></def></gitem></glist><p>That's it!  Well, almost.  </p></div4></div3>
  				
  				<div3 id="basics-documentation"><head>Documenting the Service</head><p>As we have seen, a WSDL 2.0 document is inherently only a <emph>partial</emph> description of a service.  Although it captures the basic mechanics of interacting with the service -- the message types, transmission protocols, service location, etc. -- in general, additional documentation will need to explain other application-level requirements for its use.  For example, such documentation should explain the purpose and use of the service, the meanings of all messages, constraints on their use, and the sequence in which operations should be invoked.</p><p>The <code>documentation</code> element allows the WSDL 2.0 author to include some human-readable documentation inside a WSDL 2.0 document.   It is also a convenient place to reference any additional external documentation that a client developer may need in order to use the service.   It can appear in a number of places in a WSDL 2.0 document (see <specref ref="wsdl-infoset-diagram/>), though in this example we have only demonstrated its use at the beginning.</p><example id="example-initial-documentation">
--- 482,486 ----
    
  </description>]]></eg>
! 				</example><div4 id="example-initial-service-explanation"><head>Explanation of Example</head><glist><gitem><label><code>&lt;service name="reservationService"</code></label><def><p>This defines a name for this service, which must be unique among service names in the WSDL 2.0 target namespace.   The name attribute is required.  It allows URIs to be created that identify components in WSDL 2.0 description.  (See <emph>WSDL 2.0 Core Language</emph> <bibref ref="WSDL-PART1"/> appendix C <xspecref href="&w3c-designation-part1;/#wsdl-uri-references">URI References for WSDL 2.0 constructs</xspecref>.)</p></def></gitem><gitem><label><code>interface="tns:reservationInterface"&gt;</code></label><def><p>This specifies the name of the previously defined interface that these service endpoints will support.  </p></def></gitem><gitem><label><code>&lt;endpoint name="reservationEndpoint"</code></label><def><p>This defines an endpoint for the service, and a name for this endpoint, which must be unique within this service  </p></def></gitem><gitem><label><code>binding="tns:reservationSOAPBinding"</code></label><def><p>This specifies the name of the previously defined binding to be used by this endpoint.  </p></def></gitem><gitem><label><code>address ="http://greath.example.com/2004/reservation"/&gt;</code></label><def><p>This specifies the physical address at which this service can be accessed using the binding specified by the <att>binding</att> attribute.</p></def></gitem></glist><p>That's it!  Well, almost.  </p></div4></div3>
  				
  				<div3 id="basics-documentation"><head>Documenting the Service</head><p>As we have seen, a WSDL 2.0 document is inherently only a <emph>partial</emph> description of a service.  Although it captures the basic mechanics of interacting with the service -- the message types, transmission protocols, service location, etc. -- in general, additional documentation will need to explain other application-level requirements for its use.  For example, such documentation should explain the purpose and use of the service, the meanings of all messages, constraints on their use, and the sequence in which operations should be invoked.</p><p>The <code>documentation</code> element allows the WSDL 2.0 author to include some human-readable documentation inside a WSDL 2.0 document.   It is also a convenient place to reference any additional external documentation that a client developer may need in order to use the service.   It can appear in a number of places in a WSDL 2.0 document (see <specref ref="wsdl-infoset-diagram/>), though in this example we have only demonstrated its use at the beginning.</p><example id="example-initial-documentation">
***************
*** 3577,3845 ****
  		<!-- ********************************** References ***************** -->
  		
! 		<div1 id="References">
! 			<head>References</head>
! 			<div2 id="Normative-References">
! 				<head>Normative References</head>
! 				<blist>
! 					<bibl id="RFC2119" key="IETF RFC 2119" href="http://www.ietf.org/rfc/rfc2119.txt">
! 						<titleref>Key words for use in RFCs to Indicate Requirement
! 	    Levels</titleref>, S. Bradner, Author. Internet Engineering
! 	    Task Force, March 1997. Available at
! 	    http://www.ietf.org/rfc/rfc2119.txt.
! 	  </bibl>
! 
! 	  <bibl id="RFC3986" key="IETF RFC 3986" 
! 	    href="http://www.ietf.org/rfc/rfc3986.txt">
! 	    <titleref>Uniform Resource Identifiers (URI): Generic
! 	    Syntax</titleref>, T. Berners-Lee, R. Fielding, L. Masinter,
! 	    Authors. Internet Engineering Task Force, January 2005. Available at http://www.ietf.org/rfc/rfc3986.txt.
! 	  </bibl>
!           <bibl id="RFC3987" key="IETF RFC 3987"
!             href="http://www.ietf.org/rfc/rfc3987.txt">
!             <titleref>Internationalized Resource Identifiers
!             (IRIs)</titleref>, M. Duerst, M. Suignard,
!             Authors. Internet Engineering Task Force, January
!             2005. Available at http://www.ietf.org/rfc/rfc3987.txt.
! 	  </bibl>
! 
!           <bibl id="XML10" key="XML 1.0" href="http://www.w3.org/TR/2006/REC-xml-20060816/">
!             <titleref>Extensible Markup Language (XML) 1.0 (Fourth
! 	    Edition)</titleref>, T. Bray, J. Paoli,
! 	    C. M. Sperberg-McQueen, E. Maler, and F. Yergeau, Editors. World Wide
! 	    Web Consortium, 16 August 2006. This version of the XML 1.0 Recommendation is
! 	    http://www.w3.org/TR/2006/REC-xml-20060816/. The <loc href="http://www.w3.org/TR/REC-xml">latest version of "Extensible Markup Language (XML) 1.0"</loc> is available at http://www.w3.org/TR/REC-xml.
! 	  </bibl>
! 	            <bibl id="XMLInfoSet" key="XML Information Set" href="http://www.w3.org/TR/2004/REC-xml-infoset-20040204">
!             <titleref>XML Information Set (Second Edition)</titleref>, J. Cowan and R.
! 	    Tobin, Editors. World Wide Web Consortium, 4 February 2004.
! 	    This version of the XML Information Set Recommendation is
! 	    http://www.w3.org/TR/2004/REC-xml-infoset-20040204. The <loc href="http://www.w3.org/TR/xml-infoset">latest version of
! 	      XML Information Set</loc> is available at
! 	    http://www.w3.org/TR/xml-infoset.
! 	  </bibl>	  
! 					<bibl id="XMLNS" key="XML Namespaces" href="http://www.w3.org/TR/2006/REC-xml-names-20060816">
! 						<titleref>Namespaces in XML (Second Edition)</titleref>, T. Bray, D.
! 	    Hollander, A. Layman, and R. Tobin, Editors. World Wide Web
! 	    Consortium, 16 August 2006. This version of the XML
! 	    Information Set Recommendation is
! 	    http://www.w3.org/TR/2006/REC-xml-names-20060816. The <loc href="http://www.w3.org/TR/REC-xml-names">latest version of
! 	    Namespaces in XML</loc> is available at
! 	    http://www.w3.org/TR/REC-xml-names.
! 	  </bibl>
! 	  <bibl id="XMLSchemaP1" key="XML Schema: Structures"
! 	    href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/">	    
! 	    <titleref>XML Schema Part 1: Structures Second Edition</titleref>,
! 	    H. Thompson, D. Beech, M. Maloney, and N. Mendelsohn,
! 	    Editors. World Wide Web Consortium, 28 October 2004. This version
! 	    of the XML Schema Part 1 Recommendation is
! 	    http://www.w3.org/TR/2004/REC-xmlschema-1-20041028. The <loc
! 	    href="http://www.w3.org/TR/xmlschema-1/">latest version of
! 	    XML Schema Part 1</loc> is available at
! 	    http://www.w3.org/TR/xmlschema-1.
! 	  </bibl>
! 	  <bibl key="XML Schema: Datatypes"
! 	    id="XMLSchemaP2"
! 	    href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/">
! 	    <titleref>XML Schema Part 2: Datatypes Second Edition</titleref>, P. Byron
! 	    and A. Malhotra, Editors. World Wide Web Consortium, 28
! 	    October 2004.  This version of the XML Schema Part 2 Recommendation is
! 	    http://www.w3.org/TR/2004/REC-xmlschema-2-20041028. The <loc
! 	    href='http://www.w3.org/TR/xmlschema-2/'>latest version of
! 	    XML Schema Part 2</loc> is available at
! 	    http://www.w3.org/TR/xmlschema-2.
! 	  </bibl>
! 					
! 					<bibl key="IETF RFC 3023" href="http://www.ietf.org/rfc/rfc3023.txt" id="RFC3023">IETF
! 	  "XML Media Types", M. Murata, S. St. Laurent, D. Kohn, Authors. Internet Engineering Task Force, January
! 	  2001. Available at http://www.ietf.org/rfc/rfc3023.txt.</bibl>
! 
! 					<bibl key="WSDL 2.0 Core" href="&w3c-designation-part1;" id="WSDL-PART1">
! 						<titleref>&part1.title;</titleref>, R. Chinnici, J-J.
!             Moreau, A. Ryman, S. Weerawarana, Editors. World Wide Web Consortium,
!             &draft.day; &draft.month; &draft.year;. This version of
!             the "&part1.title;" Specification is available is available at
!             &w3c-designation-part1;. The <loc href="&part1.latest;">latest version of
!             "&part1.title;"</loc> is available at &part1.latest;. </bibl>
! 
! 	  <bibl key="WSDL 2.0 Adjuncts" href="&w3c-designation-part2;"
! 	  	id="WSDL-PART2">
! 	  	<titleref>
! 		  &part2.title;
! 	  	</titleref>, R. Chinnici, H. Haas, A. Lewis, J-J.
! 	  	Moreau, D. Orchard, S. Weerawarana, Editors.  World
! 	  	Wide Web Consortium, &draft.day; &draft.month;
! 	  	&draft.year;.  This version of the "&part2.title;"
! 	  	Specification is available at
! 	  	&w3c-designation-part2;. The
! 	  	<loc href="&part2.latest;">
! 	  		latest version of "&part2.title;"
! 	  	</loc>
! 	  	is available at
! 	  	&part2.latest;.
! 	  </bibl>
! 
! 	  <bibl key="WSDL 2.0 SOAP 1.1 Binding" href="&w3c-designation-soap11binding;"
! 	  	id="WSDL-SOAP11">
! 	  	<titleref>
! 		  &soap11binding.title;
! 	  	</titleref>, A. Vedamuthu, Editor.  World
! 	  	Wide Web Consortium, &draft.day; &draft.month;
! 	  	&draft.year;.  This version of the "&soap11binding.title;"
! 	  	Specification is available at
! 	  	&w3c-designation-soap11binding;. The
! 	  	<loc href="&soap11binding.latest;">
! 	  		latest version of "&soap11binding.title;"
! 	  	</loc>
! 	  	is available at
! 	  	&soap11binding.latest;.
! 	  </bibl>
! 
! 	  <bibl key="WSDL 2.0 RDF Mapping" href="&w3c-designation-rdf;" id="RDFmap">
! 	    <titleref>&rdf.title;</titleref>, J. Kopecký, B. Parsia,
! 	    Editors. World Wide Web Consortium, &draft.day;
! 	    &draft.month; &draft.year;. This version of the
! 	    "&rdf.title;" Specification is available at
! 	    &w3c-designation-rdf;. The <loc href="&rdf.latest;">latest
! 	    version of "&rdf.title;"</loc> is available at
! 	    &rdf.latest;.
! 	  </bibl>
! 
! 	  <bibl id="webarch" key="Web Architecture" href="http://www.w3.org/TR/2004/REC-webarch-20041215/">
! 	  <titleref>Architecture of the World Wide Web, 
! 						Volume One</titleref>, Ian Jacobs,  Norman Walsh, Editors. W3C Recommendation, 15 December, 2004.  Available at
! 	    http://www.w3.org/TR/2004/REC-webarch-20041215/ .
! 	  </bibl>
! 
! 				<bibl id="wsarch" key="WS Architecture" href="http://www.w3.org/TR/2004/REC-webarch-20041215/">
! 	  <titleref>Web Services Architecture</titleref>,     David Booth, 
!     Hugo Haas,
!     Francis McCabe, 
!     Eric Newcomer, 
!     Michael Champion,
!     Chris Ferris,
!     David Orchard, Editors. W3C Working
!     Group Note, 11 February 2004.  
! 	 Available at
! 	    http://www.w3.org/TR/2004/NOTE-ws-arch-20040211/ .
! 	  </bibl>
       
! 	  <bibl key="WS Glossary"  href="http://www.w3.org/TR/2004/NOTE-ws-gloss-20040211/" id="WSAGLOSS">
!           <titleref>Web Services Glossary</titleref>,
!     Hugo Haas,
!     Allen Brown, Editors. W3C Working Group Note, 11 February 2004.  
! 	 Available at
! 	    http://www.w3.org/TR/2004/NOTE-ws-gloss-20040211/ .     
! 		</bibl>
! 		
! 	  <bibl key="Describing Media Content of Binary Data in XML"
! 	  	href="http://www.w3.org/TR/xml-media-types/" id="DESCRIBEMEDIA">
! 	  	<titleref>
! 	  		Describing Media Content of Binary Data in XML
! 	  	</titleref>, Anish Karmarkar, Ümit Yalçınalp, Editors. W3C Working Group
! 	  	Note 4 May 2005. Available at
! 	  	http://www.w3.org/TR/xml-media-types/
! 
! 	  </bibl>
! 
! 
! 
! 				</blist>
! 			</div2>
! 			
! 			<div2 id="Informative-References">
! 				<head>Informative References</head>
! 
! 				<blist>
! 
! 					<bibl id="RFC2606" key="IETF RFC 2606" href="http://www.ietf.org/rfc/rfc2606.txt">
! 						<titleref>Reserved Top Level DNS Names</titleref>, D. Eastlake, A. Panitz, Authors. Network Working Group, Internet Engineering
! 	    Task Force, June 1999. Available at
! 	    http://www.ietf.org/rfc/rfc2606.txt.
! 	  </bibl><bibl id="RFC2616" key="IETF RFC 2616" href="http://www.ietf.org/rfc/rfc2616.txt">
! 						<titleref>Hypertext Transfer Protocol --
! 	    HTTP/1.1</titleref>, R. Fielding, J. Gettys, J. Mogul,
! 	    H. Frystyk, L. Masinter, P. Leach, T. Berners-Lee,
! 	    Authors. Internet Engineering Task Force, June
! 	    1999. Available at http://www.ietf.org/rfc/rfc2616.txt.
! 	  </bibl>
!           <bibl id="RFC2818" key="IETF RFC 2818" href="http://www.ietf.org/rfc/rfc2818.txt">
!             <titleref>HTTP Over TLS</titleref>,
! 	    E. Rescorla, Author. Internet Engineering
! 	    Task Force, May 2000. Available at
! 	    http://www.ietf.org/rfc/rfc2818.txt.
! 	  </bibl>
! 					<bibl id="SOAP11" key="SOAP 1.1" href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">
! 						<titleref>Simple Object Access Protocol (SOAP)
! 	    1.1</titleref>, D. Box, D. Ehnebuske, G. Kakivaya,
! 	    A. Layman, N. Mendelsohn, H. Frystyk Nielsen, S. Thatte,
! 	    D. Winer, Editors. World Wide Web Consortium, 8 May
! 	    2000. This version of the Simple Object Access Protocol 1.1
! 	    Note is http://www.w3.org/TR/2000/NOTE-SOAP-20000508.
! 	  </bibl>
! 					<bibl id="SOAP12-PART1" key="SOAP 1.2 Part 1: Messaging Framework" href="http://www.w3.org/TR/2003/REC-soap12-part1-20030624/">
! 						<titleref>SOAP Version 1.2 Part 1: Messaging
! 	    Framework</titleref>, M. Gudgin, M. Hadley, N. Mendelsohn,
! 	    J-J. Moreau, H. Frystyk Nielsen, Editors. World Wide Web
! 	    Consortium, 24 June 2003. This version of the "SOAP Version
! 	    1.2 Part 1: Messaging Framework" Recommendation is
! 	    http://www.w3.org/TR/2003/REC-soap12-part1-20030624/. The
! 	    <loc href="http://www.w3.org/TR/soap12-part1/">latest
! 	    version of "SOAP Version 1.2 Part 1: Messaging
! 	    Framework"</loc> is available at
! 	    http://www.w3.org/TR/soap12-part1/.
! 	  </bibl>
! 	
! 	  <bibl id="SOAP12-PART2" key="SOAP 1.2 Part 2: Adjuncts"
! 	   
! 	   
! 	   
! 	    href="http://www.w3.org/TR/2003/REC-soap12-part2-20030624/">
  	    <titleref>SOAP Version 1.2 Part 2: Adjuncts</titleref>,
  	    M. Gudgin, M. Hadley, N. Mendelsohn, J-J. Moreau, and
  	    H. Frystyk Nielsen, Editors. World Wide Web Consortium, 7
! 	    May 2003. This version of the "SOAP Version 1.2 Part 2:
! 	    Adjuncts" Recommendation is
! 	    http://www.w3.org/TR/2003/REC-soap12-part2-20030624/. The
  	    <loc href="http://www.w3.org/TR/soap12-part2/">latest
  	    version of "SOAP Version 1.2 Part 2: Adjuncts"</loc> is
  	    available at http://www.w3.org/TR/soap12-part2/.
  	  </bibl>
! 
! 
! 					<bibl key="SOAP MTOM" id="SOAP-MTOM" href="http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/">
! 						<titleref>
! 							SOAP Message Transmission Optimization
! 							Mechanism
! 						</titleref>, M. Gudgin, N. Mendelsohn, M. Nottingham, H.
! 						Ruellan, Editors. World Wide Web Consortium, 25
! 						January, 2005. This version of SOAP Message
! 						Transmission Optimization Mechanism is available
! 						at
! 						<loc href="http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/"/>
! 							http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/.
! 					</bibl>
! 
! 					<bibl key="WSD Requirements" href="http://www.w3.org/TR/2002/WD-ws-desc-reqs-20021028" id="WSDReqs">
! 						<titleref>Web Services Description
  	    Requirements</titleref>, J. Schlimmer, Editor. World Wide
  	    Web Consortium, 17 October 2002. This version of the Web
  	    Services Description Requirements document is
! 	    http://www.w3.org/TR/2002/WD-ws-desc-reqs-20021028. The <loc href="http://www.w3.org/TR/ws-desc-reqs/">latest version of
! 	    Web Services Description Requirements</loc> is available at
! 	    http://www.w3.org/TR/ws-desc-reqs.
  	  </bibl>
! 
! 					<bibl key="WS-Addressing" href="http://www.w3.org/TR/ws-addr-core/" id="WS-A">
! 						<titleref>Web Services Addressing 1.0 - Core</titleref>, Martin Gudgin, Microsoft Corp,  Marc Hadley, Sun Microsystems, Inc, Editor. World Wide
! 	    Web Consortium, 17 August 2005. This version of the Web Services Addressing 1.0 - Core document is available at http://www.w3.org/TR/ws-addr-core/. The <loc href="http://www.w3.org/TR/ws-addr-core/">latest version of
! 	    Web Services Description Requirements</loc> is available at
! 	    http://www.w3.org/TR/ws-addr-core/.
  	  </bibl>
! 
! 					<bibl key="XPointer Framework" href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/" id="XPTR">
! 						<titleref>XPointer Framework</titleref>,Paul Grosso, Eve
! 	    Maler, Jonathan Marsh, Norman Walsh, Editors. World Wide Web
! 	    Consortium, 25 March 2003.  This version of the XPointer
! 	    Framework Proposed Recommendation is
  	    http://www.w3.org/TR/2003/REC-xptr-framework-20030325/ The
  	    <loc href="http://www.w3.org/TR/xptr-framework/">latest
--- 3577,3817 ----
  		<!-- ********************************** References ***************** -->
  		
!  <div1 id="References">
!    <head>References</head>
!    <div2 id="Normative-References">
!      <head>Normative References</head>
!      <blist>
!        <bibl id="RFC2119" key="IETF RFC 2119" href="http://www.ietf.org/rfc/rfc2119.txt">
! 	 <titleref>Key words for use in RFCs to Indicate Requirement
! 	 Levels</titleref>, S. Bradner, Author. Internet Engineering
! 	 Task Force, March 1997. Available at
! 	 http://www.ietf.org/rfc/rfc2119.txt</bibl>
!        <bibl id="RFC3023" key="IETF RFC 3023" href="http://www.ietf.org/rfc/rfc3023.txt">
! 	 <titleref>XML Media Types</titleref>, M. Murata,
! 	 S. St. Laurent, D. Kohn, Authors. Internet Engineering Task
! 	 Force, January 2001. Available at
! 	 http://www.ietf.org/rfc/rfc3023.txt</bibl>
!        <bibl id="RFC3986" key="IETF RFC 3986" href="http://www.ietf.org/rfc/rfc3986.txt">
!          <titleref>Uniform Resource Identifier (URI): Generic
!          Syntax</titleref>, T. Berners-Lee, R. Fielding, L. Masinter,
!          Authors. Internet Engineering Task Force, January
!          2005. Available at http://www.ietf.org/rfc/rfc3986.txt</bibl>
!        <bibl id="RFC3987" key="IETF RFC 3987" href="http://www.ietf.org/rfc/rfc3987.txt">
!          <titleref>Internationalized Resource Identifiers
!          (IRIs)</titleref>, M. Duerst, M. Suignard, Authors. Internet
!          Engineering Task Force, January 2005. Available at
!          http://www.ietf.org/rfc/rfc3987.txt</bibl>
!        <bibl id="XML10" key="XML 1.0" href="http://www.w3.org/TR/2006/REC-xml-20060816">
! 	 <titleref>Extensible Markup Language (XML) 1.0 (Fourth
! 	 Edition)</titleref>, T.  Bray, J. Paoli,
! 	 C. M. Sperberg-McQueen, and E. Maler, Editors. World Wide Web
! 	 Consortium, 10 February 1998, revised 16 August 2006. This
! 	 version of the XML 1.0 Recommendation is
! 	 http://www.w3.org/TR/2006/REC-xml-20060816. The <loc
! 	 href="http://www.w3.org/TR/xml">latest version of XML
! 	 1.0</loc> is available at http://www.w3.org/TR/xml.
!        </bibl>
!        <bibl id="XMLInfoSet" key="XML Information Set"
! 	     href="http://www.w3.org/TR/2004/REC-xml-infoset-20040204/">
! 	 <titleref>XML Information Set (Second Edition)</titleref>,
! 	 J. Cowan and R.  Tobin, Editors. World Wide Web Consortium,
! 	 24 October 2001, revised 4 February 2004. This version of the
! 	 XML Information Set Recommendation is
! 	 http://www.w3.org/TR/2004/REC-xml-infoset-20040204/. The <loc
! 	 href="http://www.w3.org/TR/xml-infoset">latest version of XML
! 	 Information Set</loc> is available at
! 	 http://www.w3.org/TR/xml-infoset.
!        </bibl>
!        <bibl id="XMLNS" key="XML Namespaces"
! 	     href="http://www.w3.org/TR/2006/REC-xml-names-20060816/">
! 	 <titleref>Namespaces in XML 1.0 (Second Edition)</titleref>,
! 	 T. Bray, D. Hollander, A. Layman, and R. Tobin,
! 	 Editors. World Wide Web Consortium, 14 January 1999, revised
! 	 16 August 2006. This version of Namespaces in XML 1.0
! 	 Recommendation is
! 	 http://www.w3.org/TR/2006/REC-xml-names-20060816/. The <loc
! 	 href="http://www.w3.org/TR/xml-names/">latest version of
! 	 Namespaces in XML</loc> is available at
! 	 http://www.w3.org/TR/xml-names.
!        </bibl>
!        <bibl id="XMLSchemaP1" key="XML Schema Structures"
! 	     href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/">
! 	 <titleref>XML Schema Part 1: Structures Second
! 	 Edition</titleref>, H.  Thompson, D. Beech, M. Maloney, and
! 	 N. Mendelsohn, Editors. World Wide Web Consortium, 2 May
! 	 2001, revised 28 October 2004. This version of the XML Schema
! 	 Part 1 Recommendation is
! 	 http://www.w3.org/TR/2004/REC-xmlschema-1-20041028. The <loc
! 	 href="http://www.w3.org/TR/xmlschema-1/">latest version of
! 	 XML Schema Part 1</loc> is available at
! 	 http://www.w3.org/TR/xmlschema-1.
!        </bibl>
!        <bibl key="XML Schema Datatypes" id="XMLSchemaP2"
! 	     href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/">
! 	 <titleref>XML Schema Part 2: Datatypes Second
! 	 Edition</titleref>, P. Byron and A. Malhotra, Editors. World
! 	 Wide Web Consortium, 2 May 2001, revised 28 October
! 	 2004. This version of the XML Schema Part 2 Recommendation is
! 	 http://www.w3.org/TR/2004/REC-xmlschema-2-20041028. The <loc
! 	 href="http://www.w3.org/TR/xmlschema-2/">latest version of
! 	 XML Schema Part 2</loc> is available at
! 	 http://www.w3.org/TR/xmlschema-2.
!        </bibl>
!        <bibl key="WSDL 2.0 Core" href="&w3c-designation-part1;" id="WSDL-PART1">
! 	 <titleref>&part1.title;</titleref>, R. Chinnici, J-J.
! 	 Moreau, A. Ryman, S. Weerawarana, Editors. World Wide Web
! 	 Consortium, &draft.day; &draft.month; &draft.year;. This
! 	 version of the "&part1.title;" Specification is available is
! 	 available at &w3c-designation-part1;. The <loc
! 	 href="&part1.latest;">latest version of "&part1.title;"</loc>
! 	 is available at &part1.latest;.
!        </bibl>
!        <bibl key="WSDL 2.0 Adjuncts" href="&w3c-designation-part2;"
! 	     id="WSDL-PART2">
! 	 <titleref>&part2.title;</titleref>, R. Chinnici, H. Haas,
! 	 A. Lewis, J-J.  Moreau, D. Orchard, S. Weerawarana, Editors.
! 	 World Wide Web Consortium, &draft.day; &draft.month;
! 	 &draft.year;.  This version of the "&part2.title;"
! 	 Specification is available at &w3c-designation-part2;. The
! 	 <loc href="&part2.latest;">latest version of
! 	 "&part2.title;"</loc> is available at &part2.latest;.
!        </bibl>       
!        <bibl key="WSDL 2.0 SOAP 1.1 Binding" href="&w3c-designation-soap11binding;"
! 	     id="WSDL-SOAP11">
! 	 <titleref>&soap11binding.title;</titleref>, A. Vedamuthu,
! 	 Editor.  World Wide Web Consortium, &draft.day; &draft.month;
! 	 &draft.year;.  This version of the "&soap11binding.title;"
! 	 Specification is available at
! 	 &w3c-designation-soap11binding;. The <loc
! 	 href="&soap11binding.latest;">latest version of
! 	 "&soap11binding.title;"</loc> is available at
! 	 &soap11binding.latest;.
!        </bibl>       
!        <bibl key="WSDL 2.0 RDF Mapping" href="&w3c-designation-rdf;" id="RDFmap">
! 	 <titleref>&rdf.title;</titleref>, J. Kopecký, B. Parsia,
! 	 Editors. World Wide Web Consortium, &draft.day; &draft.month;
! 	 &draft.year;. This version of the "&rdf.title;" Specification
! 	 is available at &w3c-designation-rdf;. The <loc
! 	 href="&rdf.latest;">latest version of "&rdf.title;"</loc> is
! 	 available at &rdf.latest;.
!        </bibl>
!        <bibl id="webarch" key="Web Architecture" href="http://www.w3.org/TR/2004/REC-webarch-20041215/">
! 	 <titleref>Architecture of the World Wide Web, Volume
! 	 One</titleref>, Ian Jacobs, Norman Walsh, Editors. W3C
! 	 Recommendation, 15 December, 2004.  Available at
! 	 http://www.w3.org/TR/2004/REC-webarch-20041215/ .
!        </bibl>      
!        <bibl id="wsarch" key="WS Architecture" href="http://www.w3.org/TR/2004/REC-webarch-20041215/">
! 	  <titleref>Web Services Architecture</titleref>, David Booth,
! 	  et al., Editors. W3C Working Group Note, 11 February 2004.
! 	  Available at
! 	  http://www.w3.org/TR/2004/NOTE-ws-arch-20040211/ .
!        </bibl>       
!        <bibl key="WS Glossary"  href="http://www.w3.org/TR/2004/NOTE-ws-gloss-20040211/" id="WSAGLOSS">
!           <titleref>Web Services Glossary</titleref>, Hugo Haas, Allen
!           Brown, Editors. W3C Working Group Note, 11 February 2004.
!           Available at
!           http://www.w3.org/TR/2004/NOTE-ws-gloss-20040211/ .
!        </bibl>       
!        <bibl key="Describing Media Content of Binary Data in XML"
! 	     href="http://www.w3.org/TR/xml-media-types/" id="DESCRIBEMEDIA">
! 	 <titleref>Describing Media Content of Binary Data in
! 	 XML</titleref>, Anish Karmarkar, Ümit Yalçınalp, Editors. W3C
! 	 Working Group Note 4 May 2005. Available at
! 	 http://www.w3.org/TR/xml-media-types/
!        </bibl>
!      </blist>
!    </div2>
!    
!    <div2 id="Informative-References">
!      <head>Informative References</head>
       
!      <blist>
!        <bibl id="RFC2606" key="IETF RFC 2606" href="http://www.ietf.org/rfc/rfc2606.txt">
! 	 <titleref>Reserved Top Level DNS Names</titleref>,
! 	 D. Eastlake, A. Panitz, Authors. Network Working Group,
! 	 Internet Engineering Task Force, June 1999. Available at
! 	 http://www.ietf.org/rfc/rfc2606.txt.
!        </bibl>
!        <bibl id="RFC2616" key="IETF RFC 2616"
! 	 href="http://www.ietf.org/rfc/rfc2616.txt">
! 	 <titleref>Hypertext Transfer Protocol -- HTTP/1.1</titleref>,
! 	 R. Fielding, J. Gettys, J. Mogul, H. Frystyk, L. Masinter,
! 	 P. Leach, T. Berners-Lee, Authors. Internet Engineering Task
! 	 Force, June 1999. Available at
! 	 http://www.ietf.org/rfc/rfc2616.txt.
!        </bibl>
!        <bibl id="RFC2818" key="IETF RFC 2818" href="http://www.ietf.org/rfc/rfc2818.txt">
! 	 <titleref>HTTP Over TLS</titleref>, E. Rescorla,
! 	 Author. Internet Engineering Task Force, May 2000. Available
! 	 at http://www.ietf.org/rfc/rfc2818.txt.
!        </bibl>
!        <bibl id="SOAP11" key="SOAP 1.1" href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">
! 	 <titleref>Simple Object Access Protocol (SOAP)
! 	 1.1</titleref>, D. Box, D. Ehnebuske, G. Kakivaya, A. Layman,
! 	 N. Mendelsohn, H. Frystyk Nielsen, S. Thatte, D. Winer,
! 	 Editors. World Wide Web Consortium, 8 May 2000. This version
! 	 of the Simple Object Access Protocol 1.1 Note is
! 	 http://www.w3.org/TR/2000/NOTE-SOAP-20000508.
!        </bibl>
!        <bibl id="SOAP12-PART1" key="SOAP 1.2 Part 1: Messaging Framework" href="http://www.w3.org/TR/2007/REC-soap12-part1-20070427/">
! 	 <titleref>SOAP Version 1.2 Part 1: Messaging Framework
! 	 (Second Edition)</titleref>, M. Gudgin, M. Hadley,
! 	 N. Mendelsohn, J-J. Moreau, H. Frystyk Nielsen,
! 	 Editors. World Wide Web Consortium, 24 June 2003, revised 27
! 	 April 2007. This version of the "SOAP Version 1.2 Part 1:
! 	 Messaging Framework" Recommendation is
! 	 http://www.w3.org/TR/2007/REC-soap12-part1-20070427/. The
! 	 <loc href="http://www.w3.org/TR/soap12-part1/">latest version
! 	 of "SOAP Version 1.2 Part 1: Messaging Framework"</loc> is
! 	 available at http://www.w3.org/TR/soap12-part1/.
!        </bibl>       
!        <bibl id="SOAP12-PART2" key="SOAP 1.2 Part 2: Adjuncts"
! 	    href="http://www.w3.org/TR/2007/REC-soap12-part2-20070427/">
  	    <titleref>SOAP Version 1.2 Part 2: Adjuncts</titleref>,
  	    M. Gudgin, M. Hadley, N. Mendelsohn, J-J. Moreau, and
  	    H. Frystyk Nielsen, Editors. World Wide Web Consortium, 7
! 	    May 2003, revised 27 April 2007. This version of the "SOAP
! 	    Version 1.2 Part 2: Adjuncts" Recommendation is
! 	    http://www.w3.org/TR/2007/REC-soap12-part2-20070427/. The
  	    <loc href="http://www.w3.org/TR/soap12-part2/">latest
  	    version of "SOAP Version 1.2 Part 2: Adjuncts"</loc> is
  	    available at http://www.w3.org/TR/soap12-part2/.
  	  </bibl>
! 	  <bibl key="SOAP MTOM" id="SOAP-MTOM" href="http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/">
! 	    <titleref>
! 	      SOAP Message Transmission Optimization Mechanism
! 	      </titleref>, M. Gudgin, N. Mendelsohn, M. Nottingham, H.
! 	      Ruellan, Editors. World Wide Web Consortium, 25 January,
! 	      2005. This version of SOAP Message Transmission
! 	      Optimization Mechanism is available at
! 	      <loc href="http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/"/>
! 	      http://www.w3.org/TR/2005/REC-soap12-mtom-20050125/.
! 	  </bibl>
! 	  <bibl key="WSD Requirements" href="http://www.w3.org/TR/2002/WD-ws-desc-reqs-20021028" id="WSDReqs">
! 	    <titleref>Web Services Description
  	    Requirements</titleref>, J. Schlimmer, Editor. World Wide
  	    Web Consortium, 17 October 2002. This version of the Web
  	    Services Description Requirements document is
! 	    http://www.w3.org/TR/2002/WD-ws-desc-reqs-20021028. The
! 	    <loc href="http://www.w3.org/TR/ws-desc-reqs/">latest
! 	    version of Web Services Description Requirements</loc> is
! 	    available at http://www.w3.org/TR/ws-desc-reqs.
  	  </bibl>
! 	  <bibl key="WS-Addressing" href="http://www.w3.org/TR/ws-addr-core/" id="WS-A">
! 	    <titleref>Web Services Addressing 1.0 - Core</titleref>,
! 	    Martin Gudgin, Marc Hadley, Editor. World Wide Web Consortium, 17
! 	    August 2005. This version of the Web Services Addressing
! 	    1.0 - Core document is available at
! 	    http://www.w3.org/TR/ws-addr-core/. The <loc
! 	    href="http://www.w3.org/TR/ws-addr-core/">latest version
! 	    of Web Services Description Requirements</loc> is
! 	    available at http://www.w3.org/TR/ws-addr-core/.
  	  </bibl>
! 	  <bibl key="XPointer Framework" href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/" id="XPTR">
! 	    <titleref>XPointer Framework</titleref>,Paul Grosso, Eve
! 	    Maler, Jonathan Marsh, Norman Walsh, Editors. World Wide
! 	    Web Consortium, 25 March 2003.  This version of the
! 	    XPointer Framework Proposed Recommendation is
  	    http://www.w3.org/TR/2003/REC-xptr-framework-20030325/ The
  	    <loc href="http://www.w3.org/TR/xptr-framework/">latest
***************
*** 3847,3918 ****
  	    http://www.w3.org/TR/xptr-framework/.
  	  </bibl>
! 
! 					<bibl key="W3C TAG Finding: Use of HTTP GET" href="http://www.w3.org/2001/tag/doc/whenToUseGet.html" id="TAG-whenToUseGET">
! 						<titleref>URIs, Addressability, and the use of HTTP GET and POST</titleref>, Ian Jacobs, Editor. World Wide Web
! 	    Consortium, 21 March 2004.  This version of TAG finding is available at
  	    http://www.w3.org/2001/tag/doc/whenToUseGet.html
  	  </bibl>
! 
! 
! 					<bibl key="W3C TAG Finding: Versioning" href="http://www.w3.org/2001/tag/doc/versioning.html" id="TAG-versioning">
! 						<titleref>Versioning XML Languages</titleref> David Orchard, Norman Walsh. Proposed TAG Finding 16 November 2003. Available at
! http://www.w3.org/2001/tag/doc/versioning.html
  	  </bibl>
! 	  
! 
! 					<bibl key="WebArch: Extensible Languages" href="http://www.w3.org/TR/NOTE-webarch-extlang" id="web-extensible">
! 						<titleref>Web Architecture: Extensible Languages</titleref> , Tim Berners-Lee, Dan Connolly, Authors. W3C Note 10 Feb 1998. Available at http://www.w3.org/TR/NOTE-webarch-extlang
  	  </bibl>
! 	  
! 					<bibl key="XML Schema: Versioning Use-Cases" href="http://www.w3.org/XML/2005/xsd-versioning-use-cases/" id="xsd-versioning">
! 						<titleref>XML Schema Versioning Use Cases</titleref> , Hoylen Sue. W3C XML Schema Working Group Draft, 31 January 2006. Available at http://www.w3.org/XML/2005/xsd-versioning-use-cases/
  	  </bibl>
! 					<bibl key="Guide to Versioning XML Languages using XML Schema 1.1" href="http://www.w3.org/TR/xmlschema-guide2versioning" id="xsd-versioning-guide">
! 						<titleref>Guide to Versioning XML Languages using XML Schema 1.1</titleref>, David Orchard. W3C XML Schema Working Group Draft, 28 September 2006. Available at http://www.w3.org/TR/xmlschema-guide2versioning 
! 					</bibl>
! 
! 					<bibl id="xsd11" key="XML Schema 1.1"
! 						href="http://www.w3.org/TR/2006/WD-xmlschema11-1-20060831/">	    
! 						<titleref>XML Schema 1.1 Part 1: Structures</titleref>,
! 						H. Thompson, C. M. Sperberg-McQueen, Shudi (Sandy) Gao, N. Mendelsohn,
! 						David Beech, Murray Maloney, Editors. World Wide Web Consortium, 31 August 2006.
! 						This Working Draft of XML Schema 1.1 Part 1 is
! 						http://www.w3.org/TR/2006/WD-xmlschema11-1-20060831/. The <loc
! 							href="http://www.w3.org/TR/xmlschema11-1/">latest version of
! 							XML Schema 1.1 Part 1</loc> is available at
! 						http://www.w3.org/TR/xmlschema11-1/.
! 					</bibl>
! 					
! 					<bibl key="SW VocabManagementNote" href="http://esw.w3.org/topic/VocabManagementNote" id="sw-vocabulary">
! 						<titleref>Vocabulary Management</titleref> , Thomas Baker, et al. Semantic Web Best Practices and Deployment Working Group Note, 8 Feb 2005. Available at
! http://esw.w3.org/topic/VocabManagementNote
! 
  	  </bibl>
! 	  					<bibl key="RELAX NG" href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html" id="relax-ng">
! 						<titleref>RELAX NG Specification</titleref>, James Clark, MURATA Makoto, Editors. OASIS Committee Specification, 3 December 2001. Available at http://www.oasis-open.org/committees/relax-ng/spec-20011203.html
  	  </bibl>
! 
! 	  					<bibl key="JAX RPC 1.1" href="http://java.sun.com/xml/downloads/jaxrpc.html" id="jaxrpc">
! 						<titleref>Java(TM) API for XML-based Remote Procedure Call (JAX-RPC) Specification, version 1.1</titleref>, Roberto Chinnici,et al. 14 October, 2003. Available at http://java.sun.com/xml/downloads/jaxrpc.html
  	  </bibl>
! 
! 
! 	  					<bibl key="REST" href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm" id="rest">
! 						<titleref>Representational State Transfer (REST)</titleref>, Roy Thomas Fielding, Author. 2000. Available at http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm
  	  </bibl>
! 
! 	  					<bibl key="RDF" href="http://www.w3.org/TR/rdf-concepts/" id="rdf">
! 						<titleref>Resource Description Framework (RDF): Concepts and Abstract Syntax</titleref>, Graham Klyne, Jeremy J. Carroll, Editors. W3C Recommendation, 10 February 2004. Available at http://www.w3.org/TR/rdf-concepts/
  	  </bibl>
! 
! 	  					<bibl key="OWL" href="http://www.w3.org/TR/owl-ref/" id="owl">
! 						<titleref>OWL Web Ontology Language Reference</titleref>, Mike Dean,Guus Schreiber, Editors. W3C Recommendation 10 February 2004 . Available at http://www.w3.org/TR/owl-ref/
  	  </bibl>
- 
  	  <bibl key="Alternative Schema Languages Support" href="http://dev.w3.org/cvsweb/~checkout~/2002/ws/desc/wsdl20/altschemalangs.html?content-type=text/html;%20charset=utf-8&amp;rev=1.3" id="altschemalangs">
  	    <titleref>Discussion of Alternative Schema Languages and
  	    Type System Support in WSDL</titleref>, A. Lewis,
! 	    B. Parsia, Editors.</bibl>
! 
  	  </blist>
  	</div2>
--- 3819,3905 ----
  	    http://www.w3.org/TR/xptr-framework/.
  	  </bibl>
! 	  <bibl key="W3C TAG Finding: Use of HTTP GET" href="http://www.w3.org/2001/tag/doc/whenToUseGet.html" id="TAG-whenToUseGET">
! 	    <titleref>URIs, Addressability, and the use of HTTP GET
! 	    and POST</titleref>, Ian Jacobs, Editor. World Wide Web
! 	    Consortium, 21 March 2004.  This version of TAG finding is
! 	    available at
  	    http://www.w3.org/2001/tag/doc/whenToUseGet.html
  	  </bibl>
! 	  <bibl key="W3C TAG Finding: Versioning" href="http://www.w3.org/2001/tag/doc/versioning.html" id="TAG-versioning">
! 	    <titleref>Versioning XML Languages</titleref> David
! 	    Orchard, Norman Walsh. Proposed TAG Finding 16 November
! 	    2003. Available at
! 	    http://www.w3.org/2001/tag/doc/versioning.html
  	  </bibl>
! 	  <bibl key="WebArch: Extensible Languages" href="http://www.w3.org/TR/NOTE-webarch-extlang" id="web-extensible">
! 	    <titleref>Web Architecture: Extensible
! 	    Languages</titleref> , Tim Berners-Lee, Dan Connolly,
! 	    Authors. W3C Note 10 Feb 1998. Available at
! 	    http://www.w3.org/TR/NOTE-webarch-extlang
  	  </bibl>
! 	  <bibl key="XML Schema: Versioning Use-Cases" href="http://www.w3.org/XML/2005/xsd-versioning-use-cases/" id="xsd-versioning">
! 	    <titleref>XML Schema Versioning Use Cases</titleref> ,
! 	    Hoylen Sue. W3C XML Schema Working Group Draft, 31 January
! 	    2006. Available at
! 	    http://www.w3.org/XML/2005/xsd-versioning-use-cases/
  	  </bibl>
! 	  <bibl key="Guide to Versioning XML Languages using XML Schema 1.1" href="http://www.w3.org/TR/xmlschema-guide2versioning" id="xsd-versioning-guide">
! 	    <titleref>Guide to Versioning XML Languages using XML
! 	    Schema 1.1</titleref>, David Orchard. W3C XML Schema
! 	    Working Group Draft, 28 September 2006. Available at
! 	    http://www.w3.org/TR/xmlschema-guide2versioning
  	  </bibl>
! 	  <bibl id="xsd11" key="XML Schema 1.1"
! 		href="http://www.w3.org/TR/2006/WD-xmlschema11-1-20060831/">	    
! 	    <titleref>XML Schema 1.1 Part 1: Structures</titleref>,
! 	    H. Thompson, C. M. Sperberg-McQueen, Shudi (Sandy) Gao,
! 	    N. Mendelsohn, David Beech, Murray Maloney, Editors. World
! 	    Wide Web Consortium, 31 August 2006.  This Working Draft
! 	    of XML Schema 1.1 Part 1 is
! 	    http://www.w3.org/TR/2006/WD-xmlschema11-1-20060831/. The
! 	    <loc href="http://www.w3.org/TR/xmlschema11-1/">latest
! 	    version of XML Schema 1.1 Part 1</loc> is available at
! 	    http://www.w3.org/TR/xmlschema11-1/.
  	  </bibl>
! 	  <bibl key="SW VocabManagementNote" href="http://esw.w3.org/topic/VocabManagementNote" id="sw-vocabulary">
! 	    <titleref>Vocabulary Management</titleref> , Thomas Baker,
! 	    et al. Semantic Web Best Practices and Deployment Working
! 	    Group Note, 8 Feb 2005. Available at
! 	    http://esw.w3.org/topic/VocabManagementNote
  	  </bibl>
! 	  <bibl key="RELAX NG" href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html" id="relax-ng">
! 	    <titleref>RELAX NG Specification</titleref>, James Clark,
! 	    MURATA Makoto, Editors. OASIS Committee Specification, 3
! 	    December 2001. Available at
! 	    http://www.oasis-open.org/committees/relax-ng/spec-20011203.html
  	  </bibl>
! 	  <bibl key="JAX RPC 1.1" href="http://java.sun.com/xml/downloads/jaxrpc.html" id="jaxrpc">
! 	    <titleref>Java(TM) API for XML-based Remote Procedure Call
! 	    (JAX-RPC) Specification, version 1.1</titleref>, Roberto
! 	    Chinnici,et al. 14 October, 2003. Available at
! 	    http://java.sun.com/xml/downloads/jaxrpc.html
  	  </bibl>
! 	  <bibl key="REST" href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm" id="rest">
! 	    <titleref>Representational State Transfer
! 	    (REST)</titleref>, Roy Thomas Fielding,
! 	    Author. 2000. Available at
! 	    http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm
! 	  </bibl>
! 	  <bibl key="RDF" href="http://www.w3.org/TR/rdf-concepts/" id="rdf">
! 	    <titleref>Resource Description Framework (RDF): Concepts
! 	    and Abstract Syntax</titleref>, Graham Klyne, Jeremy
! 	    J. Carroll, Editors. W3C Recommendation, 10 February
! 	    2004. Available at http://www.w3.org/TR/rdf-concepts/
! 	  </bibl>
! 	  <bibl key="OWL" href="http://www.w3.org/TR/owl-ref/" id="owl">
! 	    <titleref>OWL Web Ontology Language Reference</titleref>,
! 	    Mike Dean,Guus Schreiber, Editors. W3C Recommendation 10
! 	    February 2004 . Available at http://www.w3.org/TR/owl-ref/
  	  </bibl>
  	  <bibl key="Alternative Schema Languages Support" href="http://dev.w3.org/cvsweb/~checkout~/2002/ws/desc/wsdl20/altschemalangs.html?content-type=text/html;%20charset=utf-8&amp;rev=1.3" id="altschemalangs">
  	    <titleref>Discussion of Alternative Schema Languages and
  	    Type System Support in WSDL</titleref>, A. Lewis,
! 	    B. Parsia, Editors.
! 	  </bibl>
  	  </blist>
  	</div2>

Received on Thursday, 17 May 2007 13:42:08 UTC