[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Hibernate...help..!!!!

2009-04-30 Thread hubaer
Hi andy, anonymous wrote : (1) I need a forum that I can ask newbie questions... I would try this forum hoping there are enough hibernate experts to help you. anonymous wrote : (2) how to get access on the ... You can download the hibernate distribution from sourceforge (the link is on the hi

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Hibernate...help..!!!!

2009-04-27 Thread hubaer
Any new date, when the "little maintenance" on hibernate.org is over and the site is back online? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4226855#4226855 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4226855 ___

[jboss-user] [Security & JAAS/JBoss] - Set Principal in a web application

2009-02-16 Thread hubaer
Hi all, I don't know if this here is the right forum, but hopefully I get some answers from the experts. We are migration a devided application (web, batch processing, web services all single applications) into a JEE application, running on JBoss. As far, most of the parts are running correctl

[jboss-user] [Beginners Corner] - JBoss 4.2.3.ga in the maven repo?

2008-08-08 Thread hubaer
Hi all, I am not sure, if this is the right forum, but I found no forum for general JBoss questions. Are there any plans releasing JBoss 4.2.3.GA into the JBoss Maven repository? All artifacts I found are for 4.2.2 or 5.0.0.x. Thank you for your answers. Marco View the original post : htt

[jboss-user] [JBoss Seam] - Accessing entity beans from separate EAR file

2008-02-12 Thread hubaer
Hi all, I have a problem deploying my seam application. In my application structure I have 2 EARs. One with the services and one with the web-frontend (with seam). In the service-ear I have entity beans which have Seam annotations. Now when I deploy both ears Seam only install the component fro

[jboss-user] [JBoss Seam] - Re: Rendering buttons in a datatable fails

2007-03-13 Thread hubaer
Thank you app4you, So I played another time with my application and I think I resolved the problems with your help. I couldn't put the DataModel in the session scope, because it is only allowed to put it in the page or undefined scope. But I put an @Begin at my factory method. So the action be

[jboss-user] [JBoss Seam] - Re: Rendering buttons in a datatable fails

2007-03-13 Thread hubaer
Thank you so far. Ok, here some code snippets. The xhtml is similar as in the first post. I put only the rendered attribute on the commandButton: | | | | | | | | | | |

[jboss-user] [JBoss Seam] - Re: Rendering buttons in a datatable fails

2007-03-13 Thread hubaer
Hi svadu, was already placed. But no error is printed. I tried the before, but without any changes in the behavior of the page. The supports arguments. If you look in my initial post there is already an attribute pasing to the action bean. And this example works. View the original post :

[jboss-user] [JBoss Seam] - Re: Rendering buttons in a datatable fails

2007-03-12 Thread hubaer
Thank you app4you for your answers. I checked your suggestions, but without any success. The DataModel was allready in a conversion scope. The editable check works showing only the entries which can be edited. The edit-Action is never called, so the @Begin can't start a conversion :-( But I play

[jboss-user] [JBoss Seam] - Rendering buttons in a datatable fails

2007-03-12 Thread hubaer
Hi all, I have a problem with the rendered attribute and buttons in a h:dataTable. I have my list of entries (as in the listing). If I click on the "Edit" button all is ok - I get the edit page. | | | | | | | |

[jboss-user] [JBoss Seam] - How does the DataModel passes the data to the next page?

2007-03-05 Thread hubaer
Hi all, I try to understand the Issue-Tracker example, and hope that someone could explain me a little bit more about the page and object flow. Esspecially I'm interested how the DataModel / dataTable works, because I need this in an application Therefore I took the ProjectFinderBean, ProjectS

[jboss-user] [JBoss Seam] - Re: How does bijetion with new object references works?

2007-02-23 Thread hubaer
Ok. I will try to reload the DataModel. But this means also that the references of the object in the DataModel and in the conversation scope are not the same. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4021209#4021209 Reply to the post : http://www.jbos

[jboss-user] [JBoss Seam] - Re: How does bijetion with new object references works?

2007-02-23 Thread hubaer
Thanks mjek2 for your answer. My DataModel is in the conversion scope, too. But I don't think that this is real problem, because my 2nd example works. Regards Marco View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4021143#4021143 Reply to the post : http://ww

[jboss-user] [JBoss Seam] - How does bijetion with new object references works?

2007-02-23 Thread hubaer
Hi all, I have a question how bijection an object references works. I have the following situation: 1. From a DataModel in overview page I outject an entry to details page. 2. From this page I outject the entry to a edit page. 3. Here I call a session bean via remote access and get a changed entr

[jboss-user] [JBoss Seam] - DataModelSelection returns wrong entry.

2007-02-14 Thread hubaer
Hi all, I have a strange problem with a DataModel. I have a list of item entities referring with a button on a detail information page. Now after showing the overview page the first time and clicking on an item entry I always get the first item in the list. If I go back with the browsers back b

[jboss-user] [JBoss Seam] - Re: Tomahawk File Upload

2007-01-30 Thread hubaer
Hi Ronald, Is there an example for using the seam file upload component? The Wiki only explain how to use tomahawk for uploading files. Regards Marco View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4008261#4008261 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Re: Tomahawk File Upload

2007-01-29 Thread hubaer
Hi Yogesh, I'm not sure if I can really help you, but you can configure the tomahawk File Upload to store the tempory files on your file system or in your ram. So could it be that on your remote servers the files are stored in the ram and therefore the getName() method cannot return the real fi

[jboss-user] [JBoss Seam] - Devided application ignores some classes

2007-01-29 Thread hubaer
Hi all, I have problems deviding my application in differnent ears, to use it on a distributed environment. At the moment I have one EAR file including the complete application (session beans, entity bean in a JAR file and all the web stuff in a WAR file). Now I want to devide the application i

[jboss-user] [EJB 3.0] - Accessing sequences outside an entity bean

2007-01-23 Thread hubaer
Hi all, I have a little question about @SequenceGenerator. I would like to get the value of an sequence over the EJB layer accessing a defined SequenceGenerator and not connection diretly to the underlying database. So is it possible to access the defined sequence outside an entity bean and get

[jboss-user] [JBoss Seam] - Re: Seam selectItems ignores label tag

2007-01-17 Thread hubaer
I tried your suggestion, but it seems that #{messages['languagename.'language.isocode]} not works. I always get an exception: Caused by: javax.el.ELException: Error Parsing: #{messages['languagename.'language.isocode]} | at com.sun.el.lang.ExpressionBuilder.createNodeInternal(Express

[jboss-user] [JBoss Seam] - Re: Seam selectItems ignores label tag

2007-01-17 Thread hubaer
Ok, I tried it and it works. But it wasn't exact that what I really had in mind. I try to explain it a little more: With your example I can only lookup for message keys that has the same name as the value of the attribute. If I have languages with the iso codes 'EN', 'DE' or 'FR' the EL express

[jboss-user] [JBoss Seam] - Re: Seam selectItems ignores label tag

2007-01-16 Thread hubaer
Thank you for your answer petemuir. I have removed the selectitems-1.1.0rc2.jar and the @SelectItems annotation from my ActionBean and now it works. Also works the default converter, so I can remove my class, too. I have a question to the labeling of the entry: As I see, I can use every attribu

[jboss-user] [JBoss Seam] - Seam selectItems ignores label tag

2007-01-15 Thread hubaer
Hello, I tried to figure out how the selectItems component from seam works, but I wasn't very successful yet. I tried out the examples but I can't figure out how I can transfer this to my application. Here my scenario: I have a List of Languages, that I want to display my web gui in a h:sele

[jboss-user] [EJB 3.0] - Re: Problems with foreign key updates

2006-12-01 Thread hubaer
Hi klejs, The update code is in a short method: | public String updateAddress() { | em.merge(a); | return null; | } | a is the Address. em is the EntityManager. Seam updates the member fields. So this is the full method. View the original post : http://www.jb

[jboss-user] [EJB 3.0] - Problems with foreign key updates

2006-11-30 Thread hubaer
Hi all, I have a strange problem with an entity relation. I have a manyToOne relation between an entity called "Address" and and entity called "Country". Address should only use existing Countries. If Country enitity doesn't exists it should throw a kind of ForeignKeyException. Now my Problem:

[jboss-user] [JBoss Seam] - Re: Exception about Seam taglibrary

2006-11-28 Thread hubaer
Hi, you must put the jboss-seam-ui.jar into the WEB-INF/lib in your war-file. Regards Marco View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989369#3989369 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989369 _

[jboss-user] [EJB 3.0] - Re: Setting timeout for EJB3 session beans

2006-08-08 Thread hubaer
Sorry folk, I made a mistake. I meant EJB2 not 3. So the correct comment is: I found the solution for EJB2 to override the configuration from the standardjboss.xml in my local jboss.xml a good solution. If I use annotition I'll have to make all changes in all classes and not in one configuration

[jboss-user] [EJB 3.0] - Re: Setting timeout for EJB3 session beans

2006-08-08 Thread hubaer
Thanks you wolfc. I will try this. But is there another way to configure the timeout not using annotations? I found the solution for EJB3 to override the configuration from the standardjboss.xml in my local jboss.xml a good solution. If I use annotition I'll have to make all changes in all cla

[jboss-user] [EJB 3.0] - Re: Setting timeout for EJB3 session beans

2006-08-07 Thread hubaer
Thank you jc7442 for your reply. I looked also on the ejb3.deployer/META-INF/jboss-service.xml but I found no hint, how to configure this. I seached the forum for you hint about the configuration values. All I found was the follow posting: http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [EJB 3.0] - Setting timeout for EJB3 session beans

2006-08-03 Thread hubaer
Hi all, I am a little bit confused about setting timeout for EJB3 session beans. I searched all the web and the jboss forums, but get no answers. I tried to configure the timeout in the standardjboss.xml with no effect. A setting of the parameter , , and in diverse container configuration to

[jboss-user] [Installation, Configuration & Deployment] - Re: JBoss (seems) to ignore standardjboss.xml and jboss.xml

2006-08-02 Thread hubaer
Hi Matthias, I've the same problem with my EJB3 session beans. Have you find a solution for this problem? I changed also the standardjboss.xml to new values, but ever 10 minutes JBoss try to passivate the beans. I'm using JBoss 4.0.4-GA. Greetings Marco View the original post : http://www.jb