[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread paradigmza
Ye, something is still not working with the deployment (I have been following the previos Eclipse Web Tools Bug) 1 : Fresh EE eclipse (winter) 2 : Jboss Tools 2.1.0.GA 3 : Seam 2.0.2SP1 3 : http://in.relation.to/8932.lace It creates a seam folder in the ear and adds the jar there... this of

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread paradigmza
I have tried both ways... 1: With the patch It creates the seam folder and puts the seam jar in that folder (Which I then just manually move to the ear root) 2: Without the patch It does not put the Seam Jar into the ear at all. Also, if you look at the Add and Remove projects on the Jboss

[jboss-user] [JBoss Seam] - Re: By clicking every row of dataTable, show Popup to edit i

2007-11-29 Thread paradigmza
like this a4j:form | rich:dataTable value=#{rowDataModel} var=row onRowMouseOver=this.style.backgroundColor='#EAEAEA';this.style.cursor='pointer'; | onRowMouseOut=this.style.backgroundColor='#{FF}' |

[jboss-user] [JBoss Seam] - Re: By clicking every row of dataTable, show Popup to edit i

2007-11-25 Thread paradigmza
For option 1: (because I think option 2 is rubbish) you just need a single modal panel, so you do not need to worry about page size. Just bind the contents of the modal panel to some variables then change the values of those variables with a ajax action and rerender the contents of the

[jboss-user] [JBoss Seam] - Re: question about programmatically accessing seam component

2007-11-22 Thread paradigmza
I use | Component.getInstance(course); | Im not quite sure how the factory method works in your case... but you could always get courseManager... | CourseManager cm = (CourseManager) Component.getInstance(courseManager); View the original post :

[jboss-user] [JBoss Seam] - Re: Testing junit in eclipse

2007-11-22 Thread paradigmza
You can't, the seamtest uses testng specific annotations to set everything up. You should be able to replace the testng annotations with junit ones and recompile the seam test (from what I have seen) View the original post :

[jboss-user] [JBoss Seam] - Re: Seam and plain old JDBC code

2007-11-22 Thread paradigmza
| @Resource(mappedName = java:/someDatasource) | DataSource someDataSource; | Then you can get the Connection from that an do normal jdbc Connection conn; | try { | conn = someDataSource.getConnection(); | } catch (SQLException

[jboss-user] [JBoss Seam] - Re: How to invoking methods with parameters with Seam test?

2007-11-21 Thread paradigmza
This issue... http://jira.jboss.com/jira/browse/JBIDE-1129 and http://jira.jboss.org/jira/browse/JBSEAM-2129 Is there a workaround for now? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106685#4106685 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to invoking methods with parameters with Seam test?

2007-11-21 Thread paradigmza
I tried ant and got the same error... (I used the ant file that is automatically created by Eclipse, and just added the testng task... and got the same error. [testng] at org.testng.TestNG.main(TestNG.java:802) |[testng] Caused by: java.lang.IllegalStateException: [EMAIL

[jboss-user] [JBoss Seam] - How to invoking methods with parameters with Seam test?

2007-11-20 Thread paradigmza
Hi, I have looked through the seam examples can can't find out how to invoke a method with parameters with Seam test. This is the method I want to test @Stateless | @Name(dbi) | @AutoCreate | public class DBI_EJB_Impl implements DBI { | | @In | EntityManager entityManager;

[jboss-user] [JBoss Seam] - Re: How to invoking methods with parameters with Seam test?

2007-11-20 Thread paradigmza
Hmm, looks like there is a Major problem with Seam 2 and Embedded Jboss so going to write normal Junit tests for now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106401#4106401 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to invoking methods with parameters with Seam test?

2007-11-20 Thread paradigmza
Thanks... as I thought... very simple :-) Is there an eta on when a fix will be commited to Embedded Jboss so that we can run these Seam tests? (These test are extremely useful for me... and I would really like to use them) View the original post :

[jboss-user] [JBoss Seam] - Re: fileUpload doesn't support ajax submit?

2007-11-16 Thread paradigmza
Anyone have a work around for this? I am getting the same problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4105465#4105465 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4105465

[jboss-user] [JBoss Seam] - How to outject without @Out annotation

2007-10-23 Thread paradigmza
Hi, I see there is a way to inject by using Componenet.getInsance. Is there a way to outject a object with out using the annotation? Thanks. Sean. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4097855#4097855 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Facelets variable injection?

2007-10-23 Thread paradigmza
No luck :-( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4097858#4097858 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4097858 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Facelets variable injection?

2007-10-23 Thread paradigmza
Hi pete, I am not quite sure what you mean by use EL functions? can you give an example? Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098111#4098111 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098111

[jboss-user] [JBoss Seam] - Re: Facelets variable injection?

2007-10-23 Thread paradigmza
Nevermind, I thougtht there was some special el tag that put a variable onto the session... but I see what you mean now. | #{helper.setListToUse(compvar)} | Thanks... so simple... but taken days to figure out (digging into all sort of stuff) ps. Jboss Tools is awesome. View the

[jboss-user] [JBoss Seam] - Facelets variable injection?

2007-10-22 Thread paradigmza
Hello, I am busy building a custom facelets component that I will use like this | tns:autoForm compvar=#{testList}/ | tns:autoForm compvar=#{anotherTestList}/ | Where testList and anotherTestList are List objects that has been outjected by seam. Now on the component side of things I

[jboss-user] [JBoss Seam] - Re: JSF performance tips in Seam applications

2007-08-28 Thread paradigmza
Nice Will defiantly use this... Great Post. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078652#4078652 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078652 ___ jboss-user

[jboss-user] [JBoss Seam] - Add versions to seam2 tags?

2007-08-28 Thread paradigmza
Hi, I deployed a Seam 2 Beta app to Jboss that was running a Seam 1 App. I get an error while using the seam2beta app that the decorate tag cannot be found anonymous wrote : com.sun.facelets.tag.TagException: /login.xhtml @22,53 s:decorate Tag Library supports namespace:

[jboss-user] [JBoss Seam] - h:datatable/el not displaying data

2007-08-03 Thread paradigmza
Hi again, I am using Seam 2.0.0 beta and Jboss 4.2.1, I am having lots of problems using Seam from a quartz MDB bean (instead of from the web end where everything works perfectly) This is an example of my xhtml file that is included in the email and in the web page... (It works from the web

[jboss-user] [JBoss Seam] - Re: h:datatable/el not displaying data

2007-08-03 Thread paradigmza
I removed the xmlns:rich=http://richfaces.ajax4jsf.org/rich; id=ajaxDropDownArea and the result is the same... no luck. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070552#4070552 Reply to the post :

[jboss-user] [JBoss Seam] - Re: h:datatable/el not displaying data

2007-08-03 Thread paradigmza
Ok, this is everything... going to be long... most of it was generated by seam-gen Web.xml ?xml version=1.0 ? | web-app xmlns=http://java.sun.com/xml/ns/j2ee; | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; | xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee

[jboss-user] [JBoss Seam] - Erratic behavior of Seam email? or ejbs?

2007-08-02 Thread paradigmza
Hi, I am having problems with Seam Email running off a cron schedule, and the behavior is rather erratic..., I am running on JBoss 4.2.1, Seam 2.0.0Beta This is my quartz service bean @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = cronTrigger, propertyValue = 0 0/1

[jboss-user] [JBoss Seam] - Re: Erratic behavior of Seam email? or ejbs?

2007-08-02 Thread paradigmza
Also sometimes after I redeploy I get this exception... and if I get this exception it happens all the time until I restart jboss, or redeply anonymous wrote : 09:56:02,391 ERROR [SendSettlementEmailBean] could not EMAIL: | java.lang.RuntimeException: java.io.FileNotFoundException:

[jboss-user] [JBoss Seam] - Re: Very basic validation question

2007-07-25 Thread paradigmza
I also have this problem, which I posted about yesterday http://www.jboss.com/index.html?module=bbop=viewtopict=114280 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067307#4067307 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Very basic validation question

2007-07-25 Thread paradigmza
I just tested the Entity vs. Stateful and the same is happening for me... entity works, stateful does not. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067313#4067313 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4067313

[jboss-user] [Security JAAS/JBoss] - Re: Anyone set up SSL on Jboss 4.2.0 ?

2007-07-24 Thread paradigmza
I am having the same problem, did you find a solution? (I am using 4.2.1) I set it up in the exact same way that I set up 4.0.5, which works. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4066914#4066914 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: Anyone set up SSL on Jboss 4.2.0 ?

2007-07-24 Thread paradigmza
Solved it, I added anonymous wrote : protocol=HTTP/1.1 SSLEnabled=true to the config Connector port=443 | protocol=HTTP/1.1 SSLEnabled=true | address=${jboss.bind.address} | maxThreads=250 strategy=ms maxHttpHeaderSize=8192 |

[jboss-user] [JBoss Seam] - Validation not working after upgrade

2007-07-24 Thread paradigmza
Hi, I have just upgraded from JBoss 4.0.5 to 4.2.1, and at the same time upgraded to Seam 2 from 1.2.1. Everything is working fine except the hibernate validations, which don't seem to be working at all. This is my setup that was working with Seam 1.2.1 | s:decorate

[jboss-user] [JBoss Seam] - Trouble with Seam email.

2007-06-19 Thread paradigmza
Hi I have a cron bean that fires off an email... | @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = cronTrigger, propertyValue = 0/30 * * * * ?) }) | @ResourceAdapter(quartz-ra.rar) | public class QuartzMDBBean implements Job { | | @EJB

[jboss-user] [EJB 3.0] - Re: Ejb 3s and scheduling with cron expression.

2007-06-18 Thread paradigmza
Thanks, this is perfect. Where can I find the documentation for this? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4055099#4055099 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4055099

[jboss-user] [EJB 3.0] - Ejb 3s and scheduling with cron expression.

2007-06-15 Thread paradigmza
Hi, I have a simple problem and I was wondering if there is a easy solution... I have an EJB3 | @Stateless | public class SendSettlementEmailBean implements SendSettlementEmail { | public void sendEmail() { | System.out.println(Running Now); | } | } Now I

[jboss-user] [JBoss Seam] - Re: Greate thanks to Jboss team and Jboss-Seam team especial

2007-06-15 Thread paradigmza
Yip, I couldn't agree more... its AWESOME... (been using it since version 1) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054708#4054708 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4054708

[jboss-user] [JBoss Seam] - Seam authentication Help

2007-06-11 Thread paradigmza
Hi, I have just started playing around with the new authentication in 1.2.1 and I am having a bit of trouble getting my mind around the navigation control. Here is a situation, If a user has never logged in before they must first fill in a form then continue to the page they requested. If

[jboss-user] [JBoss Seam] - Seam persistence with Web Service

2007-05-31 Thread paradigmza
Hello, I am trying to use Seam managed persistence (Seam Application Framework) with a web service on Jboss 4.0.5 with ws 1.2.1 and seam 1.2.1. | @WebService | @SOAPBinding(style = SOAPBinding.Style.DOCUMENT) | public class JustSwipeService { | | @WebMethod | public

[jboss-user] [JBoss Seam] - Re: Seam persistence with Web Service

2007-05-31 Thread paradigmza
Solved it, just had to annotate the persist method (which I had overridden) @Transactional View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4050130#4050130 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4050130

[jboss-user] [JBoss Seam] - Changeing Validation Messages

2007-04-30 Thread paradigmza
Hello, How do you change the validation message for a particular field. I have a field that has to be 6 digits, and the messages says anonymous wrote : length must be between 6 and 6 which just looks wrong, I would rather the message says anonymous wrote : Debtor Code must be 6 digits The

[jboss-user] [JBoss Seam] - Re: @Logger not injecting anything in Controller.class

2007-04-17 Thread paradigmza
I just commented out the debug line in the source code, and everything is working perfecly, im not sure what to do from here, except use my custom built seam. (I don't really understand how the injection actually works) | protected T ClassValidatorT getValidator(ClassT modelClass) |{

[jboss-user] [JBoss Seam] - @Logger not injecting anything in Controller.class

2007-04-16 Thread paradigmza
Hi, I have a simple piece of code that is trying to persist/update the database | VweraclientdnamesHome home = new VweraclientdnamesHome(); | home.setVweraclientdnamesId(input.getId()); | home.getInstance().setUsedForEras(true); | home.update(); | where home is a instance of the

[jboss-user] [JBoss Seam] - Re: Navigating through results pages problem

2007-02-28 Thread paradigmza
I am having the same problem with seam-gen code (The generate-entities function). I had the problem with seam 1.1.5 and it still exists in 1.2. My work around at the moment is to just restart JBoss...this problem pops up for me after I have deployed/seam restart your app a few times to jboss.

[jboss-user] [JBoss Seam] - Re: Navigating through results pages problem

2007-02-28 Thread paradigmza
The PermGen thing worked, thanks Gavin. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4024105#4024105 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4024105 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Using EntityQuery Restrictions in Code

2007-01-24 Thread paradigmza
Hi, I would like to know the proper way to use seam restriction in the code. I used to have a way that worked in Seam 1.1.0 but it stopped working in 1.1.1 (hence must be the incorrect way to use them) | ListString restrictions = new ArrayListString(); | restrictions.add(username like

[jboss-user] [JBoss Seam] - Re: Using EntityQuery Restrictions in Code

2007-01-24 Thread paradigmza
Thanks Gavin, I found my problem, the new seam gen, generates @Override | public ListString getRestrictions() { | return Arrays.asList(RESTRICTIONS); | } Which was removing all of my custom restrictions. View the original post :

[jboss-user] [JBoss Seam] - Re: Seam generate-entities failing

2006-12-13 Thread paradigmza
Hi, I have also been getting this error | [hibernate] Expression pojo.identifierProperty is undefined on line 47, column 85 in view/list.xhtml.ftl. | [hibernate] The problematic instruction: | [hibernate] -- | [hibernate] == ${pojo.identifierProperty.name} [on line 47, column 83

[jboss-user] [JBoss Seam] - Re: Problem injecting a stateful session bean

2006-07-31 Thread paradigmza
I fixed it, was a silly error, I was not using the interface. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3961818#3961818 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3961818