// create the operation
// note that we have two operations with the same name, so we need to specify the
// name of the input and output messages as well
WSIFOperation operation = port.createOperation("addEntry","AddEntryFirstAndLastNamesRequest",null);
// create the input message associated with this operation
WSIFMessage input = operation.createInputMessage();
// populate the input message
input.setObjectPart("firstName","Jane");
input.setObjectPart("lastName","White");
// create an address object to populate the input
Address address = new Address();