接続されたすべての通話で、通話と通話の IP アドレス、ポート、および callIDをログに記録する Java アプリを開発したいと考えています。CISCO JTapi を使用しています。
私は TerminalObserver を使用して RTP イベントを処理します。IP とポートを取得できますが、CallID が null です。
誰かが私を助けることができますか?ありがとう
これが私のコードです:
@Override
public void terminalChangedEvent(TermEv[] eventList) {
if (eventList == null) {
System.out.println("Terminal Event - Null");
} else {
String ip;
String port;
String callId;
CiscoCallID callc;
for (int i = 0; i < eventList.length; ++i) {
//System.out.println("Terminal "+eventList[i].getTerminal().getName()+" Event "+eventList[i].getID()+":");
switch (eventList[i].getID()){
case CiscoRTPInputStartedEv.ID:
CiscoRTPInputStartedEv inputStrEv = ((CiscoRTPInputStartedEv)eventList[i]);
ip = inputStrEv.getRTPInputProperties().getLocalAddress().getHostAddress();
port = String.valueOf(inputStrEv.getRTPInputProperties().getLocalPort());
callc = inputStrEv.getCallID();
if(callc == null){
callId = "no id";
}else{
callId = String.valueOf(callc.intValue());
}
System.out.println("RTP input started: " + ip+ ":"+port+", callID: "+callId);
break;
case CiscoRTPOutputStartedEv.ID:
CiscoRTPOutputStartedEv outputStrEv = (CiscoRTPOutputStartedEv)eventList[i];
ip = outputStrEv.getRTPOutputProperties().getRemoteAddress().getHostAddress();
port = String.valueOf(outputStrEv.getRTPOutputProperties().getRemotePort());
callc = outputStrEv.getCallID();
if(callc == null){
callId = "no id";
}else{
callId = String.valueOf(callc.intValue());
}
System.out.println("RTP output is started: " + ip+ ":"+port+", callID: "+callId);
break;
case CiscoRTPInputStoppedEv.ID:
CiscoRTPInputStoppedEv inputStopEv = (CiscoRTPInputStoppedEv)eventList[i];
callc = inputStopEv.getCallID();
if(callc == null){
callId = "no id";
}else{
callId = String.valueOf(callc.intValue());
}
System.out.println("RTP input is stoped: callID: "+callId);
break;
case CiscoRTPOutputStoppedEv.ID:
CiscoRTPOutputStoppedEv outputStopEv = (CiscoRTPOutputStoppedEv)eventList[i];
callc = outputStopEv.getCallID();
if(callc == null){
callId = "no id";
}else{
callId = String.valueOf(callc.intValue());
}
System.out.println("RTP output is stoped: callID: "+callId);
break;
}
}
}
}