Re: Refresh parent window on popup submit with old params to parent

2004-06-02 Thread keshav
Hi, Can you send the code for the method you have mentioned regards, keshav - Original Message - From: "Freddy Villalba Arias" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, March 22, 2004 10:38 PM Subject: RE: Refre

Re: OT: Runtime exec (again)

2004-12-02 Thread Keshav Shetty
= proc.waitFor(); BufferedInputStream is = new BufferedInputStream(proc.getInputStream()); java.lang.System.out.println("Printing output rom the consle"); while (is.available() > 0) { java.lang.System.out.print((char)is.read()); } Thanks & regards Keshav K Shet

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: JBoss does not reflect changes without restart

2005-01-18 Thread Keshav Shetty
Still you can make an ant with the target ti redeploy the jboss and run when you finished the compilation. Best regards Keshav sachin wrote: hi , I hope you are using ant for compiling & building application. You can use following ant tag to redeploy without restarting the j

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: How to send result into Pop-up window

2005-01-28 Thread Keshav Shetty
d; document.formName.submit(); } Please replace someName, formName and actionPath with your form values. But the above technique will fail if the criteria form uses any validation. Please write me if you need any additional info. Thanks & regards Keshav Manisha Sathe wrote: Hi, I am having a sera

Re: How to send result into Pop-up window

2005-01-31 Thread Keshav Shetty
in the popup, then you can combine criteria and dummyJsp and add some logic tag to open the popup window. The logic tag should use the values which you have to insert in the request object at action 1. Hope the things are clear. Please write me if you need any additional info. If any other user

Re: read local file in ActionStruts

2005-02-01 Thread Keshav Shetty
ards Keshav [EMAIL PROTECTED] wrote: Hi all In an Action Struts I create dynamically a file. After that whit PrintWriter I try to get the file win a script tag (document.location='file:///xxx.xx') My problem is IE or Netscape does not allow me to read local file. Any al

Re: read local file in ActionStruts

2005-02-01 Thread Keshav Shetty
Then don't store the file within webapp, but in any server folder and write a servlet to retrieve the file. Thanks & regards Keshav K Shetty [EMAIL PROTECTED] wrote: Tomcat see a new created file only after shutdown and startup. That's a big problem. Help! --