RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Caroline Jen
rward > name. > > Returning null from execute/perform tells struts > that your method wrote the response itself. > > Regards, >   > Rich > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 30, 2003 3:0

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Richard J. Duncan
se itself. Regards,   Rich -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 3:05 AM To: Struts Users Mailing List Subject: Re: No Error Message But A Blank Page Is Displayed. Your missing html:form > My welcome page "is displayed&

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Srinivas Gunturu
I have seen this behavior when the jsp page I am forwarding to is not found such as in wrong location, wrong case (Welcome.jsp vs welcome.jsp). But we are using tiles so not sure if it is tiles specific or not. Hope this helps. >>> [EMAIL PROTECTED] 09/30/03 10:28AM >>> I would want to see you

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Karr, David
I would want to see your "web.xml", and any information that shows up in the Tomcat console (not log file). > -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > I am experimenting a basic application - logon. I got > the first two screens working without problem. > H

Re: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread amind
You're missing html:form > My welcome page "is displayed" as the very first > screen without any problem. The page has > and tags, which > test if any registered user has logged on. > > The problem occurred after I filled out username, and > clicked the "Submit" button. Thereafter, the welcome

Re: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread amind
Your missing html:form > My welcome page "is displayed" as the very first > screen without any problem. The page has > and tags, which > test if any registered user has logged on. > > The problem occurred after I filled out username, and > clicked the "Submit" button. Thereafter, the welcome >

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Caroline Jen
My welcome page "is displayed" as the very first screen without any problem. The page has and tags, which test if any registered user has logged on. The problem occurred after I filled out username, and clicked the "Submit" button. Thereafter, the welcome page was not shown. My welcome page

RE: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Chen, Gin
I'm not sure where in your scenario the error was supposed to occur. I would suggest just right clicking on the blank page and see what the src holds. If you change the last line to: ActionForward valForward = mapping.findForward(Constants.VALID); servlet.log("Forwarding to: " + va

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Kwok Peng Tuck
You might want to put System.out.println("Line [number]") ; to see the flow in your action. BTW did you actually put anything(like hello world) in Welcome.jsp ? Caroline Jen wrote: Which resource file needs to be updated? I have checked the application.properties. Nothing in that file is relev

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Caroline Jen
Which resource file needs to be updated? I have checked the application.properties. Nothing in that file is relevant to my problem. --- Abhijeet Mahalkar <[EMAIL PROTECTED]> wrote: > have u updated the Resource files... ? > abhijeet > > - Original Message - > From: "Caroline Jen" <[EMA

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Abhijeet Mahalkar
have u updated the Resource files... ? abhijeet - Original Message - From: "Caroline Jen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 30, 2003 9:45 AM Subject: No Error Message But A Blank Page Is Displayed. I am experimenting a basic application - logon. I go