public void ServiceDescLangTooLongTest() throws DispositionReportFaultMessage, RemoteException {
System.out.println("ServiceDescLangTooLongTest");
SaveBusiness sb = new SaveBusiness();
sb.setAuthInfo(authInfoJoe);
BusinessEntity be = new BusinessEntity();
Name n = new Name();
n.setValue("ServiceDescLangTooLongTest A Test business");
be.getName().add(n);
be.setBusinessServices(new BusinessServices());
BusinessService bs = new BusinessService();
Description d = new Description();
d.setValue(str255);
d.setLang(str27);
bs.getDescription().add(d);
n = new Name();
n.setValue(str255);
bs.getName().add(n);
be.getBusinessServices().getBusinessService().add(bs);
sb.getBusinessEntity().add(be);
try {