Re: [S1] Best practice to transfer control to next page (out of JVM)?

2008-01-22 Thread enthucoder
Can you give some pointers on how do i contruct a HTTP POST Message in my Action and redirect the page to remote resource (non J2EE App)..? Laurie Harper wrote: > > enthucoder wrote: >> Hi, >> >> Please bear with me, incase this turns out to be a dumb question. &

[S1] Best practice to transfer control to next page (out of JVM)?

2007-12-11 Thread enthucoder
Hi, Please bear with me, incase this turns out to be a dumb question. I want to transfer control to a non JSP page after I hit submit. Apart from this I am also sending some data as a HTTPS POST. In case of using response.sendRedirect(), it doesn't take care of the POST data. So, can anybody he

[S1.3]Strange problem with validation.xml's Regex

2007-11-07 Thread enthucoder
Hi, I am validating a condition : Input should not contain any of these characters &,",<,>,%,(,) And to achieve this my RegEx is : ^[^(\&|"|<|>|%|\(|\))]+$ Also here is my code snippet from validation.xml: noSpecialCharacters

Please Help: [Struts 1.3]Getting a ServletFilter Sample working

2007-10-26 Thread enthucoder
Hi, I am testing a Servlet Filter usage. And somehow, my application doesn't even start in Tomcat 5.5. Please help me in debugging, where I am going wrong. Here is what did: SampleFilter.java package app; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class Sam

[S 1.3]IncludeAction or any other Alternative?

2007-10-25 Thread enthucoder
I have a requirement, where on each page load, I hit some Servlet or Action (Can be modified accordingly). Should i use a IncludeAction here or there is a better or elegant way to achieve this? H. -- View this message in context: http://www.nabble.com/-S-1.3-IncludeAction-or-any-other-Alternat

[S1] Ping another page from within a struts application

2007-10-22 Thread enthucoder
Hi, I am not sure if this a struts question exactly, but neverthless I need help :). I am trying to integrate 2 apps, app 1 on platform 1 (non JEE) and app2 on JEE based. I have requirement where, i need to send session id of app2 to a listener page in app1 (i.e non jee based one and i am allow