Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Dialing to a phone from java

 
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
Is it possible to dial a telephone number through a java code, something like VOIP.
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
See what you can find on the comm package. Here is an article that might get you started.
 
Srinivasa Raghavan
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi James,
Thanks for the link.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The comm package can help you dial a modem using Java but it will not help you with VOIP. VOIP substutes a computer network for the telephone network. Since they're two different systems, you can't touch a normal phone with VOIP without something somewhere making the crossover. First thing to do is understand what VOIP is. There's a good intro article at How Stuff Works.
 
Srinivasa Raghavan
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm a new bie to this ip-telephony. So let me start this first.
Is Java's Multimedia Framework is enough to do a Voice chat program, some thing like yahoo voice chat. It's like PC-PC so no PC-Telephone.

Do i need any external pheripherals for this ?
[ June 27, 2005: Message edited by: Srinivasa Raghavan ]
 
Joe Ess
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Srinivasa Raghavan:
Is Java's Multimedia Framework is enough to do a Voice chat program, some thing like yahoo voice chat. It's like PC-PC so no PC-Telephone.


Starting simple would be wise. JMF is exactly what you need.


Do i need any external pheripherals for this ?


Microphone, speakers, network connection.
 
Srinivasa Raghavan
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Joe.
 
Ranch Hand
Posts: 531
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Srinivasa Raghavan:
Hi all,
Is it possible to dial a telephone number through a java code, something like VOIP.



I think you're really asking whether there is a standard VOIP API. You can write anything you want in Java including your own VOIP API or a remote control for an Easy-Bake-Oven.
reply
    Bookmark Topic Watch Topic
  • New Topic