Still not working WS for querinh proteochache (probably due to interaction with Spring)
[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 }