* @param event The {@link com.logica.smpp.ServerPDUEvent} should contain
* a {@link com.logica.smpp.pdu.DeliverSM} PDU.
*/
protected void handleDeliverEvent (ServerPDUEvent event)
{
DeliverSM pdu = (DeliverSM)(event.getPDU ());
myLog.debug ("handleDeliverEvent - async response: {}", pdu.debugString ());
try {
mySession.respond (pdu.getResponse ());
}
catch (ValueNotSetException exc) {
myLog.error ("handleDeliverEvent - exception in pdu", exc);
}
catch (WrongSessionStateException exc) {