}
@Test
@Ignore("Works in systests, but the wsdl2java will not load the soap module in the top level")
public void testBasicConnection() throws Exception {
Pizza port = getPort();
OrderPizzaType req = new OrderPizzaType();
ToppingsListType t = new ToppingsListType();
t.getTopping().add("test");
req.setToppings(t);
CallerIDHeaderType header = new CallerIDHeaderType();
header.setName("mao");
header.setPhoneNumber("108");
//OrderPizzaResponseType res = port.orderPizza(req);
OrderPizzaResponseType res = port.orderPizza(req, header);
//System.out.println(res);
assertEquals(208, res.getMinutesUntilReady());
}