fail("did not get fault back");
} catch (SOAPFaultException ex) {
assertFalse(ex.getFault().hasDetail());
}
GMonthTest gm = new GMonthTest();
XMLGregorianCalendar dt = DatatypeFactory.newInstance().newXMLGregorianCalendarDate(2010, 11, 16, 0);
gm.setValue(dt);
GMonthTest gm2 = port.echoGMonthTest(gm);
assertEquals(gm.getValue().getMonth(), gm2.getValue().getMonth());
}