[jboss-user] [JBoss Tools (users)] - JBossTools 2.0.1 with Seam 2.1.0

2008-03-21 Thread mikeeprice
with SeamGen, on the version selection for Seam I still only get version 2.0. I was pretty sure that JBossTools 2.0.1 is supposed to have support for seam 2.1. I hope I got all the version numbers right. View the original post :

[jboss-user] [JBoss Tools (users)] - Re: Ant build file

2008-03-18 Thread mikeeprice
Knowing Ant is on your system - Make sure there is an ANT_HOME environment variable defined for the directory of where you installed ANT. Make sure that the path to the ANT bin directory is present in the path environment variable. Then on a command line type ant -version and it will

[jboss-user] [JBoss Tools (users)] - Using Subclipse with SeamGen'd projects

2008-03-17 Thread mikeeprice
Is anybody using Subclipse with their SeamGen'd projects? Are there some files that shouldn't be checked in when the projects are initally checked in? Of course when I check the projects out on another machine some of the lib paths and Jre path don't match up so I just delete those and replace

[jboss-user] [JBoss Tools (users)] - Cannot access nightly build page

2008-02-25 Thread mikeeprice
See subject line. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4131956#4131956 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4131956 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Method Overidding

2008-02-21 Thread mikeeprice
When I try to override a method in a subclass Entity I get the error message Repeated column in mapping for entity I can't find documentation on this. I imagine there is some annotation I am supposed to use for this. Thanks for any help. View the original post :

[jboss-user] [Beginners Corner] - Accessing files outside my ear

2008-01-29 Thread mikeeprice
I have some large stable files that I am deploying in my ear file and then displaying with something like | a href=docs/report.pdfYearly Report/a | They take a long time to upload to the server so I would like to deploy them separately from my ear file. What would be the best way to do

[jboss-user] [JBoss Tools (users)] - Something seems wrong with generated filenames.

