Package test

Source Code of test.ClientTest

package test;

import ch01.ts.TimeServerImpl;
import ch01.ts.TimeServerImplService;

public class ClientTest
{
 
  public static void main(String[] args)
  {
    TimeServerImplService serviceFactory = new TimeServerImplService();
    TimeServerImpl impl = serviceFactory.getTimeServerImplPort();
    System.out.print(impl.getTimeAsElapsed());
  }
 
}
TOP

Related Classes of test.ClientTest

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.