public PaymentInfo validatePayment(String cypheredtxt) throws ServiceException {
try {
LOGGER.info("CA call preparation for payment validation");
SIPSApiWeb api = new SIPSApiWeb(getPaymentInitFile());
// Initialisation de l'objet reponse
SIPSDataObject resp = (SIPSDataObject) new SIPSResponseParm();
// Recuperation de la variable cryptee postee
// Decryptage de la reponse
resp = api.sipsPaymentResponseFunc(cypheredtxt);
String orderId = resp.getValue("order_id");
LOGGER.debug("orderId ="+orderId);