*this is an example of the xquery transcript file. remember all work should be in the special directory. *it shows how your file should look for all 8 examples and also how to use the command line processor. *your command prompt will be different than mine and be sure to label the output as i show *see the saxon documentation for details such as the -cp is the classpath to the specific xquery processor inside the java .jar file *note that one can use the doc command to reference a local file as in xq1.xq or a remote one with http as in xq1a.xq $>cat xq1.xq doc("books.xml")/bookstore/book/title $>cat xq1a.xq doc("http://zaad.umbc.edu/class/651/programs/books.xml")/bookstore/book/title example a: $>java -cp ../saxon9he.jar net.sf.saxon.Query -q:xq1.xq Everyday ItalianHarry PotterXQuery Kick StartLearning XML example b: $>java -cp ../saxon9he.jar net.sf.saxon.Query -q:xq2.xq Harry Potter J K. Rowling 2005 29.99 etc... (your file will have 8 examples)