[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-21 Thread baz
The different logging was due to the restricted eclipse console log buffer.
After setting Component again to error the result is:
*** C:\TEMP\ajax.txtWed Feb 21 11:32:58 2007
  | --- C:\TEMP\ajaxnon2.txtWed Feb 21 11:43:37 2007
  | ***
  | *** 209 
  | ! DEBUG org.jboss.seam.core.Manager: Storing conversation state: 9
  | --- 209 
  | ! DEBUG org.jboss.seam.core.Manager: Storing conversation state: 6
  | ***
  | *** 233 
  | - DEBUG org.jboss.seam.contexts.Contexts: destroying: 
com.exade.vcp.Filter.done
  | --- 232 
  | ***
  | *** 241 
  | - DEBUG org.jboss.seam.contexts.Contexts: destroying: 
com.exade.vcp.Filter.ResponseWrapper
  | --- 239 
  | ***
  | *** 255,257 
  | - DEBUG org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter: Finished request 
processing total time 594ms for uri: /baz/faces/pages/showExperiment.xhtml
  | - DEBUG org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter: Filter start 
request processing at 21.02.07 10:34  for uri: 
/baz/faces/managePages/experiment/createAnalysis.xhtml
  | - DEBUG org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter: Filter request 
output to XML
  | --- 252 
  | ***
  | *** 268,272 
  | ! DEBUG org.jboss.seam.core.Events: Processing 
event:org.jboss.seam.preSetVariable.org.jboss.seam.core.facesPage
  | ! DEBUG org.jboss.seam.core.Events: Processing 
event:org.jboss.seam.postSetVariable.org.jboss.seam.core.facesPage
  | ! DEBUG org.jboss.seam.core.Events: Processing 
event:org.jboss.seam.postCreate.org.jboss.seam.core.facesPage
  | ! DEBUG org.jboss.seam.core.Manager: No stored conversation, or concurrent 
call to the stored conversation
  | ! DEBUG org.jboss.seam.jsf.AbstractSeamPhaseListener: After restoring 
conversation context: ConversationContext(10)
  | --- 263,265 
  | ! DEBUG org.jboss.seam.core.Manager: Found conversation id in request 
parameter: 6
  | ! DEBUG org.jboss.seam.core.Manager: Restoring conversation with id: 6
  | ! DEBUG org.jboss.seam.jsf.AbstractSeamPhaseListener: After restoring 
conversation context: ConversationContext(6)
  | ***
Why could the conversation not be found when using ajax?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019831#4019831

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019831
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-21 Thread baz
New information
my non ajax4jsf app produces this kind of URLs

  | http://localhost:8080/baz/faces/pages/main.xhtml?cid=3
  | 
whereas the ajax4jsf aware app produces this:

  | http://localhost:8080/baz/faces/pages/main.xhtml
  | 
The requestparameter is not attached.
in my components.xml there is this kind of information:
   core:manager conversation-timeout=12 
  |   concurrent-request-timeout=500
  |   conversation-id-parameter=cid
  |   conversation-is-long-running-parameter=clr/
  | 
Any Ideas what is going wrong?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019875#4019875

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019875
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-21 Thread baz
I have used quote instead of code so the xml is somewhat corrupted.
The correct way to configure ajax4jsf is:
 filter
  |   display-nameAjax4jsf Filter/display-name
  |   filter-nameajax4jsf/filter-name
  |   filter-classorg.ajax4jsf.Filter/filter-class
  |   init-param
  |param-nameforceparser/param-name
  |param-valuefalse/param-value
  |   /init-param 
  | /filter
  | filter-mapping
  |   filter-nameajax4jsf/filter-name
  |url-pattern/faces/*/url-pattern  
  | /filter-mapping
  | context-param 
  |   param-nameorg.ajax4jsf.VIEW_HANDLERS/param-name 
  |   
param-valueorg.jboss.seam.ui.facelet.SeamFaceletViewHandler/param-value   
  | /context-param
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019894#4019894

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019894
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-21 Thread svadu
baz wrote : Documentation issue:-(
  | The newest doc for ajax4jsf says:
  | anonymous wrote : 2. Add the following content into th WEB-INF/web.xml file 
of the existing application:
  |   | 
  |   | 
  |   |  display-nameAjax4jsf Filter/display-name
  |   |  filter-nameajax4jsf/filter-name
  |   |  filter-classorg.ajax4jsf.Filter/filter-class
  |   | 
  |   | filter-mapping
  |   |  filter-nameajax4jsf/filter-name
  |   |  servlet-nameFaces Servlet/servlet-name
  |   |   REQUEST
  |   |   FORWARD
  |   |   INCLUDE
  |   | /filter-mapping
  | Whereas i have to use
  | anonymous wrote :  
  |   |display-nameAjax4jsf Filter/display-name
  |   |filter-nameajax4jsf/filter-name
  |   |filter-classorg.ajax4jsf.Filter/filter-class
  |   |
  |   |filter-mapping
  |   |   filter-nameajax4jsf/filter-name
  |   |   url-pattern/faces/*/url-pattern
  |   |/filter-mapping
  | I will post this result to the ajax4jsf mailing list

It is not a documentation issue.

filter-mapping
  |  filter-nameajax4jsf/filter-name
  |  servlet-nameFaces Servlet/servlet-name
  |   dispatcherREQUEST/dispatcher
  |   dispatcherFORWARD/dispatcher
  |   dispatcherINCLUDE/dispatcher
  | /filter-mapping

works fine as long as you have Faces Servlet configured properly

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019898#4019898

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019898
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-21 Thread baz
What do you mean with
anonymous wrote : as long as you have Faces Servlet configured 
properlyanonymous wrote : 
  |   | ?
  |   | Can you give me an advice what is wrong with this configuration?
  |   | 
  |   |   |  servlet
  |   |   |   servlet-nameFaces Servlet/servlet-name
  |   |   |   servlet-classjavax.faces.webapp.FacesServlet/servlet-class
  |   |   |   load-on-startup1/load-on-startup
  |   |   |  /servlet
  |   |   |  servlet-mapping
  |   |   |   servlet-nameFaces Servlet/servlet-name
  |   |   |   url-pattern/faces/*/url-pattern
  |   |   |  /servlet-mapping
  |   |   | 
  |   |   | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019907#4019907

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019907
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-20 Thread whuang
can you post the UI code for BEFORE (working) and AFTER (not working)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019435#4019435

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019435
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-20 Thread baz
there is no change. all changes i made are described in my previous post.
After execution of addPCRAnalysis a page is rendered which is the same in both 
cases. This facelet is included in the page(only reference to primerlist)
html xmlns=http://www.w3.org/1999/xhtml;
  | xmlns:ui=http://java.sun.com/jsf/facelets;
  | xmlns:h=http://java.sun.com/jsf/html;
  | xmlns:f=http://java.sun.com/jsf/core;
  | 
  | f:loadBundle basename=lims var=bundle /
  | body
  | ui:component
  | h:panelGrid columns=1 styleClass=main columnClasses=columnPage
  | jdt:listPager for=allPrimers currentStyle=color: #22; 
/
  | h:dataTable border=1 cellspacing=2 id=allPrimers
  | value=#{primerlist.primers} var=zeile rows=5
  | h:column
  | f:facet name=header
  | h:outputText 
value=#{bundle.markername} /
  | /f:facet
  | h:outputText value=#{zeile.name} /
  | /h:column
  | h:column
  | f:facet name=header
  | h:outputText 
value=#{bundle.markerproduct_size} /
  | /f:facet
  | h:outputText value=#{zeile.productSize} /
  | /h:column
  | /h:dataTable
  | /h:panelGrid
  | /ui:component
  | /body
  | /html
  | 
The value of the datatable is bound to #{primerlist.primers} and there the 
exception occurs.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019440#4019440

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019440
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ajax4jsf and outjecting to conversations

2007-02-20 Thread baz
Anyone with an idea?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4019723#4019723

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4019723
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user