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