..
> > ...Thus, the resulting page rendered after processing request
> > parameters need not be the main page of the site. This is working
> > perfect in our testing environment,
>
> Using which browser?
We do manual testing using IE 6, 7 and Firefox 2
Automated testing is done using Canoo webtest
> >..but on production site we are
> > facing one weired issue:
[quoted text clipped - 4 lines]
> It might pay to validate your HTML.
> <http://validator.w3.org/>
Did a quick validation of one of our pages by hitting through
http://validator.w3.org .. I'm getting nearly 40 - 45 errors. The
errors pointed out are as follows:
1. no document type declaration; implying "<!DOCTYPE HTML SYSTEM>"
2. <link rel="stylesheet" href="/data/brand/chevrolet/css/
chevrolet.css"/> - document type does not allow element "LINK" here .
- 3 errors
3. <script language="JavaScript" src="js/jsobj.js"></script> -
Required attribute - "type" is missing - for all declarations of
javascript files
4. <script language="JavaScript"> - Required attribute - "type" is
missing.
<img src="/data/brand/chevrolet/img/footer.gif" border=0> - Missing
alt 23 errors
These are the errors for one of our page. But is there any
relationship b/w these errors and the problem we are facing?
> Andrew T.
Sem - 01 Mar 2007 18:29 GMT
> > > ...Thus, the resulting page rendered after processing request
> > > parameters need not be the main page of the site. This is working
[quoted text clipped - 38 lines]
>
> - Show quoted text -
since you mentioned on
form http://www.host.com/retail/dispatch.do.
It means you use Struts then you have to check your struts-config.xml
file and your
Action class.
Also see the form file that is used by the action class
Unless I see the whole program, it is very hard to pinpoint the
problem.
-Sem
Andrew Thompson - 01 Mar 2007 18:58 GMT
..
> These are the errors for one of our page. But is there any
> relationship b/w these errors and the problem we are facing?
Then best way to find out, is to remove
them and try the page again.
Andrew T.