<?xml version='1.0'?>
<!DOCTYPE slideshow SYSTEM "slide.dtd">
<slideshow> 
 
<showtitleslide> 
  <title>XML and Electronic Commerce</title>
  <occasion>Web Services Japan 2001</occasion>
  <location>Yokohama, 25 July 2001</location>
  <speaker>Jon Bosak</speaker>
  <org>Sun Microsystems</org>
</showtitleslide>
 
<slidemodule> 
 
  <moduletitleslide> 
	 <title>XML Basics</title>
  </moduletitleslide>
 
  <slide>
	 <head>XML is...</head>
	 <bulletlist spacing="wide"> 
		<item> 
		  <p>A simplified subset of SGML (ISO 8879:1986) developed by a
			 cross-industry group organized and led by Sun Microsystems</p>
		  <bulletlist spacing="tight"> 
			 <item> 
				<p>Not new: builds on 30 years of research and 14 years of
				  SGML standardization</p>
			 </item>
			 <item> 
				<p>Offers powerful data modeling -- no limits on namespace
				  or structural depth</p>
			 </item>
			 <item> 
				<p>But small enough for Web browsers </p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Not a language but a metalanguage</p>
		  <bulletlist spacing="tight"> 
			 <item> 
				<p>Designed to support the definition of an unlimited
				  number of languages for specific industries and applications</p>
			 </item>
			 <item> 
				<p>All XML languages can be processed by a single
				  lightweight parser</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>XML is "syntax, not semantics"</head>
	 <bulletlist> 
		<item> 
		  <p>Tags have no predefined meaning</p>
		</item>
		<item> 
		  <p>Unlike HTML, XML by itself conveys only content and
			 structure, not presentation, behavior, or meaning</p>
		</item>
		<item> 
		  <p>The meaning of XML languages must be specified outside of
			 XML itself</p>
		  <bulletlist> 
			 <item> 
				<p>Operational semantics: programs, servlets, applets,
				  scripts, stylesheets...</p>
			 </item>
			 <item> 
				<p>Definitional semantics: prose, namespaces, ontologies,
				  UML diagrams...</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>XML in one slide</head>
	 <bulletlist> 
		<item> 
		  <p>Legal XML documents are called <emph>well-formed</emph></p>
		</item>
		<item> 
		  <p>A well-formed document describes a <emph>logical tree</emph>
			 </p>
		</item>
		<item> 
		  <p>If a well-formed document conforms to an optional grammar or
			 schema (e.g., a DTD), it is also <emph>valid</emph></p>
		  <bulletlist> 
			 <item> 
				<p>Well-formedness is a property of the <b>document</b></p>
			 </item>
			 <item> 
				<p>Validity is a property of the <b>relationship</b>
				  between a document and a grammar or schema</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>The industrial function of XML</head>
	 <p>XML provides a standard framework for making agreements about
		communication.</p>
	 <bulletlist> 
		<item> 
		  <p>Industry DTDs and schemas</p>
		</item>
		<item> 
		  <p>Industry namespaces</p>
		</item>
	 </bulletlist>
	 <p>But XML does not make those agreements. That would be magic!</p>
	 <p>Agreements are made by people working together on a shared
		problem. This is the process of <i>language standardization</i>.</p>
  </slide>

  <slide>
	 <head>The social function of XML</head>
	 <p>XML has a social agenda: freedom from vendor control.</p>
	 <bulletlist> 
		<item> 
		  <p>(1996) We knew that HTML could not support data exchange in
			 general</p>
		</item>
		<item> 
		  <p>Without XML, HTML would have been replaced with a binary,
			 proprietary format controlled by a single vendor</p>
		</item>
		<item> 
		  <p>The alternative was SGML (international, open, text-based
			 standard, ISO 8879-1986)</p>
		</item>
		<item> 
		  <p>XML put SGML on the Web. Result:</p>
		  <bulletlist> 
			 <item> 
				<p>Users can define their own data exchange standards</p>
			 </item>
			 <item> 
				<p>There are many inexpensive, robust tools</p>
			 </item>
			 <item> 
				<p>In theory, data belongs to the people who create it
				  rather than to the software vendors</p>
			 </item>
			 <item> 
				<p>In practice, freedom depends on the open standardization
				  of XML tag languages</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>What XML accomplishes</head>
	 <p>XML standardizes the <emph>concrete syntax</emph> of data
		exchange in a <emph>text-based notation</emph> designed to be
		<emph>obvious</emph> to both people and processes.</p>
	 <p> Deploying XML creates an <emph>open, standardized information
		infrastructure.</emph></p>
	 <numberedlist spacing="normal"> 
		<item> 
		  <p>Standardized parsers for putting data into memory</p>
		</item>
		<item> 
		  <p>Standardized interfaces (DOM and SAX) for processing the
			 data</p>
		</item>
		<item> 
		  <p>Standardized ways to display data (CSS, XSL-FO)</p>
		</item>
		<item> 
		  <p>Standardized ways to query data (XPath, XQuery)</p>
		</item>
		<item> 
		  <p>Standardized ways to link data (XLink, XPointer)</p>
		</item>
		<item> 
		  <p>Standardized training of people in both publishing and data
			 processing</p>
		</item>
	 </numberedlist>
  </slide>

