[jboss-user] [JBoss Seam] - Re: @Log and NullPointerException

2006-11-14 Thread tazo
Now it complains about missing no-args constructor in LogImpl: | java.io.InvalidClassException: org.jboss.seam.log.LogImpl; no valid constructor | at java.io.ObjectStreamClass.init(ObjectStreamClass.java:455) | at java.io.ObjectStreamClass.lookup(ObjectStreamClass.java:297) |

[jboss-user] [JBoss Seam] - Re: @Log and NullPointerException

2006-11-14 Thread tazo
^^ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985938#3985938 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3985938 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - Re: @Log and NullPointerException

2006-11-14 Thread tazo
Forgot to say, with no arg constructor added, LogImpl works fine now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985937#3985937 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3985937

[jboss-user] [JBoss Seam] - Re: Logger in page-scoped component, NPE in post-back.

2006-11-13 Thread tazo
Sory for my bad explanation, i will try again: 1. @Logger inserts instance of org.jboss.seam.log.LogImpl in a field of my component (lets name it 'mylog', not marked as transient) 2. LogImpl class has field log marked as transient. 3. After postback, 'myname' is restored, but it's LogImpl.log

[jboss-user] [JBoss Seam] - Re: Logger in page-scoped component, NPE in post-back.

2006-11-13 Thread tazo
So i looked at implementation of LogImpl class: log field is initialized in ctors and readObject. Nor ctors, nor readObject() are called in postback, i think it is bug. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985367#3985367 Reply to the post :

[jboss-user] [JBoss Seam] - Re: FacesMessage propagation issue

2006-11-13 Thread tazo
I noticed today what if i throw an exception annotated with @Redirect from page action then error message isn't displayed after redirect. Is it the same ussue? How can workaround it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985623#3985623 Reply to the

[jboss-user] [JBoss Seam] - Logger in page-scoped component, NPE in post-back.

2006-11-12 Thread tazo
I have page-scoped seam-component with @Logger field and i'm getting NPE then i use logger during jsf post-backs. After debugging i found what log field of LogImpl which is transient does not restored after object deserialization, readObject method of this class is not called. View the

[jboss-user] [JBoss Seam] - NPE in ParamMethodExpression

2006-11-11 Thread tazo
I'm using facelets custom source file tags feature. Suppose i have tag sortingColumnHeader with source: | ui:composition | xmlns=http://www.w3.org/1999/xhtml; | xmlns:ui=http://java.sun.com/jsf/facelets; | xmlns:h=http://java.sun.com/jsf/html; |

[jboss-user] [JBoss Seam] - Re: NPE in ParamMethodExpression

2006-11-11 Thread tazo
JIRA: http://jira.jboss.org/jira/browse/JBSEAM-492 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985162#3985162 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3985162 ___

[jboss-user] [JBoss Seam] - Re: disabled attribute for s:link

2006-11-11 Thread tazo
http://jira.jboss.org/jira/browse/JBSEAM-491 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985163#3985163 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3985163 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: SEAM - TOMAHAWK - JSCOOKMENU

2006-11-04 Thread tazo
jscookmenu control is simply broken in 1.1.3 (they just commented out some code related to dummy form workaround, removed in that release). You can try last snapshot of tomahawk 1.1.5, looks like they fixed this issue (i didn't test). Or if you are using facelets then you can simply add

[jboss-user] [JBoss Seam] - Re: How to use conversationPropagation=

2006-08-30 Thread tazo
Came here as soon as i checked cvs log :) Looks like conversationPropagation=none works fine now. Just one note! My original code (look at my first post) didn't work: 'entity' is conversational component and it was unavailable in postback because of disabled propagation. s:link works fine in

[jboss-user] [JBoss Seam] - How to use conversationPropagation=

2006-08-27 Thread tazo
During an conversation i would like to create new conversations (not nested) with custom conversationIds. I added next code to my page: | h:commandLink action=#{actionBean.show} rendered=#{!entity.available} value=X | s:conversationPropagation type=none / | f:param name=name

[jboss-user] [JBoss Seam] - Re: JBoss without EJB container?

2006-07-24 Thread tazo
Oops, topic must be JBoss Seam without EJB container. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3960068#3960068 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3960068 ___

[jboss-user] [JBoss Seam] - JBoss without EJB container?

2006-07-21 Thread tazo
My company is developing web project there all business logic will be delegated to web services. In such scenario web tier don't need services provided by j2ee containers. I found what Seam examples and documentation demonstrate only data oriented solutions. Yes, we can always use JBoss