Problem with pc to pc Voice chat on LAN using h323 protocol.
-
the problem m facing is it works fine on same PC when i put both peers on a single PC. but when i try to run it on LAN receiving call PC get hanged, y is it. thanks in advance. waiting for reply here is the code. these are the h323 events i have used
void h323_RemoteBusy()
{
MessageBox.Show("User is busy");
}void h323\_Disconnected(string RemoteUserName) { MessageBox.Show("Call Disconnected "); btnCall.IsEnabled = true; btnEndCall.IsEnabled = false; btnVideo.IsEnabled = false; lblCallStatus.Visibility = Visibility.Hidden; } void h323\_Connected(string RemoteUserName) { System.Windows.Forms.DialogResult myDialogResult = System.Windows.Forms.MessageBox.Show("Incomming Call by " + RemoteUserName + "\\nDo u want to recieve Call?", "Message", System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Question); if (myDialogResult == System.Windows.Forms.DialogResult.Yes) { h323.Answer(); } else { h323.Hangup(); } }
-
the problem m facing is it works fine on same PC when i put both peers on a single PC. but when i try to run it on LAN receiving call PC get hanged, y is it. thanks in advance. waiting for reply here is the code. these are the h323 events i have used
void h323_RemoteBusy()
{
MessageBox.Show("User is busy");
}void h323\_Disconnected(string RemoteUserName) { MessageBox.Show("Call Disconnected "); btnCall.IsEnabled = true; btnEndCall.IsEnabled = false; btnVideo.IsEnabled = false; lblCallStatus.Visibility = Visibility.Hidden; } void h323\_Connected(string RemoteUserName) { System.Windows.Forms.DialogResult myDialogResult = System.Windows.Forms.MessageBox.Show("Incomming Call by " + RemoteUserName + "\\nDo u want to recieve Call?", "Message", System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Question); if (myDialogResult == System.Windows.Forms.DialogResult.Yes) { h323.Answer(); } else { h323.Hangup(); } }
Third time you have posted the same question.
Did you know: That by counting the rings on a tree trunk, you can tell how many other trees it has slept with.