Re: [Asterisk-Users] using * for Internet call waiting

2005-04-25 Thread Gary Carr
You need a V92 capable modem for your client and a V92 capable access
server for you.  The feature is called modem on hold, it lets you
pick up a call without loosing your internet connection, and resume
the dialup session after hangup. The only feature you need for your
telco is call waiting. It does not need forward on busy. Regards,

That's one way of doing it. The other is call forward busy and how most of 
the existing services do it.


Gary

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


Re: [Asterisk-Users] using * for Internet call waiting

2005-04-22 Thread Gary Carr
The * box would sit in a CO connected via PRIs.

Gary

Gary Carr wrote:
Wondering if it is possible or if something already exist to setup * to 
offer Internet Call Waiting. For those that do not know what it is, it's 
a small application that runs on a users computer that will pop up a 
window letting them know they have a incoming call and who it is from 
then they can choose to take the call which will disconnect their dialup 
modem and ring their phone or send the call to voice mail.
That doesn't really make sense if the * box is in your house because
if the phone line is tied up for a dialup call, then the * box doesn't
have a phone line to receive the call either (unless you had call hunting
in which case you wouldn't need the feature in the first place).  This
sounds like the sort of feature that can only be offered on the
central office side which can know your line is tied up and then know
to email/alert you.
The other scenario is having an * box in a call center that is forwarding
calls to agents and notifies them by TCP/IP if when it tries their
extension and gets a busy signal.  This sounds possible, but I don't
think it's what you meant.
Steve
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

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


Re: [Asterisk-Users] using * for Internet call waiting

2005-04-22 Thread Gary Carr
The TDM part is pretty simple. The end user needs the call forward busy 
feature on thier line with the calls being forwarded to the * server. Taking 
it from there and sending it to a app on the users machine is whats left. I 
was thinking it could be sent with sip and a long timeout value.


Gary

I've seen this service done with AOL, I was curious how it was done on
standard phone lines.  Was it something the coordinated with the telco
in some sort of hunt group configuration or something of that nature?
-
Dan Levine
CYTEXONE | Your Technology Specialists
t: 877.CYTEXONE x 810
l: 212.477.0990 x 810
e: [EMAIL PROTECTED]
http://www.cytexone.com
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gary Carr
Sent: Thursday, April 21, 2005 4:50 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] using * for Internet call waiting
Wondering if it is possible or if something already exist to setup * to
offer Internet Call Waiting. For those that do not know what it is, it's
a small application that runs on a users computer that will pop up a
window letting them know they have a incoming call and who it is from
then they can choose to take the call which will disconnect their dialup
modem and ring their phone or send the call to voice mail.
Thanks,
Gary
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

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


Re: [Asterisk-Users] using * for Internet call waiting

2005-04-22 Thread Gary Carr
That's pretty close to what we are looking for but we want the user to have 
the option of taking the call which would disconnect the modem connection 
and allow the call to ring thru to the phone. Not sure how to accomplish 
that. I am sure our programmer could code a client but he has no experience 
with *. If we can figure out that part we could come up with something.


Gary

I'm an ISP, what I would like is a client for the dialup customer to run.
They would use call fwd busy to my did on an asterisk box.
I'd signal and they could click on button (URL) to download .wav file in
asterisk voice mail.
James
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mojo with
Horan  Company, LLC
Sent: Thursday, April 21, 2005 5:26 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] using * for Internet call waiting
I once tried the pagoo service.  Seems I had to ask the telco for Call
Forward Busy, and provide them with the toll free number pagoo gave me
for their service.  When the forwarded call is received by their
systems, they  would see _my_ callerid information, and thus know to
contact my computer for the notification purpose.
Also, not sure if this is on track with what you want, but I've used
jabber_client.pl tied into my dialplan to popup the callerid info of an
incoming call on my screen..  I could then choose to answer the call or
let it ring to voicemail.  Seems the jabber client Neos has
well-designed popups.
links:
http://jabberd.jabberstudio.org/2/
for the jabber_alert.pl script, allows sending jabber msgs from cmd line.
http://www.neosmt.com/
for a jabber client that pops up incoming messages. Note, this is also
an H.323 client.  Haven't tried it with * yet, but I have been meaning to.
Here's the specific Dialplan line I use:
[inpstn]
exten = s,2,TrySystem(echo Incoming call from :${CALLERID} |
jabber_alert.pl -e [EMAIL PROTECTED] -n [EMAIL PROTECTED] -w
senders_password)
Because it can sometimes take 2 or 3 seconds to send the jabber message
on my network, I use TrySystem instead of System, which blocks, waiting
for the return code from the command I passed.  Because the return code
is prolly irrelevant, you'd most likely want to use TrySystem too...
hope this helps :)
Moj

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gary Carr
Sent: Thursday, April 21, 2005 4:50 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] using * for Internet call waiting
Wondering if it is possible or if something already exist to setup * to
offer Internet Call Waiting. For those that do not know what it is, it's
a small application that runs on a users computer that will pop up a
window letting them know they have a incoming call and who it is from
then they can choose to take the call which will disconnect their dialup
modem and ring their phone or send the call to voice mail.
Thanks,
Gary
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

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


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

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


