AW: Invoking servlet from Applet by passing runtime parameters

2000-10-23 Thread Merdes, Matthias
hi ann, if you can use the doGet() method in your servlet you can append the parameters to the URL of showdocument in a standard way, e.g. http://mycompany.com/servlet/myServlet?parameter1=value1¶meter2=value2 and so on. this won't work for doPost. you would have to use extra path info in this

Re: AW: Invoking servlet from Applet by passing runtime parameters

2000-10-23 Thread ann patil
It worked ! Thanks a lot, Matthias for your suggestion. Thanks again Ann. >From: "Merdes, Matthias" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> >Subject: AW: Invoking servlet from A