use of org.jdiameter.common.impl.app.s6a.JInsertSubscriberDataRequestImpl in project jain-slee.diameter by RestComm.
the class S6aServerSessionImpl method sendInsertSubscriberDataRequest.
public void sendInsertSubscriberDataRequest(InsertSubscriberDataRequest idr) throws IOException {
DiameterMessageImpl msg = (DiameterMessageImpl) idr;
JInsertSubscriberDataRequestImpl request = new JInsertSubscriberDataRequestImpl((Answer) msg.getGenericData());
try {
appSession.sendInsertSubscriberDataRequest(request);
} catch (org.jdiameter.api.validation.AvpNotAllowedException anae) {
throw new AvpNotAllowedException(anae.getMessage(), anae.getAvpCode(), anae.getVendorId());
} catch (Exception e) {
if (logger.isDebugEnabled()) {
logger.debug("Failed to send message.", e);
}
throw new IOException(e.getMessage());
}
}
Aggregations