2016-05-30 26 views
1

當在mobicents中測試代理時,mobicents不能轉發再見消息到另一個。 當一個用戶發送再見時,它只收到481,另一個用戶保持通話。
這種異常只發生在通話時間> = 10s時。當使用mobicents代理時,未能轉發再見

我可以看到在用戶發送再見之前關閉sip應用程序會話。我不知道如何避免這種情況。 請幫助我!

下面

是我的測試代碼:

@Override 
protected void doInvite(SipServletRequest request) throws ServletException, IOException { 
    List<SipURI> forks = new ArrayList<SipURI>(); 

    SipURI toURI = (SipURI) request.getTo().getURI(); 
    SipFactory sipFactory = (SipFactory) getServletContext().getAttribute(SIP_FACTORY); 
    forks.add(sipFactory.createSipURI(toURI.getUser(),"192.168.4.160:11180")); 
    forks.add(sipFactory.createSipURI("9988003","192.168.4.30:5080")); 

    //request.getProxy().setParallel(true); 
    List<ProxyBranch> branches = request.getProxy().createProxyBranches(forks); 
    for(ProxyBranch branch: branches){ 
     branch.setRecordRoute(true); 
    } 
    request.getProxy().startProxy(); 
} 

,我在我的日誌得到一個例外:

org.mobicents.servlet.sip.core.DispatcherException: Cannot find the corresponding sip application session to this subsequent request BYE sip:[email protected]:11180;transport=udp SIP/2.0 
Via: SIP/2.0/UDP 192.168.4.204:11180;rport=11180;branch=z9hG4bKBH36Ht963rXeB;received=192.168.4.204 
Max-Forwards: 70 
From: "Extension 9988001" <sip:[email protected]>;tag=KtgZ29USetpNj 
To: <sip:[email protected]>;tag=vN8t8Xm8yXg2K 
Call-ID: 0e0bee76-943b-1234-4ba8-000c29680286 
CSeq: 91266548 BYE 
Contact: <sip:[email protected]:11180> 
User-Agent: FreeSWITCH-mod_sofia/1.2.23~64bit 
Allow: INVITE,ACK,BYE,CANCEL,OPTIONS,MESSAGE,INFO,UPDATE,REGISTER,REFER,NOTIFY 
Supported: timer,path,replaces 
Reason: Q.850;cause=16;text="NORMAL_CLEARING" 
Content-Length: 0 

with the following popped route header <sip:192.168.4.89:5060;transport=udp;as=ded31d5f-500e-4c2d-84bb-370065d85c87;appname=1180947b;proxy=true;app_id=7599adf4;lr>, it may already have been invalidated or timed out 
    at org.mobicents.servlet.sip.core.dispatchers.SubsequentRequestDispatcher.dispatchMessage(SubsequentRequestDispatcher.java:248) 
    at org.mobicents.servlet.sip.core.SipApplicationDispatcherImpl.processRequest(SipApplicationDispatcherImpl.java:861) 
    at gov.nist.javax.sip.EventScanner.deliverRequestEvent(EventScanner.java:250) 
    at gov.nist.javax.sip.EventScanner.deliverEvent(EventScanner.java:146) 
    at gov.nist.javax.sip.SipProviderImpl.handleEvent(SipProviderImpl.java:185) 
    at gov.nist.javax.sip.DialogFilter.processRequest(DialogFilter.java:1324) 
    at gov.nist.javax.sip.stack.SIPServerTransactionImpl.processRequest(SIPServerTransactionImpl.java:811) 
    at gov.nist.javax.sip.stack.UDPMessageChannel.processMessage(UDPMessageChannel.java:578) 
    at gov.nist.javax.sip.stack.UDPMessageChannel.processIncomingDataPacket(UDPMessageChannel.java:524) 
    at gov.nist.javax.sip.stack.UDPMessageChannel.run(UDPMessageChannel.java:319) 
    at java.lang.Thread.run(Thread.java:722) 

回答

0

這是隻發生呼叫其持續時間>3分鐘?

sip servlets規範將SIP會話的默認持續時間定義爲3分鐘。您可以在應用程序中以sip.xml session-timeout屬性或編程方式修改它。

+0

當hanguped,持續時間只有> 10秒。你可以看到我的詳細日誌:[err log](https://groups.google.com/group/mobicents-public/attach/a5af52a063b6/proxy_error_log.txt?part=0.2&authuser=0&view=1)和[wireshark package] (https://groups.google.com/group/mobicents-public/attach/a5af52a063b6/proxy_error.pcapng?part=0.3&authuser=0&view=1) –

+0

您的DEBUG日誌缺少初始INVITE事務。請只做1次調用,展示問題併發送整個DEBUG日誌。你正在使用哪個版本?你有沒有試過來自https://mobicents.ci.cloudbees.com/job/RestcommSipServlets-Release/的最新版本? – jeand

相關問題