01: package org.objectweb.celtix.systest.ws.rm;
02:
03: import javax.xml.ws.Endpoint;
04:
05: import org.objectweb.celtix.systest.common.TestServerBase;
06:
07: public class Server extends TestServerBase {
08:
09: protected void run() {
10:
11: ControlImpl implementor = new ControlImpl();
12: String address = "http://localhost:9001/SoapContext/ControlPort";
13: Endpoint.publish(address, implementor);
14:
15: }
16:
17: public static void main(String[] args) {
18: try {
19: Server s = new Server();
20: s.start();
21: } catch (Exception ex) {
22: ex.printStackTrace();
23: System.exit(-1);
24: } finally {
25: System.out.println("done!");
26: }
27: }
28: }
|