@Test(expected=ValueNotAllowedException.class)
public void BindingTemplateAccessPointAndRedirectorTest() throws DispositionReportFaultMessage, RemoteException {
System.out.println("BindingTemplateAccessPointAndRedirectorTest");
SaveBusiness sb = new SaveBusiness();
sb.setAuthInfo(authInfoJoe);
BusinessEntity be = new BusinessEntity();
Name n = new Name();
n.setValue("A Test business");
be.getName().add(n);
be.setBusinessServices(new BusinessServices());
BusinessService bs = new BusinessService();
n = new Name();
n.setValue(str255);
bs.getName().add(n);
BindingTemplate bt = new BindingTemplate();
bs.setBindingTemplates(new BindingTemplates());
bt.setAccessPoint(new AccessPoint());
bt.getAccessPoint().setUseType(str26);
bt.setHostingRedirector(new HostingRedirector());
bt.getHostingRedirector().setBindingKey(str26);
bs.getBindingTemplates().getBindingTemplate().add(bt);
be.getBusinessServices().getBusinessService().add(bs);
sb.getBusinessEntity().add(be);
try {
BusinessDetail saveBusiness = publication.saveBusiness(sb);
DeleteBusiness db = new DeleteBusiness();