</slidemodule>

<slidemodule> 
 
  <moduletitleslide> 
	 <title>Documents and Data</title>
  </moduletitleslide>
 
  <slide>
	 <head>What's a document?</head>
	 <bulletlist> 
		<item> 
		  <p>A document is data that you can <emph>read</emph>.</p>
		</item>
		<item> 
		  <p>Document requirements are a <emph>superset </emph>of data
			 requirements (e.g., recursion)</p>
		</item>
	 </bulletlist>
	 <p>The basic problem with documents is that we need to display them
		in many <emph>different forms</emph>. This is the problem that SGML was
		originally designed to solve. XML inherits the solution to that
		problem.</p>
	 <p>Example: This presentation.</p>
	 <bulletlist> 
		<item> 
		  <p>Written in XML</p>
		</item>
		<item> 
		  <p>HTML generated using a stylesheet for online publishing</p>
		</item>
		<item> 
		  <p>RTF generated using a different stylesheet</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Separation of data from processing</head>
	 <bulletlist> 
		<item> 
		  <p>The SGML/XML publishing model decouples data from
			 processing</p>
		</item>
		<item> 
		  <p>This isolates changes in large systems, making them more
			 flexible and reliable</p>
		</item>
		<item> 
		  <p>Basing a system on XML makes it well-suited to transactional
			 processing in a heterogenous, asynchronous, distributed environment
			 (like the Web)</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>The document aspect of XML</head>
	 <p>XML uses documents as the transfer mechanism for data. XML is
		<b>text</b>.</p>
	 <bulletlist spacing="normal"> 
		<item> 
		  <p>Creates large, standardized collections of data that can be
			 processed by simple text tools</p>
		</item>
		<item> 
		  <p>Creates an infrastructure in which human beings are still
			 part of the process</p>
		  <bulletlist> 
			 <item> 
				<p>Troubleshooting</p>
			 </item>
			 <item> 
				<p>Generation of human-readable deliverables (e.g.,
				  catalogues)</p>
			 </item>
			 <item> 
				<p>Integration into existing social institutions</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Promotes a message-oriented view of electronic commerce that
			 isolates business transactions from differences in software, hardware,
			 system architectures, and application programming languages</p>
		  <p></p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Data into documents</head>
	 <p>XML was designed to enable many different views to be generated
		from the same set of data using stylesheets.</p>
	 <p>So it is perfectly suited to</p>
	 <bulletlist> 
		<item> 
		  <p>Report generation</p>
		</item>
		<item> 
		  <p>Display of business data to consumers</p>
		</item>
		<item> 
		  <p>Display of business data to programmers and business
			 professionals</p>
		</item>
		<item> 
		  <p>Various forms of electronic delivery (e.g., Web sites)</p>
		</item>
	 </bulletlist>
	 <p>But the markup language must be designed to make this easy.</p>
  </slide>

