[JBoss-user] [JBoss Seam] - Re: Beginner Question : how to configure the database

2006-06-22 Thread max522over
try http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpAMysqlDatasource for a start. This is how I set up data source in JBoss. Then it's the persistence xml file for Seam. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952758#3952758 Reply to the post : http://

[JBoss-user] [JBoss Seam] - Re: Injected value is always null

2006-04-20 Thread max522over
ok, I think I understand better what you mean. I had three responses to you comments. 1. I don't mind recompiling one bit. I've been using Continuous integration for several years on all my projects (I'm involved in 13 currently) and I recompile my application and run unit test on them every h

[JBoss-user] [JBoss Seam] - Re: Injected value is always null

2006-04-20 Thread max522over
maybe I'm misunderstanding you but the docs say @In(value="contextVariableName", create=false, required=false) so why couldn't you just say @In(value="user") View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938452#3938452 Reply to the post : http://www.jbo

[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-04-14 Thread max522over
which version of Jboss server are you using. I believe you need to be on the rc release. Seam has not bee updated to work on the latest version of jboss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937481#3937481 Reply to the post : http://www.jboss.com/i

[JBoss-user] [JBoss Seam] - Re: Complex validation assign message to specific component.

2006-04-11 Thread max522over
The following is from chapter 3 of the validation chapter of the hibernate docs. I see the @MyBeanConstraint and I wonder what that is. Is that a validation created for by the developer for that class to ensure not more than 45 instances of dog? Can we attach validations for the entire class si

[JBoss-user] [JBoss Seam] - Re: using commandButton to link to a new window (xhtml)

2006-04-11 Thread max522over
In code set up the listing behavior with: @DataModel private List locationList; @DataModelSelection private Location selectedLocation; your jsp code could look like: I'm not sure about xhtml

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-04-07 Thread max522over
It generates code to manage it but it doesn't work, has errors and sometimes just doesn't compile. When I initially found the problem. I backed off my multiple foreign keys fromone table to another and just put one in. Generated the code and then modified the generated code to support the other

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-04-06 Thread max522over
thynamite, go here http://download.jboss.com/jbosside/builds/nightly/buildResults.html and download JBossIDE-200604061020-nightly-ALL.zip then unzip it into your eclipse directory. then go into eclispe and for each jboss plugin switch it to the nightly build help->software updates->manage conf

[JBoss-user] [JBoss Seam] - Re: two foreign keys to the same table

2006-03-27 Thread max522over
I've got most the compile errors corrected. These errors were mostly duplicate method names and duplicate class name issues. but once I've got those fixed, I've got this error in bringing up jboss and deploying the seamapp ear. | 2006-03-27 14:22:10,640 INFO [org.jboss.seam.Component] Compo

[JBoss-user] [JBoss Seam] - two foreign keys to the same table

2006-03-26 Thread max522over
I'm creating an example application that creates a reservation for a car rental. I created a reservation table that had two references to a location table. One for pickup and one for drop off. When I generate the code I get alot of compile problems with this. The one that just have one seem to w

[JBoss-user] [JBoss Seam] - Re: invalid schema name error, hooking up mysql for seam/hib

2006-03-14 Thread max522over
thanks Gavin for pointing me in the right direction. It's working great now. here is a website that gave me a bit more information if someone needs it http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpAMysqlDatasource what I had to do was copy the $JBOSS_HOME/docs/examples/jca/mysql-ds.xml file to $

[JBoss-user] [JBoss Seam] - invalid schema name error

2006-03-13 Thread max522over
I've generated my skeleton website and I can not find nor insert into the database. I'm using MySql. Here is a table that I'm using: CREATE TABLE HEALTHTRACKDB.WeanInformation( WeanInformationID VARCHAR (50), CalveMarketing VARCHAR(50), Estim

[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-03-13 Thread max522over
I did finally get this to work with the nightly build. I finally discovered that I had to go in eclipse under help->software updates -> manage configuration and change each jboss product to use the nightly build by hand. that got me building, deploying and running. View the original post : ht

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-03-13 Thread max522over
gavin, I appreciate you taking time to help me out. I'll be honest your last message didn't make any sense because I didn't think I was doing that. So I decided to delete jboss, jboss seam and eclipse and start over. I downloaded all the new stuff, then I downloaded that nightly build for the

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-03-11 Thread max522over
thanks for the response. I found the following file on the hibernate download all releases: hibernate-entitymanager-3.1beta5.zip which seemed to be the file you indicated in your first posting. I've got past my initial errors but now I'm getting the following exception 2006-03-11 03:40:22,281 W

[JBoss-user] [JBoss Seam] - Re: Seam reverse engineering tool

2006-03-10 Thread max522over
I can't find the hibernate-entitymanager.jar file in the nightly release? I can find it in my seam download and my jboss download but not in the nightly build download? can someone direct me to where it is. I tried downloading the hibernate tools and it wasn't in there that I could find. View

[JBoss-user] [JBoss Seam] - Re: Method not found: isJndiName

2006-03-10 Thread max522over
I'm getting this problem, so i downloaded 1.5.1 GA and it did not fix my problem. I'm downloading the nightly build of the hibernate tools. I hope that fixes it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929473#3929473 Reply to the post : http://www.j

[JBoss-user] [JBoss Seam] - Re: reverse engineering problem

2006-03-10 Thread max522over
I'm running the same thing and getting the same error. It's just not enough to go on as to what is wrong. Did you find anything. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929468#3929468 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p