Java phone question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dado

    Java phone question

    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

    #2
    Re: Java phone question

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

    "dado" <[email protected] om> wrote in message
    news:bqb6mq$lvk [email protected]. 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]


    Comment

    • dado

      #3
      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" <[email protected]> wrote in message
      news:bqert5$7la [email protected]. net...[color=blue]
      > I think that there is no Java library for ISDN (at least free one). Did[/color]
      you[color=blue]
      > google?
      >
      > "dado" <[email protected] om> wrote in message
      > news:bqb6mq$lvk [email protected]. 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]


      Comment

      • NicK

        #4
        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_numb er" 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]


        Comment

        • Harayasu

          #5
          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?


          Regards,
          Nathan

          Comment

          • Oskar Sigvardsson

            #6
            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.




            "dado" <[email protected] om> wrote in message news:<bqb6mq$lv [email protected] .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]

            Comment

            Working...