RE: [Asterisk-Users] using * for Internet call waiting

2005-04-22 Thread jltaylor
I'll take the scaled down version, just a client that plays voice mail and
shows caller id.
Any ideas?
james

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Nicolás
Gudiño
Sent: Friday, April 22, 2005 11:36 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] using * for Internet call waiting


On 4/21/05, Gary Carr [EMAIL PROTECTED] wrote:
 Wondering if it is possible or if something already exist to setup * to
 offer Internet Call Waiting. For those that do not know what it is, it's a
 small application that runs on a users computer that will pop up a window
 letting them know they have a incoming call and who it is from then they
can
 choose to take the call which will disconnect their dialup modem and ring
 their phone or send the call to voice mail.

You need a V92 capable modem for your client and a V92 capable access
server for you.  The feature is called modem on hold, it lets you
pick up a call without loosing your internet connection, and resume
the dialup session after hangup. The only feature you need for your
telco is call waiting. It does not need forward on busy. Regards,

--
Nicolás Gudiño
Buenos Aires - Argentina
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

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


Re: [Asterisk-Users] using * for Internet call waiting

2005-04-22 Thread Nicolás Gudiño
On 4/21/05, Gary Carr [EMAIL PROTECTED] wrote:
 Wondering if it is possible or if something already exist to setup * to
 offer Internet Call Waiting. For those that do not know what it is, it's a
 small application that runs on a users computer that will pop up a window
 letting them know they have a incoming call and who it is from then they can
 choose to take the call which will disconnect their dialup modem and ring
 their phone or send the call to voice mail.

You need a V92 capable modem for your client and a V92 capable access
server for you.  The feature is called modem on hold, it lets you
pick up a call without loosing your internet connection, and resume
the dialup session after hangup. The only feature you need for your
telco is call waiting. It does not need forward on busy. Regards,

-- 
Nicolás Gudiño
Buenos Aires - Argentina
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] using * for Internet call waiting

2005-04-21 Thread Steve Prior
Gary Carr wrote:
Wondering if it is possible or if something already exist to setup * to 
offer Internet Call Waiting. For those that do not know what it is, it's 
a small application that runs on a users computer that will pop up a 
window letting them know they have a incoming call and who it is from 
then they can choose to take the call which will disconnect their dialup 
modem and ring their phone or send the call to voice mail.
That doesn't really make sense if the * box is in your house because
if the phone line is tied up for a dialup call, then the * box doesn't
have a phone line to receive the call either (unless you had call hunting
in which case you wouldn't need the feature in the first place).  This
sounds like the sort of feature that can only be offered on the
central office side which can know your line is tied up and then know
to email/alert you.
The other scenario is having an * box in a call center that is forwarding
calls to agents and notifies them by TCP/IP if when it tries their
extension and gets a busy signal.  This sounds possible, but I don't
think it's what you meant.
Steve
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] using * for Internet call waiting

2005-04-21 Thread Dan Levine
I've seen this service done with AOL, I was curious how it was done on
standard phone lines.  Was it something the coordinated with the telco
in some sort of hunt group configuration or something of that nature?


-
Dan Levine
CYTEXONE | Your Technology Specialists
t: 877.CYTEXONE x 810
l: 212.477.0990 x 810
e: [EMAIL PROTECTED]
http://www.cytexone.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gary Carr
Sent: Thursday, April 21, 2005 4:50 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] using * for Internet call waiting

Wondering if it is possible or if something already exist to setup * to
offer Internet Call Waiting. For those that do not know what it is, it's
a small application that runs on a users computer that will pop up a
window letting them know they have a incoming call and who it is from
then they can choose to take the call which will disconnect their dialup
modem and ring their phone or send the call to voice mail.


Thanks,


Gary


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




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


Re: [Asterisk-Users] using * for Internet call waiting

2005-04-21 Thread Mojo with Horan Company, LLC
I once tried the pagoo service.  Seems I had to ask the telco for Call 
Forward Busy, and provide them with the toll free number pagoo gave me 
for their service.  When the forwarded call is received by their 
systems, they  would see _my_ callerid information, and thus know to 
contact my computer for the notification purpose.

