Re: I/O to HTTP url

1999-04-26 Thread Andreas Rueckert
Hi! On Mon, 26 Apr 1999 Stuart McLean wrote: >Michael Holst wrote: >> >> Hello, >> >> I'm not a Java newbie, but I am not too familiar with the networking >> classes of our dear "write once, run anywhere" language. >> The problem is the following, I need to let an applet write a file to a >> sp

Re: I/O to HTTP url

1999-04-26 Thread Stuart McLean
Michael Holst wrote: > > Hello, > > I'm not a Java newbie, but I am not too familiar with the networking > classes of our dear "write once, run anywhere" language. > The problem is the following, I need to let an applet write a file to a > specified http address in order for it to work correctly

Re: I/O to HTTP url

1999-04-24 Thread Jchart Staff
You would need to have the Java code call a cgi script or servlet that resides on the remote host. The cgi or servlet could then write to its local machine. You are correct about the java.io.*. You would need to use the java.net.* api. to run the script. Michael Holst wrote: > Hello, > > I'm no

I/O to HTTP url

1999-04-24 Thread Michael Holst
Hello, I'm not a Java newbie, but I am not too familiar with the networking classes of our dear "write once, run anywhere" language. The problem is the following, I need to let an applet write a file to a specified http address in order for it to work correctly. How do I acomplish this? If I am c