2008-01-14 Thread mikeeprice
Using Eclipse Version: 3.3.1.1 Build id: M20071023-1652 with Jboss 4.2.2, Seam 2.0.1-SNAPSHOT from last week, Java jre1.6.0_03, JBossTools-200801131613-nightly-ALL-win32 I used Seam Create Entity to create an entity with class name Person. I then ran Seam Generate Entities (isn't this the

[jboss-user] [JBoss Tools (users)] - Re: Something seems wrong with generated filenames.

2008-01-14 Thread mikeeprice
In the process of creating another Entity I noticed a field where the names of those 2 view files is listed and can be edited. Sorry I didn't notice that before. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4119661#4119661 Reply to the post :

[jboss-user] [JBoss Seam] - Newbie question about testing

2008-01-11 Thread mikeeprice
I was looking at the JBoss projects page and noticed JSFUnit. I have also been reading about the Seam Test NG capabilities. It looks like they would both be useful in testing. Just from reading about them it looks like to use them both I would have to use them completely separately. So I guess

[jboss-user] [JBoss Seam] - Re: trying to display a .doc file

2008-01-09 Thread mikeeprice
What I am wondering is why doesn't mydoc where mydoc.doc is an MSword file, work in my Seam application? it says that mydoc.seam is not available. I don't understand Seam well enough to know why it is replacing .doc with .seam. What I did to make this work is create a separate war file from

[jboss-user] [JBoss Seam] - Re: trying to display a .doc file

2008-01-09 Thread mikeeprice
I forgot to disable html in previous post mydoc should be mydoc View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4118293#4118293 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4118293

[jboss-user] [JBoss Seam] - Re: trying to display a .doc file

2008-01-09 Thread mikeeprice
Well I guess I don't undertstand how to display html in a post. maybe a href=mydoc.docmydoc will make it work View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4118294#4118294 Reply to the post :

[jboss-user] [JBoss Seam] - trying to display a .doc file

2008-01-06 Thread mikeeprice
Trying to display a an MS Word .doc file with s:link view=/CamdenPlanVSN-1.2-1-2-08.doc styleClass=footerLink h:outputText value=Camden Emergency Plan/ /s:link but get description The requested resource (/cwe/CamdenPlanVSN-1.2-1-2-08.seam) is not available. I can not find documentation

[jboss-user] [JBoss Seam] - Re: Binding Component to Backing Bean Property

2007-10-16 Thread mikeeprice
I have a session bean that basically contains the logic for a crud app so I had put the property that I was using for the component binding in that bean. Based on your comments I created a separate stateless bean scoped EVENT and put the bind-to property in there and now it works fine. Thank

[jboss-user] [JBoss Seam] - Binding Component to Backing Bean Property

2007-10-13 Thread mikeeprice
I tried to bind a component to a backing bean property h:form h:panelGrid id=panelGrid_01 binding=#{conceptManager.letterPanelGrid}/ /h:form and ran into this problem. You can't bind to a CONVERSATION scoped backing component because the conversation

[jboss-user] [Installation, Configuration DEPLOYMENT] - port 8080 closed with JBoss 4.2.1.GA

2007-08-25 Thread mikeeprice
When I changed from using JBoss 4.0.5.GA to 4.2.1.GA people could no longer access my web applications from the Internet. I could still access it from the local host. netstat -a showed listening on port 8080 but a port test from the Internet said the port was closed. With 4.0.5.GA things worked

[jboss-user] [JBoss Seam] - Learning to use s:selectItems

2007-08-21 Thread mikeeprice
Using jboss-4.2.1.GA and jboss-seam-2.0.0.BETA1 Given in peoplePopup.xhtml ... h:selectOneMenu s:selectItems value=#{allPeople} var=n label=#{n.name} / /h:selectOneMenu ... in PersonManagerAction.java ... @DataModel private List allPeople; @DataModelSelection(value=allPeople)

[jboss-user] [JBoss Seam] - Displaying a Message for a specific component using id

2007-07-20 Thread mikeeprice
Still learning and have looked a lot places for answer. From some things I have read it looks like I should be able to display a message on a web page for a specific component using the id. I saw this somewhere h:message for=loginName/ where loginName is the id of an h:inputText component.

[jboss-user] [JBoss Seam] - Re: Displaying a Message for a specific component using id

2007-07-20 Thread mikeeprice
Thanks, that worked really well. Now that I know what to look for I will delve into the documentation some more. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4066309#4066309 Reply to the post :

[jboss-user] [Beginners Corner] - Re: unkown source when passing classes as args

2007-04-20 Thread mikeeprice
Thanks for your recognition of what was wrong and help in solving this problem. It was as you suspected a version mismatch. It took me a surprizing amount of time to get the problem resolved. I guess I don't understand the Java versioning scheme very well. View the original post :

[jboss-user] [Beginners Corner] - unkown source when passing classes as args

2007-04-19 Thread mikeeprice
I have included a simple application (listings after the error printout) to show the problem I am having. Essentially, when I try to use cetain classes as method arguments or a return value for methods implemented in a session bean I get unkown source in the Client. I keep having the feeling I

[jboss-user] [JBoss Seam] - CRUD framework documentation

2007-04-02 Thread mikeeprice
Where would I find complete documentation for all the XML associated with the CRUD stuff. I am thinking particularly of things in the components.xml file like entity-home. I have found examples of some of it in the Seam reference manual and in the Seam book but neither of these appear to be a

[jboss-user] [JBoss Seam] - Re: CRUD framework documentation

2007-04-02 Thread mikeeprice
I have a person bean/table and I also wanted to create another bean/table for certain zip codes that would be allowed. fwk:entity-home name=personDao entity-class=Person entity-manager=#{em}/ fwk:entity-home

[jboss-user] [JBoss Seam] - Re: CRUD framework documentation

2007-04-02 Thread mikeeprice
OK. So I looked up some info on navigation-rule and found from-view-id which I used to make things work the way I would like to. Thanks for the info. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4033842#4033842 Reply to the post :

[jboss-user] [JBoss Seam] - Naming a database

2007-03-19 Thread mikeeprice
I made my own app by modifying the helloworld example and everything works fine. I am using MySQL and the app I made by modifying helloworld requires that there be a database by the name of jbossdb in the MySQL repository. I would like to use a different name for my database but I can not find

[jboss-user] [JBoss Seam] - Re: Naming a database

2007-03-19 Thread mikeeprice
duuuh, thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029377#4029377 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029377 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - SEAM and JBoss ESB

2006-10-11 Thread mikeeprice
So if I were using SEAM and building an SOA type system would I need to use something like JBoss ESB or is the ESB type of functionality part of SEAM. It appears that there is some overlap there. Maybe there is the matter of scaling where ESB would facilitate building a larger scale system and

[jboss-user] [JBoss Seam] - Re: Interceptor error

2006-09-20 Thread mikeeprice
What was the help? I think I need the same help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972928#3972928 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972928 ___ jboss-user