Re: read local file in ActionStruts

2005-02-01 Thread Keshav Shetty
Initial Header --- From : "Keshav Shetty" [EMAIL PROTECTED] To : "Struts Users Mailing List" user@struts.apache.org Cc : Date : Tue, 01 Feb 2005 15:36:06 +0200 Subject : Re: read local file in ActionStruts You can store the file on sever and not in c

Re: read local file in ActionStruts

2005-02-01 Thread Keshav Shetty
You can store the file on sever and not in client. If I understood you already created file in your struts action and stored in the server. So instead of giving file:// use full link with http:// link to file. (Hope the file is within webapp) or write your download servlet. Thanks & regards Kesha

Re: How to send result into Pop-up window

2005-01-31 Thread Keshav Shetty
but now what's happening is i get validation errors on my new pop-up window and not on my original window- is there any other way do that everything works fine ? regards Manisha Keshav Shetty <[EMAIL PROTECTED]> wrote:Hi Manisha, As I understood your requirement is 1. In first page you sh

Re: How to send result into Pop-up window

2005-01-28 Thread Keshav Shetty
Hi Manisha, As I understood your requirement is 1. In first page you show teh search criteria. User enters all required input and press show report. 2. The form will be submitted action gets control and retrives required data and forwards to report jsp. 3. The final report page should come in a s

Re: How to Forward out of struts to a URL from an Action

2005-01-28 Thread Keshav Shetty
In struts you can redirect(not forward) to other page or site. In your action instead of mapping.findforward use following code ActionForward toAction= new ActionForward (); ActionForward fromAction = mapping.findForward("targetURL"); toAction.setPath(fromAction.getPath()); toAction.set

Re: JBoss does not reflect changes without restart

2005-01-18 Thread Keshav Shetty
hin Hegde Paradyne Infotech Limited , Mumbai 09324546711 -- Original Message --- From: Keshav Shetty <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Tue, 18 Jan 2005 15:38:48 +0200 Subject: Re: JBoss does not reflect changes without restart Hi Sachin, I hope you ar

Re: JBoss does not reflect changes without restart

2005-01-18 Thread Keshav Shetty
; rgards Keshav Shetty sachin wrote: hi all , I am using JBoss 4.0.1 and struts 1.2.4 Whenever i make any changes in my project and compile it JBoss does not reflect the chages .. Here i need to restart the JBoss and then it shows the changes... i got fed up with stopping the server and resta

Re: OT: Runtime exec (again)

2004-12-02 Thread Keshav Shetty
May be cmd.exe is not available within the path when executing from tomcat. Try to add full path and try. Alternatively find out what is the message returned when cmd.exe is executed within the tomcat(Not the return code). You can display this message using following code. exitValue = proc.wai