Send ring message

LA
Luis Antonio Dias de Sá Junior
Wed, May 13, 2009 1:56 PM

Hi all,

Just for information: I'm developing a SIP phone using the pjsip with java
(JNA).

My problem is to receive a call. The state already change to incoming but i
can't send ringing message. Is there any function in pjsip to do this?

klarq

Hi all, Just for information: I'm developing a SIP phone using the pjsip with java (JNA). My problem is to receive a call. The state already change to incoming but i can't send ringing message. Is there any function in pjsip to do this? -- klarq
MI
Murilo Ito
Wed, May 13, 2009 6:38 PM

Hi,

I'm not sure what's your problem, but you can send a ringing message
using "pjsua_call_answer(call_id,
180, NULL, NULL)" when "on_incoming_call" callback is called.

Murilo Ito.

On Wed, May 13, 2009 at 10:56 AM, Luis Antonio Dias de Sá Junior <
luisjunior.sa@gmail.com> wrote:

Hi all,

Just for information: I'm developing a SIP phone using the pjsip with java
(JNA).

My problem is to receive a call. The state already change to incoming but i
can't send ringing message. Is there any function in pjsip to do this?

klarq


Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org

Hi, I'm not sure what's your problem, but you can send a ringing message using "pjsua_call_answer(call_id, 180, NULL, NULL)" when "on_incoming_call" callback is called. Murilo Ito. On Wed, May 13, 2009 at 10:56 AM, Luis Antonio Dias de Sá Junior < luisjunior.sa@gmail.com> wrote: > Hi all, > > Just for information: I'm developing a SIP phone using the pjsip with java > (JNA). > > My problem is to receive a call. The state already change to incoming but i > can't send ringing message. Is there any function in pjsip to do this? > -- > klarq > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip@lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org > >
LA
Luis Antonio Dias de Sá Junior
Wed, May 13, 2009 6:41 PM

Thanks, that's it.

I call dll_callAnswer(callId, 180) and then dll_callAnswer(callId, 200). And
work fine.

2009/5/13 Murilo Ito murilo.ito@gmail.com

Hi,

I'm not sure what's your problem, but you can send a ringing message using
"pjsua_call_answer(call_id, 180, NULL, NULL)" when "on_incoming_call"
callback is called.

Murilo Ito.

On Wed, May 13, 2009 at 10:56 AM, Luis Antonio Dias de Sá Junior <
luisjunior.sa@gmail.com> wrote:

Hi all,

Just for information: I'm developing a SIP phone using the pjsip with java
(JNA).

My problem is to receive a call. The state already change to incoming but
i can't send ringing message. Is there any function in pjsip to do this?

klarq


Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org

--
Luis Antonio Dias de Sá Junior

Thanks, that's it. I call dll_callAnswer(callId, 180) and then dll_callAnswer(callId, 200). And work fine. 2009/5/13 Murilo Ito <murilo.ito@gmail.com> > Hi, > > > I'm not sure what's your problem, but you can send a ringing message using > "pjsua_call_answer(call_id, 180, NULL, NULL)" when "on_incoming_call" > callback is called. > > > Murilo Ito. > > > On Wed, May 13, 2009 at 10:56 AM, Luis Antonio Dias de Sá Junior < > luisjunior.sa@gmail.com> wrote: > >> Hi all, >> >> Just for information: I'm developing a SIP phone using the pjsip with java >> (JNA). >> >> My problem is to receive a call. The state already change to incoming but >> i can't send ringing message. Is there any function in pjsip to do this? >> -- >> klarq >> >> _______________________________________________ >> Visit our blog: http://blog.pjsip.org >> >> pjsip mailing list >> pjsip@lists.pjsip.org >> http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org >> >> > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip@lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org > > -- Luis Antonio Dias de Sá Junior