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

2007-04-11 Thread [EMAIL PROTECTED]
Try the right cut/paste buffer | | Caused by: java.lang.reflect.InvocationTargetException | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | at sun.reflect.Deleg

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

2007-04-11 Thread [EMAIL PROTECTED]
Yep, the JCaptcha default engine needs a graphics display buffer. This is not good and won't run on servers without displays. In fact, I think integrating JCaptcha wasn't the best idea we ever had, it's slow, has unusable default output (I really can't read it), and has dependencies such as this

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

2007-04-11 Thread [EMAIL PROTECTED]
Ok, thanks. Having a captcha is very important for the project I am working on. please keep me informed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4036256#4036256 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=403

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

2007-04-11 Thread Sammy8306
Can't you solve this by setting the property java.awt.headless to true, either by passing it to the JVM as -Djava.awt.headless=true or by programmatically setting it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4036266#4036266 Reply to the post : http://w

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

2007-04-11 Thread [EMAIL PROTECTED]
Yes I did that.. seems to have cured it (see the "headless line " next... I added this to my /etc/bash.bashrc file: | #added by Tony for JAVA_HOME | export JAVA_HOME=/usr/local/jdk1.6.0_02 | #added by Tony for JBoss Home | export JBOSS_HOME=/usr/local/jboss-4.0.5.GA | #added by Tony to

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

2007-04-11 Thread [EMAIL PROTECTED]
Commenting this out (this page is where it all goes horribly wrong): | | | gives: | An Error Occurred: | Change component/tag '_id139:0:_id142' from javax.faces.*/ to org.apache.myfaces.*/, or embed it in a form. This is not a bug. Please see: http://wiki.apache.org/myfa

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

2007-04-11 Thread spambob
"[EMAIL PROTECTED]" wrote : Yep, the JCaptcha default engine needs a graphics display buffer. This is not good and won't run on servers without displays. In fact, I think integrating JCaptcha wasn't the best idea we ever had, it's slow, has unusable default output (I really can't read it), and h

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

2007-04-11 Thread [EMAIL PROTECTED]
Sure, that all sounds good. Maybe you can try it by modifying one of the Seam examples and submitting your changes to JIRA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4036321#4036321 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

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

2007-04-17 Thread zdaler
it seems that there is already such thing (simple mathematical questions) inside JCaptcha ... see : com.octo.captcha.text.math.MathCaptcha Maybe a simple change of the current integration would be enough ... (I cannot read those captchas either ...) View the original post : http://www.jboss.co

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

2007-04-17 Thread petemuir
Can you file a feature request in JIRA? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038045#4038045 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4038045 ___ jboss-us

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

2007-04-17 Thread [EMAIL PROTECTED]
We have an existing JIRA issue for captcha enhancements, please add any relevant comments to it: http://jira.jboss.org/jira/browse/JBSEAM-865 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038198#4038198 Reply to the post : http://www.jboss.com/index.html?m

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

2007-05-11 Thread stu2
You might file an enhancement request for this in jira. It would be nice if the captcha image were optionally generated once per conversation for instance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4044983#4044983 Reply to the post : http://www.jboss.co

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

2007-05-11 Thread pmilner
Thanks, I have done so: http://jira.jboss.org/jira/browse/JBSEAM-1320 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4044994#4044994 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4044994 _

[jboss-user] [JBoss Seam] - Re: Captcha - custom message

2007-08-15 Thread wise_guybg
http://jira.jboss.org/jira/browse/JBSEAM-1153 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074355#4074355 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074355 ___ jboss-use

[jboss-user] [JBoss Seam] - Re: Captcha - custom message

2007-05-18 Thread michael.c.small
I was looking to do the same thing but didn't even realize that the CaptchaResponse annotation existed. My guess is that you need to create a getter method (with above annotation) on the Seam Component that handles the form you are associating the captcha input with. Because I was unaware of t

[jboss-user] [JBoss Seam] - Re: Captcha - custom message

2007-05-22 Thread pmilner
Thanks Michael - I'd already tried to add a getter method to the bean and couldn't get it work, but your second suggestion of using the customised s:validate message works really well. Cheers Paul View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4047477#4047477

