Re: Compensating for applet security restrictions

2003-07-04 Thread Susan Hoddinott
http://www.hexworx.com - Original Message - From: Susan Hoddinott [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, July 04, 2003 1:15 PM Subject: Re: Compensating for applet security restrictions Hello, I have thought about signing but unfortunately I have many

RE: Compensating for applet security restrictions

2003-07-03 Thread Atreya Basu
If you need to read and write to a file, just keep the files on the server. You can pull a resource off the originating server to read something. Writing to a file is probably going to be a problem however. You could always sign the applet and then you would be able to read and write all you

Re: Compensating for applet security restrictions

2003-07-03 Thread Nathan McMinn
You may want to investigate using HTTP to handle your transfer. You could download the file that your applet needs with HTTPClient, and have another JSP page that takes the file back from the applet and saves it on the server using HTTPClient and FileUpload. That at least gives you

Re: Compensating for applet security restrictions

2003-07-03 Thread Susan Hoddinott
PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 7:15 PM Subject: RE: Compensating for applet security restrictions If you need to read and write to a file, just keep the files on the server. You can pull a resource off the originating server to read something