| Author |
Message |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 05/03/2009 10:13:08
|
ted.goddard
Joined: 26/10/2004 00:00:00
Messages: 684
Offline
|
Looking at the stack we can see that the request is being handled by
org.springframework.web.servlet.FrameworkServlet
so web.xml configuration must be causing this. Perhaps an additional servlet mapping to the PersistentFacesServlet (such as spring/*) is needed.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 05/03/2009 11:50:49
|
md10024
Joined: 31/10/2008 00:00:00
Messages: 13
Offline
|
Sweet, that was the clue that I needed. I moved my MVC and webflow mappings around in the config files and now am all set. Many thanks...
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 10/03/2009 16:12:48
|
jokrasa
Joined: 03/03/2009 00:00:00
Messages: 14
Offline
|
OK so I tried running this project two ways with the same result.
First I checked out http://anonsvn.icefaces.org/repo/projects/swf-booking-icefaces/trunk/swf-booking-icefaces
Is this a working copy of said project:
http://blog.icefaces.org/blojsom/blog/default/2007/12/10/Ajax-with-Spring-Web-Flow-and-ICEfaces-at-TheSpringExperience/rel=%22nofollow%22/
Then I set it up with the required libs for the sw-booking-faces sample which I have working in NetBeans6.5 and added the icefaces libs mentioned in both the blog and readme file.
The project ran without error (after removing com.sun.facelets.1.1.14.jar normally required in the webflow sample project to resolve the ICEfaces lib conflict).
It just doesn't do anything after login.. The flows don't get involked when you try the command button/links, you just see "javascript:;" in the RH status bar. I didn't change anything I just used the code at the repository.
Then I tried literally following all the steps in the blog.. checked out ICEfaces & WEBFLOW from the repositories and ran them all with ant...
I got the same result except that I had to move Tomcat to a dir without spaces (the wonderful %20 problem !) to get there.
Has anyone been able to get the swf-booking-icefaces, ( not "icefaces-swf-booking" as mentioned in the blog that doesn't exist! ) to work?
if so what is it's behavior, what are some of its features? I am particularly interested in finding someway to implement a javascript Grid into this project
what are some of the datagrid/table features available to JSF/Webflow (out there?)?
I have a feeling I'm somehow using the wrong code or missing aditional steps not mentioned in the readme or blog.
( I have added the flow-registry attribute hat seemed to be missing in webflow-config.xml as below...
Code:
<webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry">
<webflow:flow-execution-attributes>
<webflow:always-redirect-on-pause value="false" />
</webflow:flow-execution-attributes>
<webflow:flow-execution-listeners>
<webflow:listener ref="jpaFlowExecutionListener" />
</webflow:flow-execution-listeners>
</webflow:flow-executor>
still same results, nothing happens)
Ted you out there ?
Thanks for any help offered?
Spring/Webflow/JSF enthusiast.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 10/03/2009 16:37:20
|
ted.goddard
Joined: 26/10/2004 00:00:00
Messages: 684
Offline
|
Current testing for this sample is against Spring Web Flow 2.0.3; perhaps there is an incompatibility with 2.0.5.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 10/03/2009 16:45:49
|
Morningrise
Joined: 16/02/2009 00:00:00
Messages: 24
Offline
|
jokrasa wrote:
( I have added the flow-registry attribute hat seemed to be missing in webflow-config.xml as below...
Code:
<webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry">
<webflow:flow-execution-attributes>
<webflow:always-redirect-on-pause value="false" />
</webflow:flow-execution-attributes>
<webflow:flow-execution-listeners>
<webflow:listener ref="jpaFlowExecutionListener" />
</webflow:flow-execution-listeners>
</webflow:flow-executor>
still same results, nothing happens)
Ted you out there ?
Thanks for any help offered?
Spring/Webflow/JSF enthusiast.
I think the webflow:flow-executor defaults to flow-registry="flowRegistry", if not explicitely given (as above), so this probably isn't part of the problem.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 10/03/2009 17:11:32
|
Morningrise
Joined: 16/02/2009 00:00:00
Messages: 24
Offline
|
ted.goddard wrote:
Current testing for this sample is against Spring Web Flow 2.0.3; perhaps there is an incompatibility with 2.0.5.
Ted, I really, really thank you for that info.
I don't know why I haven't tested other versions than 2.0.5 of Web Flow, but yes. It works fine with Web Flow 2.0.3!
It seems something is indeed broken/incompatible in Web Flow 2.0.5.
I will now test Web Flow 2.0.4 and see If the app still works...
[edit]
Just tested it with Web Flow 2.0.4. Doesn't work either :-(
The same problem. The events just don't seem to reach the web flow.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 11/03/2009 09:22:15
|
michelle2
Joined: 14/11/2007 00:00:00
Messages: 449
Offline
|
jokrasa wrote:
OK so I tried running this project two ways with the same result.
First I checked out http://anonsvn.icefaces.org/repo/projects/swf-booking-icefaces/trunk/swf-booking-icefaces
Is this a working copy of said project:
http://blog.icefaces.org/blojsom/blog/default/2007/12/10/Ajax-with-Spring-Web-Flow-and-ICEfaces-at-TheSpringExperience/rel=%22nofollow%22/
Then I set it up with the required libs for the sw-booking-faces sample which I have working in NetBeans6.5 and added the icefaces libs mentioned in both the blog and readme file.
The project ran without error (after removing com.sun.facelets.1.1.14.jar normally required in the webflow sample project to resolve the ICEfaces lib conflict).
It just doesn't do anything after login.. The flows don't get involked when you try the command button/links, you just see "javascript:;" in the RH status bar. I didn't change anything I just used the code at the repository.
Then I tried literally following all the steps in the blog.. checked out ICEfaces & WEBFLOW from the repositories and ran them all with ant...
I got the same result except that I had to move Tomcat to a dir without spaces (the wonderful %20 problem !) to get there.
Has anyone been able to get the swf-booking-icefaces, ( not "icefaces-swf-booking" as mentioned in the blog that doesn't exist! ) to work?
if so what is it's behavior, what are some of its features? I am particularly interested in finding someway to implement a javascript Grid into this project
what are some of the datagrid/table features available to JSF/Webflow (out there?)?
I have a feeling I'm somehow using the wrong code or missing aditional steps not mentioned in the readme or blog.
( I have added the flow-registry attribute hat seemed to be missing in webflow-config.xml as below...
Code:
<webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry">
<webflow:flow-execution-attributes>
<webflow:always-redirect-on-pause value="false" />
</webflow:flow-execution-attributes>
<webflow:flow-execution-listeners>
<webflow:listener ref="jpaFlowExecutionListener" />
</webflow:flow-execution-listeners>
</webflow:flow-executor>
still same results, nothing happens)
Ted you out there ?
Thanks for any help offered?
Spring/Webflow/JSF enthusiast.
Sorry it took so long to reply.
No I have not tried the sample.
I am researching this week how to move our 1.0 swf to 2.x so I probably will be playing with that sample too.
I'm not talking about our open source project, I'm talking about my employers application, icefaces , almost 60 screens so far and growing. I don't think this will be an easy conversion. So I expect to have a lot of feedback this week. stay tuned.
Ted
Thats bad news the current swf does not work, I may have to take that into consideration. I need a stable base to start this conversion.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 13/03/2009 15:47:23
|
jokrasa
Joined: 03/03/2009 00:00:00
Messages: 14
Offline
|
Thanks for the reply, good luck and game on with your project !
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 13/03/2009 16:39:18
|
michelle2
Joined: 14/11/2007 00:00:00
Messages: 449
Offline
|
jokrasa wrote:
Thanks for the reply, good luck and game on with your project !
we're going to start with 2.04 , if that proves unusable we will go back to 2,03,
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 19/03/2009 10:39:47
|
greg.dick
Joined: 26/10/2004 00:00:00
Messages: 84
Offline
|
I did some investigation into 2.0.5 compatibility and we've opened a Jira http://jira.icefaces.org/browse/ICE-4200 for this issue.
I found a workaround that allows the booking example to work. It involves adding a FlowViewHandler to the application faces-config.xml file as follows:
Code:
<application>
<view-handler>
com.sun.facelets.FaceletViewHandler
</view-handler>
<view-handler>
com.icesoft.faces.facelets.D2DFaceletViewHandler
</view-handler>
<!--#4200 define another Spring ViewHandler -->
<view-handler>
org.springframework.faces.webflow.FlowViewHandler
</view-handler>
<variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
</application>
This workaround works in 2.0.3 as well. Admittedly it does instantiate a second FlowViewHandler which is a bit of a problem with framework builders putting faces-config.xml files in their distribution jars (which we do as well).
There are also a few tips at http://jira.icefaces.org/browse/ICE-4186 about the correct setting for the redirect-on-pause setting.
Perhaps someone could try this workaround?
thanks.
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 19/03/2009 12:58:05
|
Morningrise
Joined: 16/02/2009 00:00:00
Messages: 24
Offline
|
greg.dick wrote:
I did some investigation into 2.0.5 compatibility and we've opened a Jira http://jira.icefaces.org/browse/ICE-4200 for this issue.
I found a workaround that allows the booking example to work. It involves adding a FlowViewHandler to the application faces-config.xml file as follows:
Code:
<application>
<view-handler>
com.sun.facelets.FaceletViewHandler
</view-handler>
<view-handler>
com.icesoft.faces.facelets.D2DFaceletViewHandler
</view-handler>
<!--#4200 define another Spring ViewHandler -->
<view-handler>
org.springframework.faces.webflow.FlowViewHandler
</view-handler>
<variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
</application>
This workaround works in 2.0.3 as well. Admittedly it does instantiate a second FlowViewHandler which is a bit of a problem with framework builders putting faces-config.xml files in their distribution jars (which we do as well).
There is also a few tips at http://jira.icefaces.org/browse/ICE-4186 about the correct setting for the redirect-on-pause setting.
Perhaps someone could try this workaround?
thanks.
Hi Greg!
Thanks! This workaround works (at least in my app) using Spring Web Flow 2.0.5. (and it's also working for Spring Web Flow 2.0.6).
Regards
Jörg
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 21/04/2009 03:23:50
|
sanshrine
Joined: 08/04/2007 00:00:00
Messages: 2
Offline
|
Hi,
I'm using icefaces-1.8.0 + facelets + Spring 2.5.6 + SWF 2.0.7, I'm not sure whether I missed some configuration or did something wrong. They seemed to be integrated. But, when I put <ice:form> or <h:form> into any page. It will throw the stack trace as follows
Code:
[nfw] ERROR [http-8888-1] D2DFaceletViewHandler.renderResponse(294) | Problem in renderResponse: null
java.lang.NullPointerException
at com.icesoft.util.SeamUtilities.getSpringFlowId(SeamUtilities.java:521)
at com.icesoft.faces.renderkit.dom_html_basic.FormRenderer.encodeBegin(FormRenderer.java:160)
at com.icesoft.faces.component.ext.renderkit.FormRenderer.encodeBegin(FormRenderer.java:53)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:813)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:514)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.facelets.D2DFaceletViewHandler.renderResponse(D2DFaceletViewHandler.java:282)
at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:153)
at org.springframework.faces.webflow.FlowViewHandler.renderView(FlowViewHandler.java:91)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
at com.icesoft.faces.webapp.http.core.JsfLifecycleExecutor.apply(JsfLifecycleExecutor.java:17)
at com.icesoft.faces.context.View$2$1.respond(View.java:47)
at com.icesoft.faces.webapp.http.servlet.ServletRequestResponse.respondWith(ServletRequestResponse.java:197)
at com.icesoft.faces.webapp.http.servlet.ThreadBlockingAdaptingServlet$ThreadBlockingRequestResponse.respondWith(ThreadBlockingAdaptingServlet.java:36)
at com.icesoft.faces.context.View$2.serve(View.java:72)
at com.icesoft.faces.context.View.servePage(View.java:133)
at com.icesoft.faces.webapp.http.core.MultiViewServer.service(MultiViewServer.java:55)
at com.icesoft.faces.webapp.http.common.ServerProxy.service(ServerProxy.java:11)
at com.icesoft.faces.webapp.http.servlet.MainSessionBoundServlet$4.service(MainSessionBoundServlet.java:114)
at com.icesoft.faces.webapp.http.common.standard.PathDispatcherServer.service(PathDispatcherServer.java:24)
at com.icesoft.faces.webapp.http.servlet.MainSessionBoundServlet.service(MainSessionBoundServlet.java:160)
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher$1.service(SessionDispatcher.java:42)
at com.icesoft.faces.webapp.http.servlet.ThreadBlockingAdaptingServlet.service(ThreadBlockingAdaptingServlet.java:19)
at com.icesoft.faces.webapp.http.servlet.EnvironmentAdaptingServlet.service(EnvironmentAdaptingServlet.java:63)
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher.service(SessionDispatcher.java:62)
at com.icesoft.faces.webapp.http.servlet.PathDispatcher.service(PathDispatcher.java:23)
at com.icesoft.faces.webapp.http.servlet.MainServlet.service(MainServlet.java:153)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)
Apr 21, 2009 2:53:30 PM com.sun.faces.lifecycle.Phase doPhase
SEVERE: JSF1054: (Phase ID: RENDER_RESPONSE 6, View ID: /index3.jspx) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@1891172]
[nfw] ERROR [http-8888-1] View.servePage(135) | Problem encountered during View.servePage
javax.faces.FacesException: Problem in renderResponse: null
at com.icesoft.faces.facelets.D2DFaceletViewHandler.renderResponse(D2DFaceletViewHandler.java:296)
at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:153)
at org.springframework.faces.webflow.FlowViewHandler.renderView(FlowViewHandler.java:91)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
at com.icesoft.faces.webapp.http.core.JsfLifecycleExecutor.apply(JsfLifecycleExecutor.java:17)
at com.icesoft.faces.context.View$2$1.respond(View.java:47)
at com.icesoft.faces.webapp.http.servlet.ServletRequestResponse.respondWith(ServletRequestResponse.java:197)
at com.icesoft.faces.webapp.http.servlet.ThreadBlockingAdaptingServlet$ThreadBlockingRequestResponse.respondWith(ThreadBlockingAdaptingServlet.java:36)
at com.icesoft.faces.context.View$2.serve(View.java:72)
at com.icesoft.faces.context.View.servePage(View.java:133)
at com.icesoft.faces.webapp.http.core.MultiViewServer.service(MultiViewServer.java:55)
at com.icesoft.faces.webapp.http.common.ServerProxy.service(ServerProxy.java:11)
at com.icesoft.faces.webapp.http.servlet.MainSessionBoundServlet$4.service(MainSessionBoundServlet.java:114)
at com.icesoft.faces.webapp.http.common.standard.PathDispatcherServer.service(PathDispatcherServer.java:24)
at com.icesoft.faces.webapp.http.servlet.MainSessionBoundServlet.service(MainSessionBoundServlet.java:160)
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher$1.service(SessionDispatcher.java:42)
at com.icesoft.faces.webapp.http.servlet.ThreadBlockingAdaptingServlet.service(ThreadBlockingAdaptingServlet.java:19)
at com.icesoft.faces.webapp.http.servlet.EnvironmentAdaptingServlet.service(EnvironmentAdaptingServlet.java:63)
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher.service(SessionDispatcher.java:62)
at com.icesoft.faces.webapp.http.servlet.PathDispatcher.service(PathDispatcher.java:23)
at com.icesoft.faces.webapp.http.servlet.MainServlet.service(MainServlet.java:153)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.lang.NullPointerException
at com.icesoft.util.SeamUtilities.getSpringFlowId(SeamUtilities.java:521)
at com.icesoft.faces.renderkit.dom_html_basic.FormRenderer.encodeBegin(FormRenderer.java:160)
at com.icesoft.faces.component.ext.renderkit.FormRenderer.encodeBegin(FormRenderer.java:53)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:813)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:514)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.facelets.D2DFaceletViewHandler.renderResponse(D2DFaceletViewHandler.java:282)
... 35 more
Apr 21, 2009 2:53:30 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Persistent Faces Servlet threw exception
java.lang.NullPointerException
at com.icesoft.util.SeamUtilities.getSpringFlowId(SeamUtilities.java:521)
at com.icesoft.faces.renderkit.dom_html_basic.FormRenderer.encodeBegin(FormRenderer.java:160)
at com.icesoft.faces.component.ext.renderkit.FormRenderer.encodeBegin(FormRenderer.java:53)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:813)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:514)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.application.D2DViewHandler.renderResponse(D2DViewHandler.java:522)
at com.icesoft.faces.facelets.D2DFaceletViewHandler.renderResponse(D2DFaceletViewHandler.java:282)
at com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:153)
at org.springframework.faces.webflow.FlowViewHandler.renderView(FlowViewHandler.java:91)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
at com.icesoft.faces.webapp.http.core.JsfLifecycleExecutor.apply(JsfLifecycleExecutor.java:17)
at com.icesoft.faces.context.View$2$1.respond(View.java:47)
at com.icesoft.faces.webapp.http.servlet.ServletRequestResponse.respondWith(ServletRequestResponse.java:197)
at com.icesoft.faces.webapp.http.servlet.ThreadBlockingAdaptingServlet$ThreadBlockingRequestResponse.respondWith(ThreadBlockingAdaptingServlet.java:36)
at com.icesoft.faces.context.View$2.serve(View.java:72)
at com.icesoft.faces.context.View.servePage(View.java:133)
at com.icesoft.faces.webapp.http.core.MultiViewServer.service(MultiViewServer.java:55)
at com.icesoft.faces.webapp.http.common.ServerProxy.service(ServerProxy.java:11)
at com.icesoft.faces.webapp.http.servlet.MainSessionBoundServlet$4.service(MainSessionBoundServlet.java:114)
at com.icesoft.faces.webapp.http.common.standard.PathDispatcherServer.service(PathDispatcherServer.java:24)
at com.icesoft.faces.webapp.http.servlet.MainSessionBoundServlet.service(MainSessionBoundServlet.java:160)
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher$1.service(SessionDispatcher.java:42)
at com.icesoft.faces.webapp.http.servlet.ThreadBlockingAdaptingServlet.service(ThreadBlockingAdaptingServlet.java:19)
at com.icesoft.faces.webapp.http.servlet.EnvironmentAdaptingServlet.service(EnvironmentAdaptingServlet.java:63)
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher.service(SessionDispatcher.java:62)
at com.icesoft.faces.webapp.http.servlet.PathDispatcher.service(PathDispatcher.java:23)
at com.icesoft.faces.webapp.http.servlet.MainServlet.service(MainServlet.java:153)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 28/07/2009 09:14:10
|
ranob
Joined: 03/01/2008 00:00:00
Messages: 15
Offline
|
To me happens the same that sanshrine. any solution?
Regards,
Ranob
|
|
|
 |
![[Post New]](/JForum/templates/default/images/icon_minipost_new.gif) 03/09/2009 06:06:28
|
ranob
Joined: 03/01/2008 00:00:00
Messages: 15
Offline
|
Hello all!
Is there not a solution to integrate SWF 2.0.X + Icefaces 1.8 yet?
|
|
|
 |
|
|