Sip Question regarding Dialing

giga

Well-Known Member
Licensed User
Longtime User
Still struggling with SIP issue.

I can dial a number but can't hear ringing(Dialtone).

The call does complete (by either the recorder or person answering) but there is no ringing up to the point of being answered.

Does anyone know how to add ringing(Dialtone) to the SIP.

BIG Thanks for any help.
 
Upvote 0

echapeta

Member
Licensed User
Longtime User
Still struggling with SIP issue.

I can dial a number but can't hear ringing(Dialtone).

The call does complete (by either the recorder or person answering) but there is no ringing up to the point of being answered.

Does anyone know how to add ringing(Dialtone) to the SIP.

BIG Thanks for any help.


The American ringtone is 2 secs of 450hz tone and 4 2 secs of silence aprox.
You must generate the dial tone:

Dim CallBeeper As Beeper
If Ringing Then
' timerstatus at 500 ms
If RingCount Mod 8 = 0 Then
If OutgoingCall Then
CallBeeper.Initialize2(2000,500,CallBeeper.VOLUME_VOICE_CALL)
Else
CallBeeper.Initialize2(2000,500,CallBeeper.VOLUME_RING)
End If
CallBeeper.Beep
End If
RingCount = RingCount+1
End If
 
Upvote 0
Top