* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full * group persistence modules * group testing modules * try fix conflict * cleanup * group and cleanup
18 lines
536 B
Java
18 lines
536 B
Java
package com.baeldung.jaxws.client;
|
|
|
|
import java.net.URL;
|
|
import java.util.List;
|
|
|
|
public class EmployeeServiceClient {
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|
URL url = new URL("http://localhost:8080/employeeservice?wsdl");
|
|
|
|
EmployeeService_Service employeeService_Service = new EmployeeService_Service(url);
|
|
EmployeeService employeeServiceProxy = employeeService_Service.getEmployeeServiceImplPort();
|
|
|
|
List<Employee> allEmployees = employeeServiceProxy.getAllEmployees();
|
|
|
|
}
|
|
} |