7879808182838485868788
SayHi2MessageDocument document = SayHi2MessageDocument.Factory.newInstance(); StringListType stringListType = document.addNewSayHi2Message(); stringListType.setMyname("sean"); stringListType.setMyaddress("home"); port.sayHi2(document); } }
8485868788899091929394
7980818283848586878889
GreeterMine port = ss.getSoapPort(); StringListType stringListType = StringListType.Factory.newInstance(); stringListType.setMyname("sean"); stringListType.setMyaddress("home"); port.sayHi2(stringListType); } }