[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate Tools updated

2006-03-28 Thread pdog4x4
Max, Does this update include a fix for composite keys in database tables? Thanks, Joshua Preston. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3933205#3933205 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3933205

[JBoss-user] [JBoss Seam] - Re: Class org.jboss.seam.jsf.SeamVariableResolver is no java

2006-03-22 Thread pdog4x4
Gavin, Thanks, that helped me tremendously! Apparently the IDE was bundling the api along with some other jars with my application. I had to manually unbundle the application, delete the jars and then rejar it. Thanks again! View the original post :

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Problems using a mysql database - please help with confi

2006-03-15 Thread pdog4x4
destiny84, Please check out the WIKI on setting up a MySQL datasource. http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpAMysqlDatasource Since you have removed the DefaultDS and replaced it with MySQL, you'll also need to reconfigure JMS to use MySQL. The mappings are different from the

[JBoss-user] [Beginners Corner] - Re: jsp deployment without restarting AS

2006-03-15 Thread pdog4x4
g0, I usually just touch the web.xml file to fire a reload. Of course, it could be different depending on what exactly you are attempting to accomplish. Thanks! Joshua Preston. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3930337#3930337 Reply to the post

[JBoss-user] [Beginners Corner] - Re: The Web Container (Tomcat in JBoss)

2006-03-15 Thread pdog4x4
Dit, That seems a little vague, how about a more descriptive problem and possibly some logs? Obviously I would question whether you have JBoss running or not. Thanks! Joshua Preston. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3930338#3930338 Reply to

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Problems if i try to access database

2006-03-14 Thread pdog4x4
coco, Ensure that idpays is setup properly, as a side note I'm not sure it is being assigned the appropriate value. | PaysLocal paysLocal = paysLocalHome.create(+idpays+1,detail_pays); | This may or may not be the desired result, this code will append a one to the end of idpays, so 100

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Weblogic to JBoss EJB-CMP doesnt work

2006-03-14 Thread pdog4x4
AntGod, I had this problem also with Oracle. Mine was caused by not creating my entity beans with the primary keys prior to updating the rest of the fields in the ejbCreate method. I create mine like this: | /** | * Create method | * @ejb.create-method view-type = local

[JBoss-user] [Beginners Corner] - Re: Database empty after JBoss restart

2006-03-14 Thread pdog4x4
Are you using hand coding your jboss-ejbcmp.xml, XDoclet or EJB3? If you are using XDoclet, try adding @jboss.persistence remote-table = false as demonstrated below. | /** | * @jboss.persistence remove-table = false | */ | public abstract class TestBean implements EntityBean {

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: CMP Entity Bean, Compound Key with foreign reference

2006-03-14 Thread pdog4x4
Fabrizio, AFAIK primary keys can't be foreign keys. Thanks! Joshua Preston. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3930165#3930165 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3930165

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Specifying Database Schema

2006-03-13 Thread pdog4x4
Hey guys, I am running JBoss 4.0.3SP1 utilizing a poorly clustered Oracle database. I have run into a problem where the user that logs into the database must use a different database schema than the default one. How can I specify what database schema to use? By default, if I use the user:

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Specifying Database Schema

2006-03-13 Thread pdog4x4
Nevermind, As a side note, I have smacked myself and yelled: RTFM, or at least, RTFFYI. Anyhow, if anyone else gets stuck doing this, I've figured out that you can specify SQL statements to be run upon valid connection. Therefore, modifying my orace-ds.xml by looking at the WIKI where it

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Problems running Hibernate Code Generation

2006-03-07 Thread pdog4x4
Max, You are correct, downloading Oracle's newest JDBC driver did the trick! Thank you very much! Joshua Preston. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3928533#3928533 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: Error in deployment

2006-03-07 Thread pdog4x4
Gavin, How can I ensure that it is? PS. Loved the conference in Toronto BTW! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3928535#3928535 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3928535

[JBoss-user] [JBoss Seam] - Class org.jboss.seam.jsf.SeamVariableResolver is no javax.fa

2006-03-07 Thread pdog4x4
Hey guys, I've done everything in the example step by step, followed to the letter of the law. I've also done the following: Installed JBoss AS 4.0.4RC1 with EJB3, upgraded MyFaces to 1.1.1, added jboss-seam.jar (1.0 beta 2). I get two exceptions and a failed deployment... It appears to

[JBoss-user] [JBoss Seam] - Re: Class org.jboss.seam.jsf.SeamVariableResolver is no java

2006-03-07 Thread pdog4x4
Gavin, Thanks for the quick reply! I'll look into the first exception. As for the second, a classloading problem seems slightly vague. Not that I'm assuming you fix it for me of course. I've followed three separate threads and performed all the requisite tasks. I've tried following the

[JBoss-user] [JBoss Eclipse IDE (users)] - Problems running Hibernate Code Generation

2006-03-06 Thread pdog4x4
I'm attempting to generate some code based on our existing database and am having problems. It appears that I have everything setup properly, but am hitting a road block! ;-) Anyhow, I'm following the example at http://www.jboss.com/products/seam/SeamHBTools.html Our database is ORACLE, so

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Setting relation when Entity Bean has a compound primary

2006-01-19 Thread pdog4x4
rpa_rio, I'm not sure if you have found an answer for your question, but hopefully I can help. This took me a pretty minute to figure out. I use XDOCLET to generate all the helper classes and setup XML. Of course, your mileage may vary. The brief setup looks like: I did the following for

[JBoss-user] [JBossWS] - Re: Generating WSDL on the fly in JBoss-WS

2005-12-09 Thread pdog4x4
Thomas, Thanks a million, there are times when I smack my head over and over, this being one of them! Thanks! Joshua Preston View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3911857#3911857 Reply to the post :

[JBoss-user] [JBossWS] - Generating WSDL on the fly in JBoss-WS

2005-11-19 Thread pdog4x4
Hey guys! Let me start by saying I'm liking JBoss a lot. Anyhow, I've tried several times to get my WSDL to generate properly. I've followed the tutorial on the WIKI, everything gets deployed nicely and my client even works. One of the requirements is on the fly WSDL for our clients who

[JBoss-user] [JBossWS] - Re: Generating WSDL on the fly in JBoss-WS

2005-11-19 Thread pdog4x4
anonymous wrote : | I have looked at all the logs I am aware of and have not located the problem. I've also attempted to install AXIS as a WAR and implement it that way after googling for about two days. Neither solution produced the WSDL. The part that is driving me nuts is that I got AXIS