public void BusinessNameLangMaxLengthTest() throws DispositionReportFaultMessage, RemoteException {
System.out.println("BusinessNameLangMaxLengthTest");
SaveBusiness sb = new SaveBusiness();
sb.setAuthInfo(authInfoJoe);
BusinessEntity be = new BusinessEntity();
Name n = new Name();
n.setValue("BusinessNameLangMaxLengthTest A Test business");
n.setLang(str26);
be.getName().add(n);
sb.getBusinessEntity().add(be);
BusinessDetail saveBusiness = publicationJoe.saveBusiness(sb);
DeleteBusiness db = new DeleteBusiness();