[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: jboss 5 + jtds + xa

2009-07-29 Thread jcg3
In case anyone goes trying to solve the same problem... I was able to get the jtds drivers to work with JBoss 5.1.0.GA. -Jason View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4246782#4246782 Reply to the post : http://www.jboss.org/index.html?module=bb&op=po

[jboss-user] [Beginners Corner] - JBoss option for ETL tool?

2009-06-08 Thread jcg3
Hello-- I was just reviewing some ETL tools (Clover and Kettle) and thought to myself, JBoss has to have something in this space too... Obviously there is no JBoss ETL project, but what in the JBoss universe of projects fits into this space? JBoss ESB? Drools? jBPM even? Is there something in

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - jboss 5 + jtds + xa

2009-04-02 Thread jcg3
Hello-- I am migrating an application from JBoss App Server 4.2.3 to 5.0.1 and have run into a problem with my jTDS datasource (for MS SQL Server) when connecting to multiple databases from the same EJB transaction. I have set up the datasources for xa according to the instructions here: http:

[jboss-user] [JBoss Tools (users)] - Re: anyone else have issues with visual editor on OSX?

2008-03-26 Thread jcg3
I re-downloaded the JBoss Tools plugins and... as described, it just worked. There must have been something wonky about my install... thanks for helping me figure out that it must have been something local. -Jason View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss Tools (users)] - Re: anyone else have issues with visual editor on OSX?

2008-03-25 Thread jcg3
I'm already on Eclipse 3.3.2 when I get this behavior. Build id is M20080221-1800. WTP shouldn't be an issue as I deploy using ant build files... Any other versions or settings I should check? Thanks, Jason View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=413

[jboss-user] [JBoss Tools (users)] - anyone else have issues with visual editor on OSX?

2008-03-20 Thread jcg3
I have the 2.0.1 version of the tools installed on eclipse 3.3, and just installed it on OSX. When I try to open an xhtml file, the visual editor gives me the following error: The VPE editor can't be run because your system environment needs to change slightly. The message links to an old wik

[jboss-user] [JBoss Seam] - Re: seam-gen problem with generate-ui and repeated types

2008-02-17 Thread jcg3
Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4129979#4129979 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129979 ___ jboss-user mailing list jboss-user@lists.jboss.

[jboss-user] [JBoss Seam] - Re: Seam 2.0.0.GA is out

2008-02-11 Thread jcg3
I know Seam 2.0.1.GA is out... someone might want to change this topics -- this thread is still sticky at the top of the Seam forum. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128450#4128450 Reply to the post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Seam] - seam-gen problem with generate-ui and repeated types

2008-02-08 Thread jcg3
I am designing from the entities out and the seam-gen generate-ui is incredibly helpful. Great stuff. I've noticed a minor thing that I have questions on. I believe this is a bug... anyone care to confirmation and/or tell me where to log the issue to be fixed in a future release? The problem

[jboss-user] [JBoss Seam] - Re: How to let user print off a list?

2007-07-26 Thread jcg3
You can also use css to determine how the printing appears on paper... google "printing css" for examples. You can go as far as to have only one div show up for printing, or show divs in print that aren't visible on screen. View the original post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JBoss Seam] - Re: Seam security & user session...

2007-07-26 Thread jcg3
You can use the identity object to check if the user is logged in, get the user name, etc. There is a method on identity to log out. Within your JSF page you can simply refer to #{identity.username} and in your code you can do @In Identity identity; (org.jboss.seam.security.Identity). There a

[jboss-user] [JBoss Seam] - Re: Application configuration parameters

2007-07-26 Thread jcg3
Your best choices would be either database or jndi if you don't want it in the ear file / hierarchy. I would use jndi if your sysadmin is configuring the file location as it is easier for them to change the files that store the jndi settings than it would be to update a database. If you go for

[jboss-user] [JBoss Seam] - Re: How bad is unused conversations?

2007-07-25 Thread jcg3
Couldn't one use the conversationList object, inject it into your java class, and iterate through the conversations -- destroy'ing the ones that are no longer needed? Not necessarily elegant, but if propagation="end" doesn't actually end the conversation, it seems like an alternative worth expl

[jboss-user] [JBoss Seam] - Re: How bad is unused conversations?

2007-07-24 Thread jcg3
In your menu links, you should do something like this: That will kill off the old conversation as the new one starts. This is assuming that you can start the new conversation from the Seam component, or in your pages.xml config. Play around with it and leverage the debug.seam page to see how

[jboss-user] [JBoss Seam] - Re: How to setup Seam 1.2.1 with JBoss 4.2.1?

2007-07-24 Thread jcg3
From: http://www.michaelyuan.com/blog/2007/05/29/seam-book-examples-updated-to-jboss-as-420-ga/ ~~ 1. Edit the resources/WEB-INF/web.xml file, and remove the MyFaces listener. 2. Edit the resources/META-INF/application.xml file, and remove the modules referencing el-api.jar and el-ri.jar. 3. Re

[jboss-user] [Installation, Configuration & Deployment] - Could not destroy component - NoClassDefFoundError: com/sun/

2007-06-26 Thread jcg3
Hello everyone-- I have an odd exception being thrown in my application... but first, here's what I'm running. - JBoss 4.2.0.GA - Seam 1.2.1.GA I have followed the instructions to run Seam on JBoss 4.2 (changes to web.xml, application.xml), and everything works fine. The usage of expression