RE: How a html file pass arguments to a servlet??

2001-08-30 Thread Suresh Krishna M (RBIN/DBA-JOT)

Hello ruben,
 Normally when u r calling a servlet u will be specifying
the url of the servlet(in the html).for url only u just need to add the
parameters.
ex. servlet/myclass?name=sage=21time=asd
 and u can get the parameters with request.getParameter() in
the servlet.
Hope this solves your problem.

The intellect has little to do on the road to discovery. There comes a leap
in consciousness, call it Intuition or what you will, the solution comes to
you and you don't know how or why.

--Albert Einstein
With best regards,
M.S.Krishna (RBIN/DBA-JOT)
 Phone*: +91-80-508-1416
Fax : +91-80 571-1865
E-mail : [EMAIL PROTECTED]
Robert Bosch India Limited,
123,Industrial Layout,
Koramangala,
Bangalore-95.

 -Original Message-
 From: Ruben Domene [SMTP:[EMAIL PROTECTED]]
 Sent: Thursday, August 30, 2001 5:05 AM
 To:   tomcat
 Subject:  How a html file pass arguments to a servlet??
 
 Hi.
 I need know how from a html file i can send arguments to servlet.
 Thank you for your helps.



RE: How a html file pass arguments to a servlet??

2001-08-30 Thread Suresh Krishna M (RBIN/DBA-JOT)

Hello ruben,
or u can even send all the fields in a html file by
using the form field and action=post.
i.e in the html file u have

 form name= action=post
---
--- some html code and some fields.
---
---you have a submit button here.
type=Submit value=Submit name=aaa
form