[jboss-user] [JBoss Seam] - Re: Captcha - custom message

2007-05-23 Thread [EMAIL PROTECTED]
Please add a feature request to JIRA, this should be more easy to override. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048123#4048123 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4048123 ___

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-09 Thread dhinojosa
I had the same issuethen I looked in my lib and didn't have the jcaptcha jar, and had to put it in there. I don't know if that is your issue, but just thought I'd offer that up. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093223#4093223 Reply to the

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-09 Thread [EMAIL PROTECTED]
Do you get the following line in your log when your application deploys? 12:11:15,750 INFO [Contexts] starting up: org.jboss.seam.captcha.captchaImage View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093249#4093249 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-09 Thread paulovittor23
Thanks for the replies and for understand my poor English, I'm studying it yet =) anonymous wrote : I had the same issuethen I looked in my lib and didn't have the jcaptcha jar, and had to put it in there. | | I don't know if that is your issue, but just thought I'd offer that up. I s

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread paulovittor23
anyone ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093441#4093441 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4093441 ___ jboss-user mailing list jboss-user@lists.jboss

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread [EMAIL PROTECTED]
The jcaptcha component isn't starting, probably you don't have the jcaptcha jar in the ear classpath of your deployed applicaiton View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093464#4093464 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread paulovittor23
The jcaptcha jar is inside my app's lib directory...I searched the jar inside my war, and it's there too..( I'm not working with EJB =) ) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093468#4093468 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread [EMAIL PROTECTED]
The only reason it won't install is because of the missing dependency. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093472#4093472 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4093472

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread paulovittor23
ok, I'll check it better in a few minutes and post the results... only one more thing...when I access my app for the first time I receive these messages from the console... anonymous wrote : 10:09:19,916 INFO [Server] JBoss (MX MicroKernel) [4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread [EMAIL PROTECTED]
Can you please describe your packaging. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093596#4093596 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4093596 ___ jboss-user mail

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread paulovittor23
Well, I used the seam generator from jboss-seam-1.2.1.GA to create my app... It's using RichFaces 3.0.1, ajax4jsf-1.1.1 and seam 1.2.1. Structure: jars: anonymous wrote : 08/10/2007 12:0858.225 activation.jar | 08/10/2007 12:08 1.214.410 ajax4jsf-1.1.1-SNAPSHOT.jar | 08

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread wquraishi
you might want to try to drop the jar in /server/default/lib directory. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093668#4093668 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4093668 __

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread wquraishi
actually disregard my last message, in order for me to get it working i added: | | | | | |

[jboss-user] [JBoss Seam] - Re: Captcha image doesn't appear =(

2007-10-10 Thread paulovittor23
I put jcaptcha and some other jars inside my /server/default;lib directory and it works fine... but, in teory, "my_app/WEB-INF/lib" and "jboss/server/default/lib" locations are part of my classpath, so, why my app doesn't work when the jars were inside it ? Thanks for the attention and time a

[jboss-user] [JBoss Seam] - Re: Captcha and Seam 2.0B1 - Doucmentation Problem

2007-08-19 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : | AHA ! Found it... | | The Documentation doesn't say to actually add the JCaptcha jar to your Ear... Yes it does! Section 13.9 of the docs: anonymous wrote : If you wish to use the captcha feature in your application you need to include the jcaptcha-* jar fi

[jboss-user] [JBoss Seam] - Re: Captcha and Seam 2.0B1 - Doucmentation Problem

2007-08-19 Thread [EMAIL PROTECTED]
Doh! You are indeed correct. anonymous wrote : | If you | wish to use the captcha feature in your application you need to include the jcaptcha-* jar file from the Seam lib | directory in your project, and register it in application.xml as a java module. | I am a muppet! View the or

[jboss-user] [JBoss Seam] - Re: captcha fails when using server state saving

2007-09-16 Thread [EMAIL PROTECTED]
Fixed in Seam 2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4084804#4084804 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4084804 ___ jboss-user mailing list jboss-user@list