Package publisher

Source Code of publisher.Launcher

package publisher;

import javax.xml.ws.Endpoint;

import ch01.ts.TimeServerImpl;



public class Launcher
{

  /**
   * @param args
   */
  public static void main(String[] args)
  {
   
     Endpoint.publish(
            "http://localhost:9876/ts", new TimeServerImpl());
  }

}
TOP

Related Classes of publisher.Launcher

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.