AltEncrypter cypher = new AltEncrypter("cypherkey" + user);
try {
String password = cypher.decrypt(WSInfo.getWspassword().substring(6));
wsLogin.setPassword(password);
} catch (NullPointerException npe) {
throw new BasicException(AppLocal.getIntString("message.propsnotdefined"));
}
if (wsPosid == null || wsPosid.equals("")) {
throw new BasicException(AppLocal.getIntString("message.propsnotdefined"));
} else {
if (wsURL.equals("") || wsURL == null) {
throw new BasicException(AppLocal.getIntString("message.urlnotdefined"));
} else {
}
}
categoriesProxy = new VM_CategoriesProxy(wsURL + CategoriesURL);