Does this sound like a plausible explanation for the search engine behavior?
Seam-gen creates an index.html page that contains:
<html>
| <head>
| <meta http-equiv="Refresh" content="0; URL=home.seam">
| </head>
| </html>
Search engine retrieves this page, caches it and then proceeds to index and cache the home.seam page. The root page for your domain ends up being a blank page.
Possible solution? Edit server/default/deploy/jbossweb-tomcat55.sar/conf/web.xml
<welcome-file-list>
| <welcome-file>home.seam</welcome-file>
| </welcome-file-list>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4054471#4054471
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4054471
I had this similar problem a week ago, but I could not find my post, but the problem why you may not be seeing any messages is because the CONSOLE appender's threshold is, by default, set to INFO. You'll see something like
| <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
| <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
| <param name="Target" value="System.out"/>
| <param name="Threshold" value="INFO"/>
|
| <layout class="org.apache.log4j.PatternLayout">
| <!-- The default pattern: Date Priority [Category] Message\n -->
| <param name="ConversionPattern"
| value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
| </layout>
| </appender>
|
Try relaxing the threshold.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4054465#4054465
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4054465