public class Test {
public void testWebServiceLookup() throws Exception {
InteropLab interopLab = (InteropLab) new InitialContext().lookup("java:comp/env/service/InteropLab");
InteropTestPortType interopTestPortType = interopLab.getinteropTestPort();
int result = interopTestPortType.echoInteger(1);
if (result != 1) {
throw new Exception("Result was not 1 but " + result);
}
}