--- /dev/null
+README for clock example
+=========================
+
+This example shows a very simple service using all native interfaces.
+It can only report the date and time of the server.
+
+qtc - Qt based client
+qts - Qt based server
+phpc - PHP based client
+phps - PHP based server
+
+You need Apache or another CGI or SCGI capable web server for the server
+examples.
+Please read the documentation on how to install servers.
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<Wolf>
+ <Doc>This is the WOLF for the clock example</Doc>
+ <!-- generic settings -->
+ <Project baseDir="." wobDir="." name="Clock"/>
+ <Version comm="00" needcomm="00" humanReadable="0.1"/>
+
+ <!-- configure output -->
+ <QtClientOutput sourceDir="qtc" subDir="wob" priInclude="wob.pri" classPrefix="C" clean="yes" transactionBase="WTransaction"/>
+ <PHPServerOutput sourceDir="phps" subDir="wob" extension=".php" clean="yes" transactionBase="WobTransaction"/>
+ <HtmlOutput sourceDir="." subDir="html" clean="yes"/>
+
+ <!-- class -->
+ <Class name="Time">
+ <Doc>Transport class for clock.</Doc>
+ <Property name="year" type="int"/>
+ <Property name="month" type="int"/>
+ <Property name="day" type="int"/>
+ <Property name="hour" type="int"/>
+ <Property name="minute" type="int"/>
+ <Property name="second" type="int"/>
+ <Property name="dayOfWeek" type="astring"/>
+ <Property name="monthName" type="string"/>
+ </Class>
+
+ <!-- transaction -->
+ <Transaction name="GetTime" mode="open">
+ <Input>
+ </Input>
+ <Call lang="php" method="Session::login($this);"/>
+ <Output>
+ <Var name="time" type="Time"/>
+ </Output>
+ </Transaction>
+</Wolf>
\ No newline at end of file
--- /dev/null
+README for jack
+-----------------
+
+This is a very simple Black-Jack implementation that demonstrates how more
+complex applications work with PACK. It needs a (SQLite) database.
\ No newline at end of file