<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE uridef[
  <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns">
  <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema">
  <!ENTITY daml "http://www.daml.org/2001/03/daml+oil">
  <!ENTITY service "http://www.daml.org/services/daml-s/0.9/Service.daml">
  <!ENTITY congo_profile "http://www.daml.org/services/daml-s/0.9/CongoProfile.daml">
  <!ENTITY congo_process "http://www.daml.org/services/daml-s/0.9/CongoProcess.daml">
  <!ENTITY congo_grounding "http://www.daml.org/services/daml-s/0.9/CongoGrounding.daml">
  <!ENTITY DEFAULT "http://www.daml.org/services/daml-s/0.9/CongoService.daml">
]>

<rdf:RDF
  xmlns:rdf	= "&rdf;#"
  xmlns:rdfs	="&rdfs;#"
  xmlns:daml	="&daml;#"
  xmlns:service= "&service;#"
  xmlns     	="&DEFAULT;#"
 >

 <daml:Ontology rdf:about="">
   <daml:versionInfo>
     $Id: CongoService.daml,v 1.7 2003/09/19 05:00:18 martin Exp $
   </daml:versionInfo>
   <rdfs:comment> 
   This ontology represents the DAML-S service description for the
   Congo web service example.
   </rdfs:comment>
   <daml:imports rdf:resource="&daml;"/>
   <daml:imports rdf:resource="&service;" />
   <daml:imports rdf:resource="&congo_profile;" />
   <daml:imports rdf:resource="&congo_process;" />
   <daml:imports rdf:resource="&congo_grounding;" />
 </daml:Ontology>
  
<service:Service rdf:ID="ExpressCongoBuyService">
   <!-- Reference to the Profile -->
   <service:presents rdf:resource="&congo_profile;#Profile_Congo_BookBuying_Service"/>

   <!-- Reference to the Process Model -->
   <service:describedBy rdf:resource="&congo_process;#ExpressCongoBuyProcessModel"/>

   <!-- Reference to the Grounding -->
   <service:supports rdf:resource="&congo_grounding;#CongoBuyGrounding"/>
</service:Service> 

<service:Service rdf:ID="FullCongoBuyService">
   <!-- Reference to the Profile -->
   <!-- TBD: Should this be the same as the above? -->
   <service:presents rdf:resource="&congo_profile;#Profile_Congo_BookBuying_Service"/>

   <!-- Reference to the Process Model -->
   <service:describedBy rdf:resource="&congo_process;#FullCongoBuyProcessModel"/>

   <!-- Reference to the Grounding -->
   <service:supports rdf:resource="&congo_grounding;#FullCongoBuyGrounding"/>
</service:Service> 

</rdf:RDF>