In the above code the servlet gets all the fields that are there with in the
form tag and can be retrieved by the request.getParameter().
(the above si handy when u want to send the whole of the fields as
parameters.If u want to send the custom parameters then the previous
mentioned method is better.

The intellect has little to do on the road to discovery. There comes a leap
in consciousness, call it Intuition or what you will, the solution comes to
you and you don't know how or why.

--Albert Einstein
With best regards,
M.S.Krishna (RBIN/DBA-JOT)
 Phone*: +91-80-508-1416
Fax : +91-80 571-1865
E-mail : [EMAIL PROTECTED]
Robert Bosch India Limited,
123,Industrial Layout,
Koramangala,
Bangalore-95.

 -Original Message-
 From: Ruben Domene [SMTP:[EMAIL PROTECTED]]
 Sent: Thursday, August 30, 2001 5:05 AM
 To:   tomcat
 Subject:  How a html file pass arguments to a servlet??
 
 Hi.
 I need know how from a html file i can send arguments to servlet.
 Thank you for your helps.



RE: My JSP pages are freezing !!

2001-08-14 Thread Suresh Krishna M (RBIN/DBA-JOT)

hello Cleber,
  some of the times it so happens that the internet
explorer's cached files might get disaplyed again and again .just check this
out...(refresh or delete all the temporary intenet files).

 -Original Message-
 From: Christian Cleber [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, August 14, 2001 7:32 PM
 To:   Lista Tomcat
 Subject:  My JSP pages are freezing !!
 
 
 
  Hello all ! I have tomcat 3.3  with apache and it seems work fine
 until now. I have a JSP page that receive
 only one param , execute a query in a database (interbase) , and
 make the output.
 All work fine during some time but suddenly, when i execute the page
 with different values for the param, the output
 is always the same , i.e., the output always show the answer not matter
 what value i put for the param.
 It seems like the page freezing with an old value .
 
Christian



Tomcat/Apache with SSL

2001-07-10 Thread Suresh Krishna M (RBIN/DBA-JOT)

Hello all,
 Please let me know how to use SSL in Tomcat and Oracle 9iAS (if
anybody are using) .What are the prerequisites for this and i am using WinNT
box.I want to use the HTTPS protocol for some secured connections and i am
not able to see anything related in apache or tomcat.please help

THANX IN ADVANCE

The greatest thing that you would ever learn is just to Love and to be Loved
in return  --Anonymous 

With best regards,
M.S.Krishna (RBIN/DBA-JOT)
 Phone*: +91-80-508-1416
Fax : +91-80 571-1865
E-mail : [EMAIL PROTECTED]
Robert Bosch India Limited,
123,Industrial Layout,
Koramangala,
Bangalore-95.





Urgent please respond

2001-06-27 Thread Suresh Krishna M (RBIN/DBA-JOT)

Hello ALL,
  I have a problem regarding the Runtime.getRuntime().exec().
  I am trying to run a .bat file in a separate machine(the batch
file is in a separate machine in the same domain and i mapped the machine
with the batch file folder as T:\\).but when i use this
Runtime.getRuntime().exec(t:\\xxx.bat ); The commands in the batch file
are running in my machine.But i dont wan't this.I want to run the batch file
in the machine where it is.
  Or is there any way on WINNT that my java program sitting on
machine A will be able to stop a specified process on the machine B/machine
C.It is understood that machine A's user will have the administrative powers
on Machine B,C.

  Please Help me...

Thanx in advance






RE: Running JServ + Tomcat on the same machine.

2001-04-20 Thread Suresh Krishna M (RBIN/DBA-JOT)


hello all,
   Please help me.sorry if this problem is already addressed.
i need to down load some files from server to client.
i.e There is a trust relation for client and server.server wants to send
some files to client.
For upload i am using O'reilleys package(from client to server).i do not
have any ftp server.please show me some solutions or some related info.its
urgent...please


With best regards,
M.S.KRISHNA (RBIN/DBA-JOT)
 Phone*: +91-80-508-1416
Fax : +91-80 571-1865
E-mail  : [EMAIL PROTECTED]
Robert Bosch India Limited,
123,Industrial Layout,
Koramangala,
Bangalore-95.







RE: Use input type=radio

2001-04-17 Thread Suresh Krishna M (RBIN/DBA-JOT)

hello Frederic,
   to the best of my knowledge Syntax is the problem.the actual
systax for the radio button is

input type="Radio" name="name_of the_group"name_u_want to displayp
that is why jsp's are not able to convert the code to equivalent servlet or
html.revert back for furthur clarification...


With best regards,
M.S.KRISHNA (RBIN/DBA-JOT)
 Phone*: +91-80-508-1416
Fax : +91-80 571-1865
E-mail  : [EMAIL PROTECTED]
Robert Bosch India Limited,
123,Industrial Layout,
Koramangala,
Bangalore-95.



 -Original Message-
 From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, April 17, 2001 4:54 PM
 To:   [EMAIL PROTECTED]
 Subject:  Use input type=radio
 Importance:   High
 Sensitivity:  Confidential
 
 Hi every body, 
 
 when I use input type="radio" in my JSP, I have an error. 
 How can I use this with the JSP and the Bean ?
 
 Please Help.
 Thank.
  Frdric LELIEVRE
  TTE -  (BA / F04 C024)
  
  *   +352-44992--2485
  * [EMAIL PROTECTED]  
  
 
 
 Visit us at http://www.clearstream.com   
 Check out current job vacancies at
 http://www.clearstream.com/public/english/e_vacs.htm
   
 IMPORTANT MESSAGE
 
 Internet communications are not secure and therefore Clearstream
 International does not
 accept legal responsibility for the contents of this message.
 
 The information contained in this e-mail is confidential and may be
 legally privileged. It is
 intended solely for the addressee. If you are not the intended recipient,
 any disclosure,
 copying, distribution or any action taken or omitted to be taken in
 reliance on it, is
 prohibited and may be unlawful. Any views expressed in this e-mail are
 those of the
 individual sender, except where the sender specifically states them to be
 the views of
 Clearstream International or of any of its affiliates or subsidiaries.
 
 END OF DISCLAIMER



Urgent help

2001-04-09 Thread Suresh Krishna M (RBIN/DBA-JOT)

hello all,
my application uses the apache server and tomcat.my need is that
i should be able to use the FTP server on the apache server. please guide me
through if apache can support(or act as both FTP and HTTP server).please
give the relavant info if u have.
thanx in advance 







RE: File Upload

2001-03-28 Thread Suresh Krishna M (RBIN/DBA-JOT)

hi man  goto www.servlets.com / www.servlets.com in that u will have
Oreilley's servlet package for download.get bak if u have any problem.





 -Original Message-
 From: Valeriy Molyakov [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, March 28, 2001 12:10 PM
 To:   [EMAIL PROTECTED]
 Subject:  Re: File Upload
 
 What is the url of this package ?
 
 - Original Message - 
 From: "Fabien Modoux" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, March 27, 2001 8:41 PM
 Subject: File Upload
 
 
  Hello,
  
  I am using Tomcat with Apache on Linux. I am using the OReilly
  package to upload files through a servlet, but it only works
  for text files. I found several messages in the archive about
  that, but haven't been able to find a good solution. Does
  anyone know how to go around or fix this problem.
  
  Thanks,
  
  -Fabien