</slidemodule>

<slidemodule> 
 
  <moduletitleslide> 
	 <title>ebXML: Putting Commerce Online</title>
  </moduletitleslide>
 
  <slide>
	 <head>The ebXML initiative</head>
	 <bulletlist spacing="normal"> 
		<item> 
		  <p>Joint 18-month effort of OASIS (the Organization for the
			 Advancement of Structured Information Standards) and UN/CEFACT (United
			 Nations Centre for Trade Facilitation and Electronic Business)</p>
		</item>
		<item> 
		  <p>Over 1000 participants from all over the world</p>
		</item>
		<item> 
		  <p>The vision: A global electronic market place where
			 enterprises of any size, anywhere can:</p>
		  <bulletlist> 
			 <item> 
				<p>Find each other electronically</p>
			 </item>
			 <item> 
				<p>Conduct business through the exchange of XML based
				  messages</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p><hlink
			 href="http://www.ebxml.org/">http://www.ebxml.org/</hlink></p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>The ebXML infrastructure (May 2001)</head>
	 <bulletlist> 
		<item> 
		  <p>Standard messaging services for XML</p>
		</item>
		<item> 
		  <p>Standard registry/repository for storing business models and
			 profiles</p>
		</item>
		<item> 
		  <p>Standard mechanism for trading partner agreements</p>
		</item>
		<item> 
		  <p>Standard architecture for forming trading partner agreements
			 and exchanging business messages</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>E-commerce architecture: ebXML</head>
	 <image src="ebxml1.gif">[The eCo Framework]</image>
  </slide>

  <slide>
	 <head>Using the infrastructure</head>
	 <image src="ebxml2.gif"><?xm-replace_text {image}?></image>
  </slide>

  <slide>
	 <head>Sun's role in ebXML</head>
	 <bulletlist> 
		<item> 
		  <p>We believe in an open approach to electronic commerce</p>
		</item>
		<item> 
		  <p>We believe that no single company or country should dominate
			 the infrastructure for electronic commerce</p>
		</item>
		<item> 
		  <p>We believe in empowering users</p>
		</item>
		<item> 
		  <p>ebXML is a nonprofit, independent effort sponsored by the
			 United Nations</p>
		</item>
		<item> 
		  <p>ebXML is the only existing non-proprietary framework for
			 electronic commerce</p>
		</item>
		<item> 
		  <p>I am proud to say that Sun has been the single strongest
			 industry supporter of the ebXML effort</p>
		</item>
	 </bulletlist>
	 <p>Everyone who believes in open standards for electronic commerce
		should support ebXML.</p>
  </slide>

</slidemodule>

