System.out.println("\n=== AddressBook_getAddressFromName");
try {
WSIFServiceFactory factory = WSIFServiceFactory.newInstance();
WSIFService service = factory.getService(wsdlLocation,
null, // serviceNS
null, // serviceName
"http://wsifservice.addressbook/", // portTypeNS
portType); // portTypeName
service.mapType(
new javax.xml.namespace.QName("http://wsiftypes.addressbook/", "address"),
Class.forName("addressbook.wsiftypes.Address"));
service.mapType(
new javax.xml.namespace.QName("http://wsiftypes.addressbook/", "phone"),
Class.forName("addressbook.wsiftypes.Phone"));
WSIFPort port = service.getPort(portName);
// Executing synchronous executeRequestResponseOperation(input, output, fault )
String inputMsgName = "GetAddressFromNameRequest";
String outputMsgName = "GetAddressFromNameResponse";
WSIFOperation operation =