KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > systest > basicRPCLit > Server


1 package org.objectweb.celtix.systest.basicRPCLit;
2
3 import javax.xml.ws.Endpoint;
4
5 import org.objectweb.celtix.systest.common.TestServerBase;
6
7 public class Server extends TestServerBase {
8
9
10     protected void run() {
11         Object JavaDoc implementor = new GreeterImplRPCLit();
12         String JavaDoc address = "http://localhost:9002/SOAPServiceRPCLit/SoapPort";
13         Endpoint.publish(address, implementor);
14     }
15
16
17     public static void main(String JavaDoc[] args) {
18         try {
19             Server s = new Server();
20             s.start();
21         } catch (Exception JavaDoc ex) {
22             ex.printStackTrace();
23             System.exit(-1);
24         } finally {
25             System.out.println("done!");
26         }
27     }
28 }
29
Popular Tags