<slidemodule> 
 
  <moduletitleslide> 
	 <title>An E-Commerce Roadmap</title>
  </moduletitleslide>
 
  <slide>
	 <head>Levels of implementation</head>
	 <p>I believe that the evolution of XML-based electronic commerce
		will take place in three phases or levels of implementation.</p>
	 <numberedlist> 
		<item> 
		  <p>Standardize the <i>infrastructure</i> (messaging, discovery,
			 trading partner agreements)</p>
		</item>
		<item> 
		  <p>Standardize the <i>messages</i> (business documents:
			 purchase orders, invoices, ...)</p>
		</item>
		<item> 
		  <p>Standardize <i>machine-processable semantics</i> (business
			 process models)</p>
		</item>
	 </numberedlist>
  </slide>

  <slide>
	 <head>Level 1 (you are here)</head>
	 <p>With the completion of the ebXML infrastructure specifications
		in May 2001, messaging, discovery, and trading partner agreements are
		now standardized and can be automated.</p>
	 <p>Most primitive implementation: email ad-hoc XML, conducting all
		other aspects manually using email or phone calls</p>
	 <bulletlist> 
		<item> 
		  <p>This would usually be a one-sided relationship</p>
		</item>
		<item> 
		  <p>But it allows the smallest businesses to participate</p>
		</item>
		<item> 
		  <p>In Level 1, the role of the repository is to supply basic
			 infrastructure specifications and commonly used industry tag sets</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Level 2 (near future)</head>
	 <bulletlist> 
		<item> 
		  <p>Level 2 adds standardized XML messages defined by humans
			 within some standardized semantic framework using standardized core
			 components (data elements)</p>
		  <bulletlist> 
			 <item> 
				<p>Enables off-the-shelf software solutions</p>
			 </item>
			 <item> 
				<p>Enables a transition from existing business practices by
				  replacing traditional business documents with human-readable XML
				  equivalents</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Many options for defining the semantic framework</p>
		  <bulletlist> 
			 <item> 
				<p>UML</p>
			 </item>
			 <item> 
				<p>Prose</p>
			 </item>
			 <item> 
				<p>Prose + DTD</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>In Level 2, the repository will include descriptions of
			 standard business models, standard core components, and standard XML
			 business documents</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Level 3 (distant future)</head>
	 <p>In Level 3, standardized messages are automatically generated
		from a standardized semantic framework</p>
	 <bulletlist> 
		<item> 
		  <p>Modeling done from the top down</p>
		</item>
		<item> 
		  <p>Schemas generated automatically</p>
		</item>
		<item> 
		  <p>The whole system operates without human intervention</p>
		</item>
		<item> 
		  <p>The repository now includes business models designed for
			 automation</p>
		</item>
		<item> 
		  <p>Advantages:</p>
		  <bulletlist> 
			 <item> 
				<p>Completely automated</p>
			 </item>
			 <item> 
				<p>Allows dynamic modification of business models</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Problems to be solved:</p>
		  <bulletlist> 
			 <item> 
				<p>Development of the technology itself</p>
			 </item>
			 <item> 
				<p>Entry point for SMEs</p>
			 </item>
			 <item> 
				<p>Transition from existing business and legal systems</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

</slidemodule>

<slidemodule> 
 
  <moduletitleslide> 
	 <title>Getting to Level 2</title>
  </moduletitleslide>
 
  <slide>
	 <head>Review: Levels of implementation</head>
	 <numberedlist> 
		<item> 
		  <p>Standardize the <i>infrastructure</i> (messaging, discovery,
			 trading partner agreements)</p>
		  <bulletlist> 
			 <item> 
				<p>The ebXML infrastructure provides this level of
				  functionality</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Standardize the <i>messages</i> (business documents:
			 purchase orders, invoices, ...)</p>
		  <bulletlist> 
			 <item> 
				<p>This is the next stage of development</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Standardize <i>machine-processable semantics</i> (business
			 process models)</p>
		  <bulletlist> 
			 <item> 
				<p>This is a long-term project for the future</p>
			 </item>
		  </bulletlist>
		</item>
	 </numberedlist>
  </slide>

  <slide>
	 <head>Level 2 example: materials management</head>
	 <p>In level 2, standardized business documents take their meaning
		from standardized business models. This diagram shows the role of
		planning and shipping documents in a business model from the automotive
		industry.</p>
	 <image src="matls1.gif">[Materials Supply Chain UML Model]</image>
  </slide>

  <slide>
	 <head>Constructing a business language</head>
	 <p>To achieve the next level of e-commerce implementation, we need
		to standardize a common business language.Examples of what needs to be
		standardized:</p>
	 <bulletlist> 
		<item> 
		  <p>Date</p>
		</item>
		<item> 
		  <p>Weight</p>
		</item>
		<item> 
		  <p>Price</p>
		</item>
		<item> 
		  <p>Address</p>
		</item>
		<item> 
		  <p>Telephone number</p>
		</item>
		<item> 
		  <p>Party</p>
		</item>
		<item> 
		  <p>Purchase order</p>
		</item>
		<item> 
		  <p>Shipping notice</p>
		</item>
		<item> 
		  <p>Invoice</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Document components</head>
	 <bulletlist> 
		<item> 
		  <p>Atomic components</p>
		  <bulletlist> 
			 <item> 
				<p>Date</p>
			 </item>
			 <item> 
				<p>Weight</p>
			 </item>
			 <item> 
				<p>Price</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Aggregate components</p>
		  <bulletlist> 
			 <item> 
				<p>Address</p>
			 </item>
			 <item> 
				<p>Telephone number</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Core blocks</p>
		  <bulletlist> 
			 <item> 
				<p>Party</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>Documents</p>
		  <bulletlist> 
			 <item> 
				<p>Purchase order</p>
			 </item>
			 <item> 
				<p>Shipping notice</p>
			 </item>
			 <item> 
				<p>Invoice</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Context drivers</head>
	 <p>"Standard" data components change structure when put into
		different contexts.</p>
	 <bulletlist> 
		<item> 
		  <p>Business process</p>
		</item>
		<item> 
		  <p>Industry</p>
		</item>
		<item> 
		  <p>Product type</p>
		</item>
		<item> 
		  <p>Geographical region</p>
		</item>
		<item> 
		  <p>Regulatory environment</p>
		</item>
		<item> 
		  <p>Role (vendor, customer, etc.)</p>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Context example: address</head>
	 <p>Even such a simple data item as an address will change depending
		on the context.</p>
	 <bulletlist> 
		<item> 
		  <p>Addresses in Japan are different from addresses in the
			 United States</p>
		</item>
		<item> 
		  <p>Addresses in the auto industry are different from addresses
			 in other industries</p>
		</item>
	 </bulletlist>
  </slide>

