01: /******************************************************************************
02: * SystemProp.java
03: * ****************************************************************************/package org.openlaszlo.test.xmlrpc;
04:
05: import org.apache.xmlrpc.*;
06: import java.util.*;
07:
08: public class SystemProp {
09: public static Hashtable getProperties() {
10: return System.getProperties();
11: }
12:
13: public static void main(String argv[]) {
14: WebServer ws = new WebServer(8181);
15: SystemProp se = new SystemProp();
16: ws.addHandler("localservice", se);
17: ws.start();
18: }
19: }
|