Log In
Developer Network
Technologies
Join the Network
Member Services
Events & Community
JTAPI (JTAPI) Developer Center
Overview
Documentation
Community
Wiki
Testing
Everything
This Site
Blogs
9.1 JTAPI Documentation Now Available
Prem Bejjam
09 Jan 2013
Unified Communications 9.0 Partner Bundle Offer Now Available to Order
Amanda Whaley
21 Sep 2012
Developer Partner 2012 US Update Presentations Available
George Gary
29 Jun 2012
Developer Partner 2012 London Update Presentations Available
George Gary
10 Feb 2012
Unified Communication 8.6 NFR Bundle Now Orderable
George Gary
22 Aug 2011
Showing 1 - 5 of 30 results.
Items per Page 5
Page
(Changing the value of this field will reload the page.)
1
2
3
4
5
6
of 6
First
Previous
Next
Last
Forums
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to Cisco JTAPI Questions
CiscoRTPInputStartedEv.getRTPInputProperties() problem
Threads [
Previous
|
Next
]
junk qwe
Posts:
2
Join Date:
12/6/12
Recent Posts
CiscoRTPInputStartedEv.getRTPInputProperties() problem
Answer
12/6/12 10:20 AM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
This is my code for start a call.
I am trying to record the rtp strams in another system.
public synchronized void terminalChangedEvent ( TermEv [] eventList )
{
traceGenericEvents ( eventList );
for ( int i = 0; i < eventList.length; i++ )
{
if ( eventList
instanceof CiscoTermEv )
{
try
{
CiscoMediaTerminal mediaTerm;
CiscoTermEv ev = (CiscoTermEv) eventList
;
switch ( ev.getID () )
{
case CiscoRTPInputStartedEv.ID:
trace.bufPrint ( "Received CiscoRTPInputStartedEv :: {}\n" );
trace.setRTPactive(true);
CiscoRTPInputStartedEv inEv = (CiscoRTPInputStartedEv) ev;
trace.setRTPInputProperties(inEv.getRTPInputProperties () );
trySetCallStarted((com.cisco.jtapi.extensions.CiscoEv)ev);
break;
.....................
.....................
My problem is that i am not getting the right RTP streams (ip and port) from this line:
inEv.getRTPInputProperties ()
The MTP feature is enabled on the call manager
Any idea how to get the right streams for that call?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Abhishek Malhotra
Posts:
119
Join Date:
10/28/10
Recent Posts
RE: CiscoRTPInputStartedEv.getRTPInputProperties() problem
Answer
5/17/13 1:07 AM as a reply to junk qwe.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
RTPInputProperties are going to give you the IP Address and Port of the near end(ie. your CiscoMediaTerminal) while RTPOutputProperties are going to give you RTP Details for the far end.
Can you explain on what information are you really looking for when you say, how to get right streams for the call?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Collateral
No files available