Package publisher

Source Code of publisher.WebServicePublisher

package publisher;

import javax.xml.ws.Endpoint;

import ch01.ts.TimeServerImpl;

public class WebServicePublisher
{
 
  public static void main(String[] args)
  {
    Endpoint.publish("http://127.0.0.1:9876/ts", new TimeServerImpl());
  }
 
}
TOP

Related Classes of publisher.WebServicePublisher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.