Server Side Time Stamp:  Sat May 11 14:35:36 GMT-05:00 2024

The full path to the XML file on the server is:
/home/heines/public_html/academic/papers/2003iticse/TutorialWWW/tutorialRoster.xml

The XML file indicates that the title and location of this tutorial are:
Using XML and XSL with JavaServer Pages
Thessaloniki, Greece

Querying the course roster with the XPath:

//participant/name/@last[starts-with( . , 'P' )]

returns:

  1. Pothering
  2. Psarri

View Source

XML File Listing:

<?xml version="1.0" encoding="UTF-8"?>
<!--
  tutorialRoster.xml
  Jesse M. Heines, UMass Lowell Computer Science, heines@cs.uml.edu
  for ITiCSE XML and XSL Tutorial, Thessaloniki, Greece
  Copyright (c) 2003 by Jesse M. Heines.  All rights reserved, but may be freely 
    copied or extracted from for educational purposes with credit to the author.
  updated by JMH on June 18, 2003 at 02:21 PM
-->
<?xml-stylesheet type="text/xsl" href="tutorialRoster.xsl" ?>

<tutorialRoster>
  <particulars>
    <title>Using XML and XSL with JavaServer Pages</title>
    <date>2003-06-29</date>
    <location>Thessaloniki, Greece</location>
    <organization>ACM SIG CSE</organization>
    <conference>ITiCSE</conference>
  </particulars>
  <presenter>
    <name
      first="Jesse" last="Heines"/>
    <institution
      name="University of Massachusetts Lowell"/>
    <emailaddress>heines@cs.uml.edu</emailaddress>
  </presenter>
  <participant>
    <name
      first="Elizabeth" last="Adams"/>
    <institution
      name="James Madison University"/>
    <emailaddress>adamses@jmu.edu</emailaddress>
  </participant>
  <participant>
    <name
      first="Grousouzakou" last="Eyfrosynh"/>
    <institution
      name="1o Esperino Tee Peristeriou"/>
    <emailaddress>efigr@dolnet.gr</emailaddress>
  </participant>
  <participant>
    <name
      first="John" last="Haddow"/>
    <institution
      name="Bell College"/>
    <emailaddress>j.haddow@bell.ac.uk</emailaddress>
  </participant>
  <participant>
    <name
      first="Jane" last="Meyerowitz"/>
    <institution
      name="University of Natal"/>
    <emailaddress>meyerowi@nu.ac.za</emailaddress>
  </participant>
  <participant>
    <name
      first="Rachel" last="Or-Bach"/>
    <institution
      name="Emek Yezreel College"/>
    <emailaddress>orbach@yvc.ac.il</emailaddress>
  </participant>
  <participant>
    <name
      first="George" last="Pothering"/>
    <institution
      name="College of Charleston"/>
    <emailaddress>pother@cs.cofc.edu</emailaddress>
  </participant>
  <participant>
    <name
      first="Dimitra" last="Psarri"/>
    <institution
      name="1st Lykeio Agias Varvaras"/>
    <emailaddress>mail@1lyk-ag-varvar.att.sch.gr</emailaddress>
  </participant>
  <participant>
    <name
      first="RoxAnn" last="Stalvey"/>
    <institution
      name="College of Charleston"/>
    <emailaddress>stalveyr@cs.cofc.edu</emailaddress>
  </participant>
  <participant>
    <name
      first="Henry" last="Walker"/>
    <institution name="Grinnell College"/>
    <emailaddress>walker@grinnell.edu</emailaddress>
  </participant>
</tutorialRoster>