summaryrefslogtreecommitdiff
path: root/demos/address-book/protected/application.xml
diff options
context:
space:
mode:
authorwei <>2007-01-17 11:55:40 +0000
committerwei <>2007-01-17 11:55:40 +0000
commit912dc30b43330a3e99a3e1f947ff14de108a3701 (patch)
tree064a66120c95b043de9f9d56fb52d3e66bfe3e81 /demos/address-book/protected/application.xml
parent3dc598bc7c2604e24b9e0be1189d9d78b43737ea (diff)
Add address-book flex demo
Diffstat (limited to 'demos/address-book/protected/application.xml')
-rw-r--r--demos/address-book/protected/application.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/demos/address-book/protected/application.xml b/demos/address-book/protected/application.xml
new file mode 100644
index 00000000..8e87be8c
--- /dev/null
+++ b/demos/address-book/protected/application.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<application id="address-book" mode="Debug">
+
+<paths>
+ <using namespace="System.Data.*" />
+ <using namespace="System.Data.ActiveRecord.*" />
+ <using namespace="System.Web.Services.TSoapService" />
+</paths>
+
+<modules>
+ <!-- database configuration for Active Record -->
+ <module id="sqlite-db" class="TActiveRecordConfig">
+ <database ConnectionString="sqlite:./protected/pages/sqlite.db" />
+ </module>
+</modules>
+
+<services>
+ <!-- soap entry point definition for address book service -->
+ <service id="soap" class="TSoapService">
+ <soap id="address-book"
+ provider="Application.pages.AddressProvider"
+ ClassMaps="AddressRecord" />
+ </service>
+</services>
+
+</application> \ No newline at end of file