Connecting Tech Pros Worldwide Forums | Help | Site Map

Java phone question

dado
Guest
 
Posts: n/a
#1: Jul 17 '05
Hi,
I have ISDN (Fritz) card (PCI) in my PC.
I like to write a standalone java application with ability
to making outgoing calls and receive incoming calls.

On my PC I have installed J2SDK 1.4.1, JMF 2.1.1e and J323 5.0.0



Can somebody help me with well documented example link or maybe
personal expirience?

tnx


Mladen Adamovic
Guest
 
Posts: n/a
#2: Jul 17 '05

re: Java phone question


I think that there is no Java library for ISDN (at least free one). Did you
google?

"dado" <putogl@yahoo.com> wrote in message
news:bqb6mq$lvk$1@ls219.htnet.hr...[color=blue]
> Hi,
> I have ISDN (Fritz) card (PCI) in my PC.
> I like to write a standalone java application with ability
> to making outgoing calls and receive incoming calls.
>
> On my PC I have installed J2SDK 1.4.1, JMF 2.1.1e and J323 5.0.0
>
>
>
> Can somebody help me with well documented example link or maybe
> personal expirience?
>
> tnx
>
>[/color]


dado
Guest
 
Posts: n/a
#3: Jul 17 '05

re: Java phone question


Is there Java library for any phone ??

Yes I'm look at google but I find no usefull results...


"Mladen Adamovic" <adamm@logos-tel.com> wrote in message
news:bqert5$7la$2@ariane.blic.net...[color=blue]
> I think that there is no Java library for ISDN (at least free one). Did[/color]
you[color=blue]
> google?
>
> "dado" <putogl@yahoo.com> wrote in message
> news:bqb6mq$lvk$1@ls219.htnet.hr...[color=green]
> > Hi,
> > I have ISDN (Fritz) card (PCI) in my PC.
> > I like to write a standalone java application with ability
> > to making outgoing calls and receive incoming calls.
> >
> > On my PC I have installed J2SDK 1.4.1, JMF 2.1.1e and J323 5.0.0
> >
> >
> >
> > Can somebody help me with well documented example link or maybe
> > personal expirience?
> >
> > tnx
> >
> >[/color]
>
>[/color]


NicK
Guest
 
Posts: n/a
#4: Jul 17 '05

re: Java phone question


Hey Tinix! (I like that name; it sounds a lot like the Minix file system
:-) )

The farthest I've got to writing such an app is a simple dialer. Here's
how I went about it....

Hardware: computer with external ISDN adapter that connects to serial port

I first open the serial port and send strings in the form of Hayes AT
commands. "ATDTphone_number" for dialing and "ATH0" for hanging up.
After an ATDT the terminal adapter does wait for a handshake and
automatically hangs up after a certain number of seconds.

The downside is that the analog ports on my ISDN terminal adapter work
independently so the only way I can get the stand-alone application to
work is by connecting an external modem to the analog line-out RJ11 port
of the ISDN terminal adapter.

Sorry, I couldnt be of much help.




dado wrote:[color=blue]
> Hi,
> I have ISDN (Fritz) card (PCI) in my PC.
> I like to write a standalone java application with ability
> to making outgoing calls and receive incoming calls.
>
> On my PC I have installed J2SDK 1.4.1, JMF 2.1.1e and J323 5.0.0
>
>
>
> Can somebody help me with well documented example link or maybe
> personal expirience?
>
> tnx
>
>[/color]


Harayasu
Guest
 
Posts: n/a
#5: Jul 17 '05

re: Java phone question


> Is there Java library for any phone ??[color=blue]
>
> Yes I'm look at google but I find no usefull results...[/color]

I don't know if this is what you need, but did you take a look at the
Java Telephony API?
http://java.sun.com/products/jtapi/

Regards,
Nathan
Oskar Sigvardsson
Guest
 
Posts: n/a
#6: Jul 17 '05

re: Java phone question


I've never used it so i'm not sure how it works, but sun released
something called Java Telephony API. I think it's designed for use in
like callcenters and stuff, but i'm sure you could use it on your
computer just as a dialer.

http://java.sun.com/products/jtapi/index.jsp


"dado" <putogl@yahoo.com> wrote in message news:<bqb6mq$lvk$1@ls219.htnet.hr>...[color=blue]
> Hi,
> I have ISDN (Fritz) card (PCI) in my PC.
> I like to write a standalone java application with ability
> to making outgoing calls and receive incoming calls.
>
> On my PC I have installed J2SDK 1.4.1, JMF 2.1.1e and J323 5.0.0
>
>
>
> Can somebody help me with well documented example link or maybe
> personal expirience?
>
> tnx[/color]
Closed Thread