Migration Problem 2
[Logo]
ICEsoft.org Forums: ICEfaces, ICEmobile, ICEpdf
[Search] Search   [Recent Topics] Recent Topics   [Groups] Home Page | www.icefaces.org  [Register] Register  [Login] Login 
Migration Problem 2  XML
Forum Index -> JBoss Seam Integration
Author Message
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


The "update" problem of the SEAM conversations keeping getting the SAME (wrong) user has vanished now that I have upgraded to latest SEAM and IceFaces... Great News. Thanks.

I NOW, however, get that my buttons ("All" vs "Filtered") dont work... I get a nasty exception when clicking on them:

Code:
 18:59:56,687 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.NullPointerException
     at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:771)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:422)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:279)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
     at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
     at java.lang.Thread.run(Thread.java:595)
 18:59:58,484 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.NullPointerException
     at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:771)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:422)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:279)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
     at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
     at java.lang.Thread.run(Thread.java:595)
 


from this code

Code:
             <ice:form>
                 <ice:panelGrid columns="1">
                     <fieldset>
                         <legend>
                             <ice:outputText value="#{messages.fieldset_users}" />
                         </legend>
                             <!-- Messages -->
                             <ice:panelGrid columns="1">
                                 <ice:messages infoClass="error" globalOnly="true" />
                             </ice:panelGrid>
 
                             <ice:panelGrid columns="1" styleClass="left">
 
                                 <ice:outputText value="#{messages.selection_users_all_filtered}" />
                                 <ice:selectOneRadio
                                     value="#{findUserController.selectedSearchCriteriaPanel}"
                                     valueChangeListener="#{findUserController.selectedSearchCriteriaPanelChanged}"
                                     partialSubmit="true">
                                     <f:selectItem itemValue="#{findUserController.ALL_OPTION}"
                                         itemLabel="#{messages.option_all}" />
                                     <f:selectItem itemValue="#{findUserController.FILTERED_OPTION}"
                                         itemLabel="#{messages.option_filtered}" />
                                 </ice:selectOneRadio>
 
                                 <ice:panelStack selectedPanel="#{findUserController.selectedSearchCriteriaPanel}">
 
                                     <ice:panelGroup id="#{findUserController.ALL_OPTION}"/>
 
                                     <ice:panelGroup id="#{findUserController.FILTERED_OPTION}">
                                         <!-- Filter -->
                                         <ice:panelGrid columns="1">
                                             <fieldset>
                                                 <legend>
                                                     <ice:outputText value="#{messages.fieldset_filter}" />
                                                 </legend>
 
                                                 <!-- No Validation and being used for Filter -->
                                                 <ui:include src="userFieldsEditable.xhtml">
                                                     <ui:param name="usedForFilter" value="true"/>
                                                 </ui:include>
        
                                                 <ice:panelGrid columns="2" width="100%">
                                                     <div align="right">
                                                         <ice:commandButton id="filter" type="submit"
                                                             value="#{messages.button_filter}"
                                                             action="#{findUserController.applyFilter}" styleClass="button" />
                                                     </div>
                                                 </ice:panelGrid>
        
                                                 <ice:panelGrid columns="1">
                                                     <ice:message infoClass="error" for="submitAttempt" />
                                                 </ice:panelGrid>
        
                                             </fieldset>
                                         </ice:panelGrid>
                                     </ice:panelGroup>
 
                                 </ice:panelStack>
 
                                 <ui:include src="usersSortablePagedDataTable.xhtml" />
 
                             </ice:panelGrid>
 
                         </fieldset>
                     </ice:panelGrid>
                 </ice:form>
 
 


which is unfortunate... and eventually stabbing the buttons for a while and then running around the application you get:

Code:
 19:00:12,984 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.RuntimeException: viewNumber 1 update queue exceeded 36
     at com.icesoft.faces.webapp.xmlhttp.BlockingResponseState.writeElement(BlockingResponseState.java:183)
     at com.icesoft.faces.context.DOMResponseWriter.writeDOM(DOMResponseWriter.java:375)
     at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:161)
     at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.renderCycle(BlockingServlet.java:439)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:426)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:279)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
     at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
     at java.lang.Thread.run(Thread.java:595)
 19:00:27,609 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.RuntimeException: viewNumber 1 update queue exceeded 36
     at com.icesoft.faces.webapp.xmlhttp.BlockingResponseState.writeElement(BlockingResponseState.java:183)
     at com.icesoft.faces.context.DOMResponseWriter.writeDOM(DOMResponseWriter.java:375)
     at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:161)
     at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.renderCycle(BlockingServlet.java:439)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:426)
     at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:279)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
     at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
     at java.lang.Thread.run(Thread.java:595)
 


Fix is just to quit your browser and open another one to get rid of this problem.


Have a great weekend.

ted.goddard

Joined: 26/10/2004 00:00:00
Messages: 684
Offline


We have a few questions to help us track down this NullPointerException in D2DViewHandler.findComponent :
- is it browser-specific?
- does it always occur?
- are there other buttons on the page or elsewhere in the application that do not exhibit the problem?

The cause appears to be that the id of the component that triggered the event is not being propagated to the server.
[Email]
lperez77

Joined: 14/11/2006 00:00:00
Messages: 1
Offline


I have a similar problem. I get the following exception when using <ice:selectOneRadio> component:
Code:
 SEVERE: Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.IllegalArgumentException: _id13
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:825)
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:822)
 	at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:422)
 	at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:269)
 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)


However, if I use instead <ice:selectOneMenu> component I do not get the exception.
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