</slidemodule>

<slidemodule> 
 
  <moduletitleslide> 
	 <title>Standardizing Business Documents</title>
  </moduletitleslide>
 
  <slide>
	 <head>The immediate problem</head>
	 <p>Users are rushing to adopt various existing XML business
		syntaxes.</p>
	 <bulletlist> 
		<item> 
		  <p>cXML</p>
		</item>
		<item> 
		  <p>xCBL</p>
		</item>
		<item> 
		  <p>RosettaNet</p>
		</item>
		<item> 
		  <p>OAG</p>
		</item>
		<item> 
		  <p>BizTalk</p>
		</item>
		<item> 
		  <p>various other dialects</p>
		</item>
	 </bulletlist>
	 <p>The existence of multiple business languages is a serious
		interoperability problem. But once adopted, these existing vocabularies
		will be very hard to dislodge.</p>
  </slide>

  <slide>
	 <head>A plan for averting chaos</head>
	 <numberedlist> 
		<item> 
		  <p>Put one of the <i>existing</i> XML b2b libraries into a
			 genuine standards process.</p>
		</item>
		<item> 
		  <p>Populate the process with XML and business domain
			 experts.</p>
		</item>
		<item> 
		  <p>Persuade other groups working to standardize XML business
			 grammars to join the common effort.</p>
		</item>
		<item> 
		  <p>Modify the default library as necessary to achieve
			 consensus.</p>
		</item>
		<item> 
		  <p>Lead users into adopting the standard "Universal Business
			 Language" (UBL)</p>
		</item>
		<item> 
		  <p>Evolve the standard UBL as we gain experience.</p>
		</item>
	 </numberedlist>
  </slide>

  <slide>
	 <head>Requirements for a Universal Business Language (UBL)</head>
	 <bulletlist> 
		<item> 
		  <p>Optimized for Internet b2b</p>
		</item>
		<item> 
		  <p>International in scope</p>
		</item>
		<item> 
		  <p>Applicable across any sector or domain of electronic trade,
			 transport, and administration (purchasing, payments, logistics,
			 transportation, statistical reporting, social administration,
			 healthcare, etc.)</p>
		</item>
		<item> 
		  <p>Interoperable with existing EDI systems</p>
		</item>
		<item> 
		  <p>Based on a core library</p>
		</item>
		<item> 
		  <p>Unencumbered by intellectual property claims</p>
		</item>
		<item> 
		  <p>Already proven to work in actual electronic marketplaces</p>
		  <bulletlist> 
			 <item> 
				<p>Proven implementability</p>
			 </item>
			 <item> 
				<p>Easy testability</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>My proposal: start with xCBL 3.0</head>
	 <numberedlist> 
		<item> 
		  <p>xCBL 3.0 represents four years of work that we don't want to
			 start over from scratch.</p>
		</item>
		<item> 
		  <p>xCBL's IP is unencumbered. <i>This is really
			 important.</i></p>
		</item>
		<item> 
		  <p>xCBL 3.0 reflects experience gained in EDI, RosettaNet, OBI,
			 and ebXML.</p>
		</item>
		<item> 
		  <p>Microsoft and SAP are basing systems on xCBL.</p>
		</item>
		<item> 
		  <p>Many vendors already have xCBL code for use in adapters.</p>
		</item>
		<item> 
		  <p>The owners of xCBL are willing to put it into a real
			 standards process for the benefit of the industry and to work within
			 that process to advance the industry standard.</p>
		</item>
	 </numberedlist>
	 <p>In the software business, this is as good as it gets.</p>
  </slide>

  <slide>
	 <head>Basic concept</head>
	 <p>The basic idea is to review the baseline syntax line by line in
		harmony with semantic definition work taking place in the United
		Nations and to make whatever modifications are necessary in light of
		experience with other syntaxes:</p>
	 <bulletlist> 
		<item> 
		  <p>X12 and EDIFACT</p>
		</item>
		<item> 
		  <p>RosettaNet</p>
		</item>
		<item> 
		  <p>OAG</p>
		</item>
		<item> 
		  <p>cXML</p>
		</item>
		<item> 
		  <p>Bolero</p>
		</item>
		<item> 
		  <p>et cetera</p>
		</item>
	 </bulletlist>
	 <p>The details of this process need to be defined in committee.</p>
  </slide>

  <slide>
	 <head>Possible venues for standardization</head>
	 <bulletlist> 
		<item> 
		  <p>UN/CEFACT (UN/EDIFACT)</p>
		  <bulletlist> 
			 <item> 
				<p>International participation and credibility</p>
			 </item>
			 <item> 
				<p>Links to major corporate users</p>
			 </item>
			 <item> 
				<p>Links to international organizations (WTO, WCO, IMF
				  ...)</p>
			 </item>
			 <item> 
				<p>But subject to delays and political problems</p>
			 </item>
		  </bulletlist>
		</item>
		<item> 
		  <p>OASIS</p>
		  <bulletlist> 
			 <item> 
				<p>Nonprofit corporation founded in 1993</p>
			 </item>
			 <item> 
				<p>Represents XML vendors and users</p>
			 </item>
			 <item> 
				<p>Excellent, fast, fair committee process</p>
			 </item>
			 <item> 
				<p>Any interested person can join</p>
			 </item>
		  </bulletlist>
		</item>
	 </bulletlist>
  </slide>

  <slide>
	 <head>Status</head>
	 <p>[Status as of 25 July 2001]</p>
	 <bulletlist spacing="tight"> 
		<item> 
		  <p>Sun, Commerce One, SAP, and other software vendors have
			 formed a UBL Organizing Committee</p>
		</item>
		<item> 
		  <p>We are attempting to form a working group in UN/CEFACT to
			 carry out the work of standardization</p>
		</item>
		<item> 
		  <p>We are hoping to begin work after the UN/EDIFACT working
			 group meeting in September</p>
		</item>
	 </bulletlist>
	 <p>[Status as of 3 October 2001]</p>
	 <bulletlist spacing="tight"> 
		<item> 
		  <p>Pending a reorganization in progress in UN/CEFACT, the UBL
			 work will take place in an OASIS technical committee</p>
		</item>
		<item> 
		  <p>The first UBL TC meeting is scheduled for the week of 29
			 October through 1 November 2001</p>
		</item>
		<item> 
		  <p>For more details:
			 <hlink
			  href="http://oasis-open.org/committees/ubl/">http://oasis-open.org/committees/ubl/</hlink></p>
		</item>
	 </bulletlist>
  </slide>

</slidemodule>

</slideshow> 
