private void createControl() {
if (null == control) {
URL wsdl = getClass().getResource("/wsdl/greeter_control.wsdl");
ControlService controlService = new ControlService(wsdl, CONTROL_SERVICE_NAME);
control = controlService.getPort(CONTROL_PORT_NAME, Control.class);
}
}