Re: Write a file from an applet

1999-05-24 Thread dan
You've got a couple of choices. You can use RMI or CORBA (IIOP), going outside the HTTP protocol, if the files are big. In your case, this sounds like overkill. You can also encode the items into POST variables using URLConnection or HttpURLConnection. To do this, do something like: URL u

Re: Write a file from an applet

1999-05-24 Thread alx
You will need something on ther server side accepting the input from the applet. Like a servlet or a CGI or something. Would it be possible, if not easier, to not use an applet for user input and instead use an HTML form since it is more better suited to the task? On Mon, 24 May 1999, Gustavo M

Re: Write a file from an applet

1999-05-24 Thread larnoldy
On Mon, 24 May 1999 09:24:15 +0100 Gustavo Medina del Rosario <[EMAIL PROTECTED]> wrote > I am trying to write e file in a server from an applet. My applet > ask some questions to the user (name, address, etc.) and proccess the > information and I want it to write in the server (where the app

Write a file from an applet

1999-05-24 Thread Gustavo Medina del Rosario
Hi: My name is Guss and I write from Spain, so sorry for my poor english. I am trying to write e file in a server from an applet. My applet ask some questions to the user (name, address, etc.) and proccess the information and I want it to write in the server (where the applet is stor