Actually, my problem was due to the fact that my converter was not being scanned by seam. Once I got that going everything works as expected...It almost seems like you had similar problem from your earlier posts.
Also, you don't have to register the converter in the faces config as suggested in earlier post (that's the whole point of using the Converter annotation).
And I'm using seam 1.2.1.GA.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096155#4096155
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096155
"amashtakov" wrote : I'm using 1.2.1GA
Yes, 1.2.1.GA uses clr (conversation-long-running-parameter="clr").
There are essentially 2 scenarios:
- GET - conversation attributes passed in query string (the situation you are referring to)
- POST - conversation attributes posted with the form not in the query string (handled transparently by Seam but feel free to parse the code to see the finer details)
So if you use an h:commandLink, h:commandButton, etc, a POST will be initiated which will transparently send the values along with the form. Due to this, the browser cached page will include the values along with the form which is why the back button works.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096153#4096153
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096153
We need to be able to run some custom SQL (a stored procedure call, actually) every time a connection is opened to the database, and the SQL in question would be taken from an HttpSession-scoped object - does Seam provide a way to accomplish that, using events/interceptors or such?
Thanks,
Alex
P.S. The gory details: we're planning to use Oracle Workspace Manager in our app, and the SQL call in question would be either GotoDate or GotoWorkspace SP call, to control the point in time at which the DB session would see the data...
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096151#4096151
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096151