[jboss-user] [JBoss Seam] - Re: conversation switcher and pageflow

2007-03-26 Thread venkateshbr
Hi gavin, I was able to reproduce this with the dvd store example. i added new facelet conversations.xhtml | ui:composition xmlns=http://www.w3.org/1999/xhtml; | xmlns:s=http://jboss.com/products/seam/taglib; | xmlns:ui=http://java.sun.com/jsf/facelets; |

[jboss-user] [JBoss Seam] - conversation switcher and pageflow

2007-03-24 Thread venkateshbr
The conversation switcher doesn't seem to work when the conversation is a pageflow. I am navigating through a page flow and in between i switch to a different menu option and do something else. when i try to switch back to the conversation using the conversation switcher it redirects me to the

[jboss-user] [JBoss Seam] - Re: s:selectDate ajaxRender

2007-03-22 Thread venkateshbr
when i changed the dateformat in calendar.js var CAL_DATE_FORMAT = dd/mm/; then the date format seems to be working fine. But no java scripting events like onchange and onblur are generated on the inputtext component after selecting the date. View the original post :

[jboss-user] [JBoss Seam] - s:selectDate ajaxRender

2007-03-21 Thread venkateshbr
Noticed a few problems with s:selectDate when it is rendered through ajax. i have the following code | a4j:outputPanel id=details | h:inputText id=regDate s:convertDateTime pattern=dd/MM/ /

[jboss-user] [JBoss Seam] - Re: javax.faces.STATE_SAVING_METHOD set to server

2007-03-20 Thread venkateshbr
There were a few issues we are facing when using state saving = server with myfaces due to a bug in myfaces. this was discussed in another thread in the same forum View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4030101#4030101 Reply to the post :

[jboss-user] [JBoss Seam] - Re: RuleBasedIdentity.instance.getSecurityContext()

2007-03-15 Thread venkateshbr
((RuleBasedIdentity) Identity.instance()) still doesn't give me getSecurityContext. am i doing anything wrong. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4028267#4028267 Reply to the post :

[jboss-user] [JBoss Seam] - Re: RuleBasedIdentity.instance.getSecurityContext()

2007-03-15 Thread venkateshbr
no what i mean is this is a compile time error i am not able to cast to RuelBasedIdentity from Identity.getInstance. ((RuleBasedIdentity) Identity.instance()).getSecurityContext() is this the correct syntax. atleast the eclipse codeassist doesn't show me this. View the original post :

[jboss-user] [JBoss Seam] - Re: RuleBasedIdentity.instance.getSecurityContext()

2007-03-15 Thread venkateshbr
any clue on how to get an instance of RuleBasedIdentity bycasting. i tried a couple of options but none of them seem to get an instance of RuleBasedIdentity to get hold of getSecurityContext. 1. (RuleBasedIdentity)RuleBasedIdentity.instance() 2. (RuleBasedIdentity)Identity.instance(). any other

[jboss-user] [JBoss Seam] - Re: RuleBasedIdentity.instance.getSecurityContext()

2007-03-15 Thread venkateshbr
oh the drools jars were not being recognised in the classpath. it is working now. thanks for your reply. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4028669#4028669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4028669

[jboss-user] [JBoss Seam] - RuleBasedIdentity.instance.getSecurityContext()

2007-03-14 Thread venkateshbr
hi, As per the documentation to assert additional long lived facts into the working memory RuleBasedIdentity.instance.getSecurityContext() doesn't seem to work. RuleBasedIdentity returns an instance of Identity and getSecurityContext doesn't work with an instance of identity. I guess

[jboss-user] [JBoss Seam] - Re: s:selectDate problem

2007-03-13 Thread venkateshbr
hi there, I have specified the dateFormat for s:selectDate as dd/MM/ but when the s:selectDate is rendered on an ajax request it defaults to MM/dd/ format. help would be appreciated. regards Venkatesh View the original post :

[jboss-user] [JBoss Seam] - Re: Seam Security

2007-02-07 Thread venkateshbr
does the seam security support multiple authentication modes in the same application such as Digital Certificate login and Username/Password login. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4012409#4012409 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Does DataModelSelection work in a Stateless Session Bean

2007-01-30 Thread venkateshbr
declare the datamodel under PAGE scope. @DataModel(scope=ScopeType.PAGE) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4008669#4008669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4008669

[jboss-user] [JBoss Seam] - Re: iText (PDF) support in Seam

2007-01-29 Thread venkateshbr
hi norman, had a look at the digital signature stuff in CVS. most of the basic features are covered. one thing i noticed is getting a keystore from external context.getResourceAsStream. This is good enough for certificates lying in the keystore and keystore itself present under

[jboss-user] [JBoss Seam] - Re: iText (PDF) support in Seam

2007-01-29 Thread venkateshbr
i agree. one option is to download the pdf and sign it using some tools. The other option is to sign the pdf using an applet reading the client keystore. The reason i say client is in an e-biz transaction b/w a buyer and a supplier the document is always signed using the key of the buyer and

[jboss-user] [JBoss Seam] - Re: iText (PDF) support in Seam

2007-01-19 Thread venkateshbr
Does the current version support embedding digital signatures in pdf or signing a pdf file with a digital signature. If i am not wrong you can do this in iText through the use of pdfStamper. This feature would be used in all e-business sites and it would be really great to have this feature

[jboss-user] [JBoss Seam] - Seam CR1.2 component name and precedence

2006-12-06 Thread venkateshbr
hello, We have just upgraded our application from Seam 1.1 Beta 2 to jboss-seam-1.1.0.CR2. From then on i am getting this exception when the classes are being scanned by seam during server startup. 21:10:14,775 INFO [Initialization] initializing Seam 21:10:14,785 INFO [Scanner] scanning:

[jboss-user] [JBoss Seam] - Re: Seam CR1.2 component name and precedence

2006-12-06 Thread venkateshbr
thanks gavin, it works now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3991664#3991664 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3991664 ___ jboss-user mailing list