AccountHelperHome home = (AccountHelperHome)CVUtility.getHomeObject("com.centraview.account.helper.AccountHelperHome", "AccountHelper");
try {
AccountHelper remote = home.create();
remote.setDataSource(dataSource);
if (taxClassValue != null && ! taxClassValue.equals("")) {
remote.insertTaxClassOrJurisdiction(taxClassValue,"taxClass");
}
if (taxJurisdictionsValue != null && !taxJurisdictionsValue.equals("")) {
remote.insertTaxClassOrJurisdiction(taxJurisdictionsValue,"taxJurisdiction");
}
} catch (Exception e) {