Also, not sure if this is on track with what you want, but I've used 
jabber_client.pl tied into my dialplan to popup the callerid info of an 
incoming call on my screen..  I could then choose to answer the call or 
let it ring to voicemail.  Seems the jabber client Neos has 
well-designed popups.

links:
http://jabberd.jabberstudio.org/2/
for the jabber_alert.pl script, allows sending jabber msgs from cmd line.
http://www.neosmt.com/
for a jabber client that pops up incoming messages. Note, this is also 
an H.323 client.  Haven't tried it with * yet, but I have been meaning to.

Here's the specific Dialplan line I use:
[inpstn]
exten = s,2,TrySystem(echo Incoming call from :${CALLERID} | 
jabber_alert.pl -e [EMAIL PROTECTED] -n [EMAIL PROTECTED] -w 
senders_password)

Because it can sometimes take 2 or 3 seconds to send the jabber message 
on my network, I use TrySystem instead of System, which blocks, waiting 
for the return code from the command I passed.  Because the return code 
is prolly irrelevant, you'd most likely want to use TrySystem too...

hope this helps :)
Moj

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gary Carr
Sent: Thursday, April 21, 2005 4:50 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] using * for Internet call waiting
Wondering if it is possible or if something already exist to setup * to
offer Internet Call Waiting. For those that do not know what it is, it's
a small application that runs on a users computer that will pop up a
window letting them know they have a incoming call and who it is from
then they can choose to take the call which will disconnect their dialup
modem and ring their phone or send the call to voice mail.
Thanks,
Gary
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

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

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


RE: [Asterisk-Users] using * for Internet call waiting

2005-04-21 Thread jltaylor
Would like to see a small client for this.
It could be SIP or IAX without all of the phone features.
It would need to provide a URL to the .wav file so it could be played.
Any ideas?
James

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Gary Carr
Sent: Thursday, April 21, 2005 3:50 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] using * for Internet call waiting


Wondering if it is possible or if something already exist to setup * to
offer Internet Call Waiting. For those that do not know what it is, it's a
small application that runs on a users computer that will pop up a window
letting them know they have a incoming call and who it is from then they can
choose to take the call which will disconnect their dialup modem and ring
their phone or send the call to voice mail.


Thanks,


Gary


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

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


RE: [Asterisk-Users] using * for Internet call waiting

2005-04-21 Thread jltaylor
I'm an ISP, what I would like is a client for the dialup customer to run.
They would use call fwd busy to my did on an asterisk box.
I'd signal and they could click on button (URL) to download .wav file in
asterisk voice mail.
James

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mojo with
Horan  Company, LLC
Sent: Thursday, April 21, 2005 5:26 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] using * for Internet call waiting


I once tried the pagoo service.  Seems I had to ask the telco for Call
Forward Busy, and provide them with the toll free number pagoo gave me
for their service.  When the forwarded call is received by their
systems, they  would see _my_ callerid information, and thus know to
contact my computer for the notification purpose.

Also, not sure if this is on track with what you want, but I've used
jabber_client.pl tied into my dialplan to popup the callerid info of an
incoming call on my screen..  I could then choose to answer the call or
let it ring to voicemail.  Seems the jabber client Neos has
well-designed popups.

links:
http://jabberd.jabberstudio.org/2/
for the jabber_alert.pl script, allows sending jabber msgs from cmd line.

http://www.neosmt.com/
for a jabber client that pops up incoming messages. Note, this is also
an H.323 client.  Haven't tried it with * yet, but I have been meaning to.

Here's the specific Dialplan line I use:
[inpstn]
exten = s,2,TrySystem(echo Incoming call from :${CALLERID} |
jabber_alert.pl -e [EMAIL PROTECTED] -n [EMAIL PROTECTED] -w
senders_password)

Because it can sometimes take 2 or 3 seconds to send the jabber message
on my network, I use TrySystem instead of System, which blocks, waiting
for the return code from the command I passed.  Because the return code
is prolly irrelevant, you'd most likely want to use TrySystem too...

hope this helps :)
Moj


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gary Carr
Sent: Thursday, April 21, 2005 4:50 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] using * for Internet call waiting

Wondering if it is possible or if something already exist to setup * to
offer Internet Call Waiting. For those that do not know what it is, it's
a small application that runs on a users computer that will pop up a
window letting them know they have a incoming call and who it is from
then they can choose to take the call which will disconnect their dialup
modem and ring their phone or send the call to voice mail.


Thanks,


Gary


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




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




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

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