[OT]-RE: not getting

2004-11-18 Thread Kailash Vasani
checkout tomcat documentation on how to deploy web application -Original Message- From: Nishant [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 11:38 AM To: Struts Users Mailing List Subject: not getting hi to all, i am using tomcat apache server i am getting following err

RE: Is their any tutorial for optimizing tomcat performance?

2004-11-07 Thread Kailash Vasani
Hi, U should have asked this question in tomcat's user mailing list -Original Message- From: Amit Gupta [mailto:[EMAIL PROTECTED] Sent: Monday, November 08, 2004 10:20 AM To: Tomcat Users List; Struts Users Mailing List Subject: Is their any tutorial for optimizing tomcat performance?

RE: Doubts with tomcat

2004-11-07 Thread Kailash Vasani
Hi again, U should have asked this in tomcat's user mailing list. -Original Message- From: Amit Gupta [mailto:[EMAIL PROTECTED] Sent: Monday, November 08, 2004 10:13 AM To: Tomcat Users List; Struts Users Mailing List Subject: Doubts with tomcat Hello everybody, I have following secti

RE: [OT] reading xml in my jsp

2004-11-01 Thread Kailash Vasani
parameter name if external server is posting the xml file to my web application. -Original Message- From: Kailash Vasani [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 3:52 PM To: 'Struts Users Mailing List' Subject: RE: [OT] reading xml in my jsp Hi, If the exter

RE: [OT] reading xml in my jsp

2004-11-01 Thread Kailash Vasani
Hi, If the external server is going to POST the xml file to application (web application), then that would be normal string that may be extracted using as u would normally extract request parameters. If this is file upload case (external server uploading file to application using HTTP upload), th

RE: help : creating own ActionForm

2004-10-15 Thread Kailash Vasani
If you mean that you want to have all your "Action Classes" extend new Action class that you would be writing, then you dont need any configuration change, as long as you extend struts Action class in your parent action class. -Original Message- From: sachin [mailto:[EMAIL PROTECTED] Sent

RE: help : chaining actions in Struts

2004-10-15 Thread Kailash Vasani
in first action class, put the bean in request before forwarding. -Original Message- From: sachin [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 3:41 PM To: Struts Users Mailing List Subject: RE: help : chaining actions in Struts > Have the first action's success forward on t

RE: Need Help: XML to HTML using java

2004-10-14 Thread Kailash Vasani
Hi, It seems that all you need is XSL transformation. One more suggestion, Before posting questions to this group, Please put [OT] (including brackets) as first characters in subject line, in case the question that you are asking is not relevant to Struts. (like this question). -Original Me

RE: how to send an email

2004-10-13 Thread Kailash Vasani
Sending of email can be done from Action class. all you need to know is how to send email using javamail API. start from here http://java.sun.com/products/javamail/ -Original Message- From: Richard [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13, 2004 1:48 PM To: Struts Users Mailin

RE: Inserting a BLOB

2004-10-07 Thread Kailash Vasani
Checkout the Oracle documentation -Original Message- From: Arundhati Kalia [mailto:[EMAIL PROTECTED] Sent: Thursday, October 07, 2004 12:51 PM To: [EMAIL PROTECTED] Subject: Inserting a BLOB Hi All, Can anyone please guide me to the most efficient way of inserting a BLOB in Oracle datab

RE: Need Help: exporting oracle database records to excel files

2004-09-28 Thread Kailash Vasani
Typea b c so the first column should be displayed for all the records hope u got the problem ... On Tue, 28 Sep 2004 15:05:17 +0530, Kailash Vasani <[EMAIL PROTECTED]> wrote: > Hi, > > Checkout following link > > http

RE: Need Help: exporting oracle database records to excel files

2004-09-28 Thread Kailash Vasani
Hi, Checkout following link http://jakarta.apache.org/poi/index.html POI is supposed to have capability to write files in Excel 97 format. Kailash -Original Message- From: Kranti Parisa [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 2:55 PM To: Struts Users Mailing List Su

RE: Error Deploying

2004-09-23 Thread Kailash Vasani
Check struts version on both the servers. It seems that they are different. -Original Message- From: CCNY [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 7:21 PM To: Struts Users Mailing List Subject: Error Deploying Hi all I'm deploying on Tomcat 4.1, but I developed on To

[OT] RE: Is there any free Application for Bug Tracking Software in Java or JSP

2004-09-21 Thread Kailash Vasani
Hi Rajesh, U have asked this question in wrong forum. BTW, search in http://www.sourceforge.net, there are couple of project management type of projects there. Kailash -Original Message- From: Rajesh [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 10:23 AM To: Struts Users

RE: J2EE application - Upload one or more files on client to serv er

2004-09-09 Thread Kailash Vasani
Hi, In case u r using Struts 1) In HTML / JSP page use , this field is where user would be interacting and setting file path. The form containing this button, must have encoding type set to multipart/form-data i.e. enctype="multipart/form-data" 2) Create an action class that gets invoked t

RE: handling multiple independent window

2004-08-16 Thread Kailash Vasani
similar requirement or not. I guess they might have knocked it off the list of requirement. Thanks & Regards, Kailash Vasani -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, August 16, 2004 12:24 PM To: [EMAIL PROTECTED] Subject: Re: handling mult

handling multiple independent window

2004-08-13 Thread Kailash Vasani
Hi, Is it possible to have 2 windows showing same JSP page, but different data, using struts? The data to be displayed is populated in form bean, in action class. Both the JSP pages would be performing same set of operations, but not necessarily in same order. Operations are Save, Update etc. Whe

RE: upload file filter in struts

2004-07-26 Thread Kailash Vasani
Hi Vijaya, Try using isFormField() method of FileItem interface, which indicates whether the item is form field or not. If it is then u can use getFieldName() and getString() on FileItem to retrieve the form field name and value of it in String format. Hope this would be helpful. For details of

RE: application configuration

2004-07-08 Thread Kailash Vasani
Hi Viral & Andrew, I dont have more information, but assumption is that Viral has some class whose methods should be invoked in servlet container startup. Plugin approach has some disadvantages, namely, it gets invoked for all the HTTP GET / POST requests, that includes GET issued for things like

RE: ActionForward with runtime parameter?

2004-07-08 Thread Kailash Vasani
Hi, Set id and it's value in request object and just forward to mapping.findForward("success"). In ur target page (where u r forwarding), get the value for parameter (id) from request object. that should do the trick Kailash -Original Message- From: Twan Kogels [mailto:[EMAIL PROTECTED