Hi,
I get a NullPtr exception, and the error shown below, when I call the do_click method on the Call JButton.
Is there some reason why this is happening? When I programmatically click the button, the SIP invite packet's
<contact header> [/code]
<phoneNumber@null>
, as against,
phoneNumber@hostname
when actually clicking the call Button. Can anyody throw light on why something like this could be happening???
Hi,
I get a NullPtr exception, and the error shown below, when I call the do_click method on the Call JButton.
Is there some reason why this is happening? When I programmatically click the button, the SIP invite packet's
, as against,
when actually clicking the call Button. Can anyody throw light on why something like this could be happening???
SwingUtilities.invokeLater(new Runnable() {
public void run() {
actionButton.doClick();
}
});
This works, when it is called from Netscape.JSObject
Cheers…