How do I register position and Dn in nortel enviroment?
Code sample only shows just one DN register.
myPhoneTeleLine.open();
// The sleep method here creates a 1 second network delay.
try{
Thread.sleep(1000);
}catch(InterruptedException interruptedexception) { }
you need to register BOTH ACD position AND extension. So, in essence, you would have TWO extension objects and two register requests.
You also will need to remember which one is ACD Position and which one is Extension, because your Login/Logout/Ready/etc needs to be performed on extension object assigned to ACD position and your RequestMakeCall needs to be made through extension object assigned to extension.
There might be a way to combined both of them into one object, but I never bothered to find it and just always programmed with two objects assigned to two DNs.