[jboss-user] [JBoss Tools (users)] - Re: Lastest JBoss Tools doesn't work on Vista.

2008-07-07 Thread sstrenn
I updated yesterday, and it works fine on my Vista machine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4162986#4162986 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4162986 ___

[jboss-user] [JBoss Seam] - Re: Charts

2007-11-29 Thread sstrenn
If you want very cool, interactive charts, you might try http://www.fusioncharts.com/free/. Here is an example screenshot: https://www.cs.sbcc.edu/strenn/cs129/TopOrdersFusionChart.jpg All you have to do is provide the data in XML format, which I did with a standard facelet and : | http:

[jboss-user] [JBoss Seam] - Re: EL expression for accessing a set?

2007-11-21 Thread sstrenn
If your object is an entity and you don't have a particular reason to store the instruments as a Set (other than that is how seam-gen built the entity), you might consider just changing the Set<> to a List<> and HashSet<> to an ArrayList<>. The persistence stuff will still work fine, and so wil

[jboss-user] [JBoss Seam] - Re: seam-gen entities: cascading bug or accepted behavior?

2007-11-15 Thread sstrenn
I have submitted the feature request to the hibernate tools team. I have also added an entry on the Seam Problems FAQ: http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamProblemsFAQ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4104873#4104873 Reply to the post :

[jboss-user] [JBoss Seam] - Re: seam-gen entities: cascading bug or accepted behavior?

2007-11-14 Thread sstrenn
Max, Thanks for clearing that up. I'll submit a feature request to the hibernate tools project to adjust the cascade attribute so that it matches the database-defined behavior. I'll also submit a request to the seam team for a mention of this behavior in the "Getting started with Seam, using

[jboss-user] [JBoss Seam] - seam-gen entities: cascading bug or accepted behavior?

2007-11-14 Thread sstrenn
Folks, When seam-gen generates an entity with a one-to-many association to another entity, it appears to always set the cascade attribute to CascadeType.ALL. My sense is that this is incorrect behavior when the foreign key's constraint in the database is set to ON DELETE RESTRICT. Is this an "

[jboss-user] [JBoss Seam] - Re: Need help with WAR deployment and Web Services

2007-09-26 Thread sstrenn
Just to expand on this, I have tried a few approaches, including adding the seam servlet filter, but so far nothing that I have tried has worked. Stephen View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089089#4089089 Reply to the post : http://www.jboss.com/

[jboss-user] [JBoss Seam] - Need help with WAR deployment and Web Services

2007-09-26 Thread sstrenn
The Seam reference explains how to configure and package a Seam EAR to support JBossWS web services. That worked great. However, I have not been able to get JBossWS to work with a Seam WAR deployment. The endpoint is not even detected. Any suggestions? Where does standard-jaxws-endpoint-conf

[jboss-user] [JBoss Seam] - Re: Happy Birthday Seam!

2007-09-19 Thread sstrenn
Congrats and great work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4086438#4086438 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4086438 ___ jboss-user mailing list jboss-

[jboss-user] [JBoss Seam] - Re: Gavin King: Bad tools of Seam is kill its uses!!!

2007-09-17 Thread sstrenn
Your posts are rather offensive... I've been using seam-gen (command line) along with Red Hat Developer Studio since it went beta, and I have cranked out several web sites in the process. Perhaps you can try to be a bit more constructive with your posts - that way, if you solve any issues, we

[jboss-user] [JBoss Seam] - HOWTO: Seam 2.0 and

2007-09-16 Thread sstrenn
I found it difficult to get to work with seam 2.0 and JBoss 4.2. The documentation is currently a) spotty, b) out of date, and c) will generally send you into a black hole (due to a) and b)). I made my way out of the black hole, and here are the steps I used: a. Add the following to appl

[jboss-user] [JBoss Seam] - Seam dependencies on JBoss services in default server

2007-09-11 Thread sstrenn
Does anyone know which of the services in the JBoss default server setup are required by Seam? I would like to prune some out, a la http://www.jboss.org/wiki/Wiki.jsp?page=JBossASTuningSliming, but would rather not have to do it using a trial and error method. Regards, Stephen View the origin

[jboss-user] [JBossWS] - Re: jbossws-2.0.1 released

2007-09-07 Thread sstrenn
In order to get ant deploy-jboss42 to work on jbossws-2.0.1, I had to modify line 53 of build-deploy.xml: was: thirdpartylibs="${lib.dir}" /> changed to: thirdpartylibs="${lib.dir}" stacklibs="${lib.dir}" /> View the original po

[jboss-user] [JBoss Seam] - Much thanks!

2007-07-31 Thread sstrenn
I've been digging into Seam 2.0 for the past few days, and just want to complement the whole Seam team for the excellent work they've done. I am looking forward to teaching my next Java EE course and using Seam as our framework. View the original post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1 and Tomcat 6.0.10

2007-04-20 Thread sstrenn
Thanks for the update View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039353#4039353 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039353 ___ jboss-user mailing list jboss-use

[jboss-user] [JBoss Seam] - Minimal JBoss configuration for seam

2007-04-07 Thread sstrenn
JBoss seems to take way too long to start and restart (i.e. 1:40 minutes to 2:30 min are typical on my machine). This can make the development cycle a bit frustrating whenever JBoss needs to be restarted. Is there documentation of how to configure JBoss AS for a minimal Seam CRUD app? In the

[jboss-user] [JBoss Seam] - Seam 1.2.1 and Tomcat 6.0.10

2007-04-07 Thread sstrenn
Just a note for folks trying to get seam examples running on Tomcat 6.0.10: I had to remove el-api.jar from jboss-seam-registration\WEB-INF\lib to get the example to run due to a classpath conflict with Tomcat's own el-api.jar. View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - seam-gen generate entities problem

2007-03-05 Thread sstrenn
I am trying out seam 1.2 and jboss 4.0.5 ejb. I setup a project with seam-gen that accesses a simple little mysql database with users and blogs. After I call seam generate-entities, and restart seam, I get the following error trace upon accessing the users page. In the example below, it app

[jboss-user] [JBoss Seam] - [FileZippedJarVisitor] Unable to find file (ignored)

2007-02-15 Thread sstrenn
seam-gen 1.1.6 generated apps result in the following error on startup: [FileZippedJarVisitor] Unable to find file (ignored) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4017107#4017107 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [JBoss Seam] - Exception getting value of property resultList of base of ty

2007-02-15 Thread sstrenn
I am trying out seam 1.1.6 and jboss 4.0.5 ejb. I setup a project with seam-gen that accesses a simple little mysql database with users and blogs. After I call seam generate-entities, and restart seam, I get the following error trace upon accessing the users page. Any ideas as to what is wron