|
Test MCU Client |
Top Previous Next |
|
A Delphi built client that uses the AstaVoIP H323 toolkit is included as an EXE and with Delphi source.
Note: If you want to compile the source you will must download the Asta VoIP H323 Toolkit Version 2.
The normal Asta Voip demo has been modified to call a room rather than gateway.
procedure TForm1.Button1Click(Sender: TObject); var RoomName : String; begin if EdRoomName.Text <> '' then RoomName := EdRoomName.Text + '@' else RoomName := '';
Log ('Making call to ' + HostEdit.Text + ' as ' + Edit1.Text); VoIPEndPoint1.MakeCall (RoomName + HostEdit.Text, FCurrentCallToken); end;
|