Re: [asterisk-users] Page() Function Timeout

2006-11-16 Thread Dinesh Nair



On 11/16/06 06:06 David Gagnon said the following:

Which version are you using? There was a problem in 1.2.12.1 with the page
application. Update to 1.2.13.


what was the problem ?

--
Regards,   /\_/\   All dogs go to heaven.
[EMAIL PROTECTED](0 0)   http://www.openmalaysiablog.com/
+==oOO--(_)--OOo==+
| for a in past present future; do|
|   for b in clients employers associates relatives neighbours pets; do   |
|   echo The opinions here in no way reflect the opinions of my $a $b.  |
| done; done  |
+=+
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] Page() Function Timeout

2006-11-15 Thread Ken Williams



I'm trying to use a 
simple page function. It starts a MeetMe conference with the devices I've 
listed, but the devices hang up after 3-5 seconds. After doing some 
research I found this was a problem, and I needed to remove a (5) from 
app_page.c

Well, my app_page.c 
didn't have the (5). I did make clean; make install again just in case I 
had some weird compiled version installed that had the (5) in it. After 
compiling I restarted the asterisk service and tried paging again and still had 
the same problem.

In the CLI I get the 
following, which you can see the (5) is still in there somehow. 


 
-- Playing 'beep' (language 'en') -- Launching 
MeetMe(1010553064d|mqxdw(5)) on SIP/710-09a50038 -- 
Created MeetMe conference 1023 for conference 
'1010553064d' -- Launching MeetMe(1010553064d|mqxdw(5)) on 
SIP/717-09a48758
I've grep'd the 
entire src folder for \(5\) as well as qxd trying to find all instances of this, 
and the only ones are listed in the app_page.c file. Any suggestions on 
where to get this rogue (5) out of here?

 snprintf(meetmeopts, 
sizeof(meetmeopts), "%ud|%sqxdw", confid, ast_test_flag(flags, PAGE_DUPLEX) 
? "" : "m");