Blows out on IE and Firefox.
Occurs 100% of the time!
I actually dont have any other radio buttons elsewhere in the app yet (its a fllippin small app so far!)

> The cause appears to be that the id of the component that triggered the event is not being propagated to the server.

I have always had the warnings below about being assigned an automatic ID; are they significant? I could not get rid of them!!!

Code:
 08:38:00,093 INFO  [FindUserControllerImpl] < startFind
 08:38:00,375 INFO  [[/risingstars]] WARNING: Component _id52:_id53:goHomeMenuOption:_id184 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:38:00,375 INFO  [[/risingstars]] WARNING: Component _id52:_id53:goHomeMenuOption:_id185 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:38:00,375 INFO  [[/risingstars]] WARNING: Component _id52:_id53:goHomeMenuOption:_id186 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:38:00,390 INFO  [[/risingstars]] WARNING: Component _id52:_id53:usersMenuSection:usersFindMenuOption:_id187 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:38:00,390 INFO  [[/risingstars]] WARNING: Component _id52:_id53:usersMenuSection:usersFindMenuOption:_id188 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:38:00,390 INFO  [[/risingstars]] WARNING: Component _id52:_id53:usersMenuSection:usersFindMenuOption:_id189 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:38:02,593 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.IllegalArgumentException: _id70
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:825)
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:822)
 





Adding in an ID in the code doesnt get rid of the warning either ;)

Code:
 <ice:selectOneRadio
 		value="#{findUserController.selectedSearchCriteriaPanel}"
 			valueChangeListener="#{findUserController.selectedSearchCriteriaPanelChanged}"
 		partialSubmit="true">
 		<f:selectItem id="x1" itemValue="#{findUserController.ALL_OPTION}"
 				itemLabel="#{messages.option_all}" />
 		<f:selectItem id="x2" itemValue="#{findUserController.FILTERED_OPTION}"
 			itemLabel="#{messages.option_filtered}" />
 </ice:selectOneRadio>
 



Code:
 08:43:59,734 INFO  [[/risingstars]] WARNING: Component _id52:_id53:goHomeMenuOption:_id182 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:43:59,734 INFO  [[/risingstars]] WARNING: Component _id52:_id53:goHomeMenuOption:_id183 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:43:59,734 INFO  [[/risingstars]] WARNING: Component _id52:_id53:goHomeMenuOption:_id184 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:43:59,750 INFO  [[/risingstars]] WARNING: Component _id52:_id53:usersMenuSection:usersFindMenuOption:_id185 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:43:59,750 INFO  [[/risingstars]] WARNING: Component _id52:_id53:usersMenuSection:usersFindMenuOption:_id186 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:43:59,750 INFO  [[/risingstars]] WARNING: Component _id52:_id53:usersMenuSection:usersFindMenuOption:_id187 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!
 08:44:02,437 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.NullPointerException
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:771)
 	at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:422)
 	at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:279)
 


Micro$oft Windose XP64 (OS-System: Windows 2003 5.2,amd64)
Seam (latest version that was only released yesterday)
Facelets (including templates)
Latest IceFaces (also realeased yesterday)
JBoss 4.0.5.GA
Java version: 1.5.0_10,Sun Microsystems Inc.
Java VM: Java HotSpot(TM) 64-Bit Server VM 1.5.0_10-b03,Sun Microsystems Inc.



tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


Ok A bit more info for you.

When I click the radio button the icon that shows the brwoser is talking to the server just keeps rolling; however, if I then go and press another button (actually used a page control component for data table paging on the same page) then the effect from the radio button is applied.

Try for yourself on http://gaming.homeip.net:8080/risingstars if it helps (and its running!).
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


I have re-factored the code in this area but am still getting this problem.

Code:
 10:22:24,448 ERROR [[Blocking Servlet]] Servlet.service() for servlet Blocking Servlet threw exception
 java.lang.IllegalArgumentException: _id70
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:825)
 	at com.icesoft.faces.application.D2DViewHandler.findComponent(D2DViewHandler.java:822)
 	at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.receiveUpdates(BlockingServlet.java:422)
 	at com.icesoft.faces.webapp.xmlhttp.BlockingServlet.service(BlockingServlet.java:279)
 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
 	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
 	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
 	at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
 	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
 	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
 	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
 	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
 	at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
 	at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
 	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
 	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
 	at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
 	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
 	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
 	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
 	at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
 	at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
 	at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
 	at java.lang.Thread.run(Thread.java:619)
 
philip.breau


Joined: 08/05/2006 00:00:00
Messages: 2672
Offline


Hi Tony,

Make sure you've cleared your browser's js cache, control-F5 should do it.

Thanks,
Philip

.
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


This seems to have made no difference in either IE or Firefox.
:(

Try for yourself on http://gaming.homeip.net:8080/risingstars if it helps (and its running!).

( When I click the radio button the icon that shows the browser is talking to
the server just keeps rolling; however, if I then go and press another button
(actually used a page control component for data table paging on the same
page) then the effect from the radio button is applied. )
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


I have a 4MB war that I can supply you for testing on your server...
jlondono

Joined: 14/11/2006 00:00:00
Messages: 5
Offline


Check this forum for a workaround http://www.icefaces.org/JForum/posts/list/0/3447
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


The link appears broken, Please advise.
jlondono

Joined: 14/11/2006 00:00:00
Messages: 5
Offline


http://www.icefaces.org/JForum/posts/list/3447.page
tony.herstell

Joined: 01/12/2006 00:00:00
Messages: 206
Offline


Confirmed fixed.
Thx.
 
Forum Index -> JBoss Seam Integration
Go to:   
Powered by JForum 2.1.7ice © JForum Team