Peter Kaltschmitt | Hi, when coding: CMECall call = myProvider.createCall(CMECall.Type.DIRECT); CMEVirtualTerminal t = (CMEVirtualTerminal) myProvider.createTerminal("4712", CMEAbstractTerminal.Type.VIRTUAL, "virtual"); CMEAbstractAddress myAddress = myProvider.createAddress("777",CMEAbstractAddress.Type.USER); t.addAddress(myAddress, cstaListener); call.connect(t, cmeAddress, destDn, (CMEResponseInterface) cmeResponseListener, false); it is not possible to use t in call.connect(), because the connect Methods requires CMEPhone, not a CMEVirtualTerminal. So how is it possible to make a call from a CMEVirtualTerminal, that mean a terminal with a dn but without a mac (a solely programmatically controlled terminal). This use is not possible because of the Java API. Independently of any IOS Config this method is not usable for a CMEVirtualTerminal. Thanks for your help! |