[appfuse-user] Integrating a web chat component into Appfuse

2007-12-03 Thread masterg007
I am looking to integrate a java web chat program into my appfuse application. Any recommendations? It could be freeware, open source or commercial. Thanks - Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

[appfuse-user] Debugging an application running in Jetty

2007-10-23 Thread masterg007
All: Is it possible to debug an application running under Jetty from within intelliJ? I ran the Jetty maven plugin, so Jetty is not installed standalone. I am trying to use the jetty plugin for intellJ but it expects a standalone instance of Jetty. I don't suspect that it is possible but I just wa

Re: [appfuse-user] 2.0 problem with hibernate

2007-09-20 Thread masterg007
Seems like your class (com.kace.app.model.League) needs to be added to the persistence.xml file so hibernate knows about it. Example: http://java.sun.com/xml/ns/persistence"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/persist

[appfuse-user] Is there a known bug in Hibernate updating objects with embedded Id field?

2007-06-19 Thread masterg007
All: I have a class with an embedded Id field which represents a PK on my DB table. I am able to save a record to the table but if I attempt to update an existing row in my table hibernate attempts to insert a new record instead of updating the record. The embedded Id is clearly not null so

[appfuse-user] Hibernate not updating Model class with composite embedded id

2007-06-15 Thread masterg007
Help: I have a model class called DealResource that has a composite id (embeddedId) call dealResourceId which represents the primary key. I am using Hibernate JPA with annotations and I am able to insert records but if I try to update an existing record hibernate tries to insert the record instea

Re: [appfuse-user] Choosing an open source database for the enterprise

2007-04-03 Thread masterg007
From what I have read I get the impression that PostgreSQL is a more complete DB than MySQL, it supports stored procedures and triggers which I don't believe MySQL does, at least not the community edition that I use. On 4/3/07, Nathan Anderson <[EMAIL PROTECTED]> wrote: I could be wrong, but my

[appfuse-user] Choosing an open source database for the enterprise

2007-04-03 Thread masterg007
Appfusers: If you had to choose an open source database to use with enterprise level application which would you choose? MySQL, PostgreSQL, HSQL, or Derby? and Why? - Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

Re: [appfuse-user] Switching decorators or not using decorator for some pages not working

2007-03-22 Thread masterg007
Still didn't work -- - Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[appfuse-user] Switching decorators or not using decorator for some pages not working

2007-03-22 Thread masterg007
All: I am trying to switch decorator with Sitemesh and it did not work so I tried to not use a decorator for JSP files under the /pages/test folder so I chaged my decorator.xml to the following: /selenium/* /test/* /test/* /* I am using

Re: [appfuse-user] Version field not populated with a 1

2007-03-21 Thread masterg007
Matt, Yes, you are right it does start at 0 and increments as the record is updated as this link will atest: http://www.onjava.com/pub/a/onjava/2006/09/13/dont-let-hibernate-steal-your-identity.html Why did I not know this? For some reason I thought it inserted a 1 not a 0. Sorry for wastin

Re: [appfuse-user] Version field not populated with a 1

2007-03-21 Thread masterg007
matt: I turned on hibernate's show sql and when it does the insert it prints to the console: insert into contactus_message (email_message, version, date_sent, from_email, to_email, cc_email, email_subject, full_name) values (?, ?, ?, ?, ?, ?, ?, ?) my GUI is setup to only save a record I can't up

Re: [appfuse-user] Version field not populated with a 1

2007-03-21 Thread masterg007
matt: It gets populated with a 0. I can't update from the UI I can only enter new records. On 3/21/07, Matt Raible <[EMAIL PROTECTED]> wrote: Is the version field populated at all? What if you update the record in the UI? Matt On 3/21/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >

[appfuse-user] Version field not populated with a 1

2007-03-21 Thread masterg007
I saved a record from my application with Hibernate3 and the record gets saved in my MySQL database table the problem is the version field does not get populated by a 1 by hibernate. Why is hibernate ignoring this task? Here is my Table: CREATE TABLE contactus_message ( id BIGINT(9) UNSIGNED N

Re: [appfuse-user] Integrating Thickbox 2.1.1 with Appfuse

2007-03-21 Thread masterg007
ou are loading the entire jquery feature set needed by thickbox? masterg007 wrote: > > Has anyone integrated Thickbox in appfuse. I am trying to and keep > getting the error below. > Ther error was captured using Firebug in firefox. > > $(document).ready is not a function > h

[appfuse-user] Integrating Thickbox 2.1.1 with Appfuse

2007-03-20 Thread masterg007
Has anyone integrated Thickbox in appfuse. I am trying to and keep getting the error below. Ther error was captured using Firebug in firefox. $(document).ready is not a function http://localhost:8080/geeoss/scripts/thickbox/thickbox.js Line 11 The is what my header looks like in my JSP file:

[appfuse-user] Message resource key strings not found

2007-03-12 Thread masterg007
All: I am developing an application which has the xml snippet below included in me web.xml file. 404 /404.jsp However, when I enter a bad URL I am forwarded to my 404.jsp file but the jstl tag doesn't work. I get the errors below shown on my 404.jsp page. ???404.tit

[appfuse-user] Does Hibernate still require equals() and hashCode()?

2007-02-22 Thread masterg007
Matt: Does Hibernate still require that these three methods below are still added to your domain classes: public boolean equals(Object o) public int hashCode() public String toString() The reason I am asking is that I noticed that they were not used in your KickStart sample app code. -

[appfuse-user] @TableGenerator doesn't seem to work with Hibernate 3.2.1.ga / MySql 5.0

2007-02-21 Thread masterg007
All, This may be more of a hibernate/MySql issue than an Appfuse one but this could occur is Appfuse as well. I am trying to generate Ids for newly added customers using a table called SEQUENCE in MySql 5.0. I am using hibernate 3.2.1.ga annotations. The next customer I enter should have an Id of