Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 6 of 6

Thread: Want to make java application available to all user of Network

  1. #1
    Junior Member
    Join Date
    Sep 2011
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Smile Want to make java application available to all user of Network

    Hi

    Sphinx4 is speech recognition application (Pure java application-only class files-no any GUI). Currently i able to run this application on my desktop by just executing one class file with some parameters. Sphinx4 takes one audio wave file as input and give corresponding text transcription of this audio file as output. But i want to make this application available to all user of network. So i need to run this application on server.

    Also want to make one web interface that interact with this application
    for example:
    Architecture.jpg


    how can i do this?
    Any help would greatly appreciate.

    thanks for your time.


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Want to make java application available to all user of Network

    Browser's can upload files selected by a user in an html page. The server could then read that file and return a page to the browser with the text.

  3. #3
    Junior Member
    Join Date
    Sep 2011
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Want to make java application available to all user of Network

    Yes Thanks
    But which server should i use?
    what the first step?

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Want to make java application available to all user of Network

    What servers are available to you? How much do you want to pay to use the server?
    What code do you know how to write for running on the server to handle the receiving of the wav file, ccalling the translator and returning the text.

  5. #5
    Junior Member
    Join Date
    Sep 2011
    Posts
    1
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: Want to make java application available to all user of Network

    Quote Originally Posted by nicool View Post
    Yes Thanks
    But which server should i use?
    what the first step?
    For exposing your functionality to the whole network , you need to build a Web-application which will make your application accessible through the browser. You can use any of the servers available to you . Apache Tomcat is the free server easily downloadable from Apache site or you can also use the IBM Weblogic.
    In your web-application you can make a web page using JSP where you can specify HTML controls for uploading the .wav file and once this .wav file processing request is submitted , you need to make a servlet which will recieve that request and call the translator for running the functionality.
    Last edited by dineshchand1984; September 23rd, 2011 at 03:02 AM.

  6. The Following User Says Thank You to dineshchand1984 For This Useful Post:

    nicool (September 25th, 2011)

  7. #6
    Junior Member
    Join Date
    Sep 2011
    Posts
    9
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Want to make java application available to all user of Network

    Thanks dineshchand

Similar Threads

  1. Map Network Drive using Java
    By umapathy in forum Java Networking
    Replies: 2
    Last Post: May 24th, 2011, 07:49 AM
  2. [SOLVED] Java Network simple issue
    By Budlee in forum Java Networking
    Replies: 2
    Last Post: April 7th, 2011, 12:49 PM
  3. How to enumarete Network Nodes using Java
    By dilshadpaleri in forum Java Networking
    Replies: 0
    Last Post: September 7th, 2010, 06:45 AM
  4. Replies: 0
    Last Post: December 3rd, 2009, 04:43 PM
  5. How to make user press enter to continue in program?
    By BC2210 in forum File I/O & Other I/O Streams
    Replies: 3
    Last Post: October 3rd, 2009, 05:08 AM