the XML-RPC endpoint can now invoke scripts as handlers, in addition to

objects of a specified class
This commit is contained in:
Eric J. Bowersox
2002-01-16 17:39:09 +00:00
parent 6ea41dc619
commit e3717ca62c
9 changed files with 277 additions and 45 deletions
+4
View File
@@ -32,6 +32,7 @@
<mkdir dir="${deploy.home}"/>
<mkdir dir="${deploy.home}/WEB-INF"/>
<mkdir dir="${deploy.home}/WEB-INF/scripts"/>
<mkdir dir="${deploy.home}/WEB-INF/rpcscripts"/>
</target>
<!-- Copy everything to the application directory that can be updated without a restart. -->
@@ -42,6 +43,9 @@
<copy todir="${deploy.home}/WEB-INF/scripts"> <!-- this copies all the scripts -->
<fileset dir="scripts"/>
</copy>
<copy todir="${deploy.home}/WEB-INF/rpcscripts"> <!-- this copies all the RPC scripts -->
<fileset dir="rpcscripts"/>
</copy>
</target>
<!-- Prepare directory for build (copy everything that requires a restart to take effect) -->