// need to set the same bus with service , so use the ServiceImpl
ServiceImpl service = new ServiceImpl(getBus(), (URL)null, serviceName, null);
service.addPort(portName, "http://schemas.xmlsoap.org/soap/", "local://localhost:9090/array");
ArrayService proxy = service.getPort(portName, ArrayService.class);
String[] arrayOut = proxy.arrayOutput();
assertEquals(arrayOut.length, 3);
assertEquals(arrayOut[0], "string1");
assertEquals(arrayOut[1], "string2");
assertEquals(arrayOut[2], "string3");
String[] arrayIn = new String[3];