Re: Web upload of a Java class

2000-11-13 Thread Sven van 't Veer
Storm Linux User wrote: It's not form commercial use. It's for my research project for getting my master's degree in Electrical Engineering ... I'm not concered about securety right now. Hmm as long as you're not pursueing a masters in computer security.. Take a look at

RE: Web upload of a Java class

2000-11-12 Thread Russ White
This sounds dangerous. Why would you want to do it? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Storm Linux User Sent: Saturday, November 11, 2000 6:55 AM To: Orion-Interest Subject: Re: Web upload of a Java class I mean it's showed to the user

Re: Web upload of a Java class

2000-11-12 Thread Storm Linux User
, November 10, 2000 10:46 AM To: Orion-Interest Subject: Web upload of a Java class Hi... I need to upload a compiled class to my Orion application and then execute some methods of it. Anybody knows how can I do it? []s Guilherme Ceschiatti [EMAIL PROTECTED]

Re: Web upload of a Java class

2000-11-12 Thread Robert Krueger
At 15:00 12.11.00 , you wrote: It's not form commercial use. It's for my research project for getting my master's degree in Electrical Engineering ... I'm not concered about securety right now. then hack right on. will be fun. the security aspects of this could easily fill a chapter of your

Re: Web upload of a Java class

2000-11-12 Thread Storm Linux User
I'm using the HTML form input type="file" name="my_file" to upload my compiled class file. When I try to get the file in the servlet, using: File f = (File)request.getParameter("my_file"); It does not work. I need to get the class file, generate an object of it and then execute some methods.

Re: Web upload of a Java class

2000-11-12 Thread Robert Krueger
oh, I see. that's something the servlet api doesn't do for you. to parse a multipart request (that's what you use for file-upload) all you get is an input stream that you can parse which you have to decode. however there are plenty of utilities that do this for you. one is even shipped with

Re: Web upload of a Java class

2000-11-11 Thread Robert Krueger
At 16:45 10.11.00 , you wrote: Hi... I need to upload a compiled class to my Orion application and then execute some methods of it. Anybody knows how can I do it? upload the class file, instantiate a URLClassloader that points to the file's url, load the class using that classloader, do

Web upload of a Java class

2000-11-10 Thread Storm Linux User
Hi... I need to upload a compiled class to my Orion application and then execute some methods of it. Anybody knows how can I do it? []s Guilherme Ceschiatti [EMAIL PROTECTED]

RE: Web upload of a Java class

2000-11-10 Thread Duffey, Kevin
at nothing is different, but your new class(es) will be available. -Original Message- From: Storm Linux User [mailto:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 10:46 AM To: Orion-Interest Subject: Web upload of a Java class Hi... I need to upload a compiled class to my Orion a