public void buildProcessorChain() throws FetionException
{
this.processorChain = new ProcessorChain();
this.processorChain.addLast(new ServerMessageDispatcher(context, this, this)); //消息分发服务
if(FetionConfig.getBoolean("log.sipc.enable"))
this.processorChain.addLast(new SipcLogger("ServerDialog-"+this.context.getFetionUser().getFetionId())); //日志记录
this.processorChain.addLast(new TransferService(this.context)); //传输服务
this.processorChain.addLast(new SipcParser()); //信令解析器
this.processorChain.addLast(this.context.getTransferFactory().createDefaultTransfer()); //信令传输对象
this.processorChain.startProcessorChain();