and 


 if (!res) 
{ 
snprintf(meetmeopts, sizeof(meetmeopts), "%ud|A%sqxd", confid, 
$ 
pbx_exec(chan, app, meetmeopts, 
1); }
are the only 
sections of the app_page.c that have the meetme call in it.

My page functions, 
fwiw, both have the same problem:

;Paging

exten = 
760,1,SIPAddHeader(Call-Info: answer-after=0)exten = 
760,2,Page(SIP/717SIP/710SIP/702|d)exten = 
760,3,Hangup

exten = 
761,1,SIPAddHeader(Call-Info: answer-after=0)exten = 
761,2,Page(SIP/717SIP/710SIP/702)exten = 
761,3,Hangup
Any suggestions 
would be very helpful.
Ken
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [asterisk-users] Page() Function Timeout

2006-11-15 Thread Ken Williams



BAH!

My Makefile in the apps folder was missing 
app_page.c. I added it, recompiled, page is working 
properly.


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Ken 
WilliamsSent: Wednesday, November 15, 2006 10:33 AMTo: 
Asterisk Users Mailing List - Non-Commercial DiscussionSubject: 
[asterisk-users] Page() Function Timeout

I'm trying to use a 
simple page function. It starts a MeetMe conference with the devices I've 
listed, but the devices hang up after 3-5 seconds. After doing some 
research I found this was a problem, and I needed to remove a (5) from 
app_page.c

Well, my app_page.c 
didn't have the (5). I did make clean; make install again just in case I 
had some weird compiled version installed that had the (5) in it. After 
compiling I restarted the asterisk service and tried paging again and still had 
the same problem.

In the CLI I get the 
following, which you can see the (5) is still in there somehow. 


 
-- Playing 'beep' (language 'en') -- Launching 
MeetMe(1010553064d|mqxdw(5)) on SIP/710-09a50038 -- 
Created MeetMe conference 1023 for conference 
'1010553064d' -- Launching MeetMe(1010553064d|mqxdw(5)) on 
SIP/717-09a48758
I've grep'd the 
entire src folder for \(5\) as well as qxd trying to find all instances of this, 
and the only ones are listed in the app_page.c file. Any suggestions on 
where to get this rogue (5) out of here?

 snprintf(meetmeopts, 
sizeof(meetmeopts), "%ud|%sqxdw", confid, ast_test_flag(flags, PAGE_DUPLEX) 
? "" : "m");

and 


 if (!res) 
{ 
snprintf(meetmeopts, sizeof(meetmeopts), "%ud|A%sqxd", confid, 
$ 
pbx_exec(chan, app, meetmeopts, 
1); }
are the only 
sections of the app_page.c that have the meetme call in it.

My page functions, 
fwiw, both have the same problem:

;Paging

exten = 
760,1,SIPAddHeader(Call-Info: answer-after=0)exten = 
760,2,Page(SIP/717SIP/710SIP/702|d)exten = 
760,3,Hangup

exten = 
761,1,SIPAddHeader(Call-Info: answer-after=0)exten = 
761,2,Page(SIP/717SIP/710SIP/702)exten = 
761,3,Hangup
Any suggestions 
would be very helpful.
Ken
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Page() Function Timeout

2006-11-15 Thread Steven Ringwald

Ken Williams wrote:
I'm trying to use a simple page function.  It starts a MeetMe 
conference with the devices I've listed, but the devices hang up after 
3-5 seconds.  After doing some research I found this was a problem, 
and I needed to remove a (5) from app_page.c
 
Well, my app_page.c didn't have the (5).  I did make clean; make 
install again just in case I had some weird compiled version installed 
that had the (5) in it.  After compiling I restarted the asterisk 
service and tried paging again and still had the same problem.
 
In the CLI I get the following, which you can see the (5) is still in 
there somehow. 
 
-- Playing 'beep' (language 'en')

-- Launching MeetMe(1010553064d|mqxdw(5)) on SIP/710-09a50038
-- Created MeetMe conference 1023 for conference '1010553064d'
-- Launching MeetMe(1010553064d|mqxdw(5)) on SIP/717-09a48758
I've grep'd the entire src folder for \(5\) as well as qxd trying to 
find all instances of this, and the only ones are listed in the 
app_page.c file.  Any suggestions on where to get this rogue (5) out 
of here?
 
snprintf(meetmeopts, sizeof(meetmeopts), %ud|%sqxdw, confid, 
ast_test_flag(flags, PAGE_DUPLEX) ?  : m);
 
and
 
if (!res) {
snprintf(meetmeopts, sizeof(meetmeopts), %ud|A%sqxd, 
confid, $

pbx_exec(chan, app, meetmeopts, 1);
}
are the only sections of the app_page.c that have the meetme call in it.
 
My page functions, fwiw, both have the same problem:
 
;Paging
 
exten = 760,1,SIPAddHeader(Call-Info: answer-after=0)

exten = 760,2,Page(SIP/717SIP/710SIP/702|d)
exten = 760,3,Hangup
 
exten = 761,1,SIPAddHeader(Call-Info: answer-after=0)

exten = 761,2,Page(SIP/717SIP/710SIP/702)
exten = 761,3,Hangup
Any suggestions would be very helpful.


I had the same problem and ended up changing the 5 to a 300. If you 
don't specify a (N) after the 'w', I believe it defaults to 5.


Steve


___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [asterisk-users] Page() Function Timeout

2006-11-15 Thread David Gagnon
Which version are you using? There was a problem in 1.2.12.1 with the page
application. Update to 1.2.13.

David

-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] De la part de Steven
Ringwald
Envoyé : 15 novembre 2006 13:45
À : Asterisk Users Mailing List - Non-Commercial Discussion
Objet : Re: [asterisk-users] Page() Function Timeout

Ken Williams wrote:
 I'm trying to use a simple page function.  It starts a MeetMe 
 conference with the devices I've listed, but the devices hang up after 
 3-5 seconds.  After doing some research I found this was a problem, 
 and I needed to remove a (5) from app_page.c
  
 Well, my app_page.c didn't have the (5).  I did make clean; make 
 install again just in case I had some weird compiled version installed 
 that had the (5) in it.  After compiling I restarted the asterisk 
 service and tried paging again and still had the same problem.
  
 In the CLI I get the following, which you can see the (5) is still in 
 there somehow. 
  
 -- Playing 'beep' (language 'en')
 -- Launching MeetMe(1010553064d|mqxdw(5)) on SIP/710-09a50038
 -- Created MeetMe conference 1023 for conference '1010553064d'
 -- Launching MeetMe(1010553064d|mqxdw(5)) on SIP/717-09a48758
 I've grep'd the entire src folder for \(5\) as well as qxd trying to 
 find all instances of this, and the only ones are listed in the 
 app_page.c file.  Any suggestions on where to get this rogue (5) out 
 of here?
  
 snprintf(meetmeopts, sizeof(meetmeopts), %ud|%sqxdw, confid, 
 ast_test_flag(flags, PAGE_DUPLEX) ?  : m);
  
 and
  
 if (!res) {
 snprintf(meetmeopts, sizeof(meetmeopts), %ud|A%sqxd, 
 confid, $
 pbx_exec(chan, app, meetmeopts, 1);
 }
 are the only sections of the app_page.c that have the meetme call in it.
  
 My page functions, fwiw, both have the same problem:
  
 ;Paging
  
 exten = 760,1,SIPAddHeader(Call-Info: answer-after=0)
 exten = 760,2,Page(SIP/717SIP/710SIP/702|d)
 exten = 760,3,Hangup
  
 exten = 761,1,SIPAddHeader(Call-Info: answer-after=0)
 exten = 761,2,Page(SIP/717SIP/710SIP/702)
 exten = 761,3,Hangup
 Any suggestions would be very helpful.

I had the same problem and ended up changing the 5 to a 300. If you 
don't specify a (N) after the 'w', I believe it defaults to 5.

Steve


___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users