*/
@Override
protected Object doProcessIncoming(Object o) throws FetionException
{
try {
SipcInMessage in = (SipcInMessage) o;
if (in instanceof SipcNotify) {
this.dispatch((SipcNotify) in);
} else if (in instanceof SipcResponse) {
this.dispatch((SipcResponse) in);
} else {
throw new DispatcherException("Unkown SipMessage type.."+in.getClass().getName());
}
}catch(FetionException e) {
this.exceptionHandler.handleException(e);
}