01747e054ab22f7b60e2cc80f3e315e1534ae772
[proteocache.git] / server / compbio / ws / jpred / WSPublisher.java
1 package compbio.ws.jpred;
2
3 import javax.xml.ws.Endpoint;
4
5 public class WSPublisher {
6
7         public static void main(String[] args) {
8                 Endpoint.publish("http://localhost:1236/proteocache/services", new JpredWS());
9
10                 System.out.println("Service is published!");
11         }
12 }