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 2 of 2

Thread: How do embedded java applets send and recv data?

  1. #1
    Junior Member
    Join Date
    Feb 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default How do embedded java applets send and recv data?

    http://www.jsresources.org/faq_audio.html#sec_ports On second read i think this link is a variant of java

    I was reading and found this article over how audio is accessed via ports and how to control the volume and mixers on a systems soundcard. But i am also concerned with how an applet embedded in html sends data back to the server and then to other clients within the browser. Since its not necessarily downloaded on the end clients system i wasn't sure if it used the same method to make a network connection or not. I'm probably misunderstanding this and making it more complicated then it really is.

    On a side note what other things can you do buy accessing the settings of the soundcard using the methods described...on a more production level.
    Last edited by MRnobody; February 29th, 2012 at 08:36 PM.


  2. #2
    Member
    Join Date
    Feb 2012
    Posts
    58
    Thanks
    0
    Thanked 3 Times in 3 Posts

    Default Re: How do embedded java applets send and recv data?

    A Java applet is embedded using HTML tags: <applet> tag or <object> tag. It can make HTTP connection or socket connection to a remote server, if it is granted appropriate permissions.

Similar Threads

  1. Replies: 1
    Last Post: August 12th, 2011, 10:09 AM
  2. [SOLVED] Java DB embedded
    By potatostar in forum JDBC & Databases
    Replies: 5
    Last Post: July 20th, 2011, 11:17 AM
  3. Send and Receive data from socket simultaneously
    By bigmac025 in forum File I/O & Other I/O Streams
    Replies: 0
    Last Post: March 25th, 2011, 05:18 PM
  4. Replies: 0
    Last Post: April 15th, 2010, 05:13 AM
  5. Problem on sending vectors from Java server to C# client
    By MS_Dark in forum Java Networking
    Replies: 2
    Last Post: July 7th, 2009, 02:35 PM