if (msg.isRequest() && msg.isNotify())
{
// nobody handled it, just respond 405 (method not allowed) to get it to go away
printLog("Notify Request - Sending unsupported response (405)",LogLevel.MEDIUM);
TransactionServer ts=new TransactionServer(this,msg,null);
ts.respondWith(MessageFactory.createResponse(msg,405,SipResponses.reasonOf(405),null));
return;
}
// if we are here, no listener_ID matched..
printLog("No SipListener found matching that message: message DISCARDED",LogLevel.HIGH);