package compbio.ws.jpred; import javax.xml.ws.Endpoint; public class WSPublisher { public static void main(String[] args) { Endpoint.publish("http://localhost:1236/proteocache/services", new JpredWS()); System.out.println("Service is published!"); } }