I want to make an applet that will report
on the status of certain modules or product. Part of this applet will
also sort through an user given text file and assign the pertinent
information to those modules. The problem is the following....
As I understand it, Java applets cannot read a file from the users
or client machine. My possible workaround is to upload that file to
the server and then do the process in the server. Then return the
data bac to the client. How would I go about this. I know Java can't
read from the client side but is this true even if the client is the
one sending the info? Is there anther way for theclien to send a file
and have java proces thatfile somewhere else?