Calling Shell Commands from JSP

2003-02-18 Thread Laxmikanth M.S.
Hi All, How to call shell commands within JSP thanks Laxmikanth * Disclaimer: The information in this e-mail and any attachments is confidential / privileged. It is intended solely for the addressee or addressees. If you are not

Re: Calling Shell Commands from JSP

2003-02-18 Thread Holger Klawitter
Am Dienstag, 18. Februar 2003 12:35 schrieb Laxmikanth M.S.: Hi All, How to call shell commands within JSP As in every normal Java application: Runtime.getRuntime().exec( new String[] { something, -nasty } ); The only difference is the need for some permissions in