Re: pick up call on CTI routepoint
Stephan Steiner <[email protected]>
| Newsgroups | gmane.comp.java.sun.jtapi |
|---|---|
| Message-ID | <LISTSERV%[email protected]> |
Actually, I'm very aware of the differences between CTI Route points and CTI Ports. But I was wondering about the difference in registration. When I register my CTI Port, following the JTAPI tutorial, my CiscoMediaCapability array looks as follows: CiscoMediaCapability [] caps = new CiscoMediaCapability[1]; caps[0] = CiscoMediaCapability.G711_64K_30_MILLISECONDS; The same code gives a CiscoRegistrationException for a CTI Routepoint and has to be replaced by this as we've seen: CiscoMediaCapability [] caps = new CiscoMediaCapability[1]; caps[0] = new CiscoG711MediaCapability (); So one time you take the static subclass, and the other time you have to create your own instance of the class. What I don't get is why one works and the other doesn't. =========================================================================== To unsubscribe, send email to [email protected] and include in the body of the message "signoff JTAPI-INTEREST". For general help, send email to [email protected] and include in the body of the message "help".