[jboss-user] [EJB 3.0] - Re: Joined Inheritance Strategy Problem

2007-08-10 Thread grdzeli_kaci
waynebaylor wrote : The InheritanceType.JOINED is a table per subclass strategy. So you don't need a discriminator, which is probably why it was null. i did what you say, but problem not resolved. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072843#4072843

[jboss-user] [JBoss Seam] - Where abouts should I change if I change the ds.xml inside b

2007-08-10 Thread guiltyxsin
Hi, I am a newbie in seam, and I was trying to change the ds.xml inside booking example so that I can use it to connect to the database I wanted. However, I am not sure if there's other part of the booking example I need to modify in order for the search function to work. So if anyone has

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-10 Thread nickarls
Umm, never mind previous post. Does it find *any* EJBs or is just a new one that isn't found? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072861#4072861 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4072861

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-10 Thread brain101
thanks about your quick reply. so, if i canĀ“t set the processing order, how can i take influence on the ordering/sorting in the database (e.g. via the name of the window (aaaWindow has a lower id than zzzWindow), the length of the name, etc.)? unfortunately for our application it is very

[jboss-user] [Messaging, JMS JBossMQ] - spcace in directory name of the jboss

2007-08-10 Thread milind.uc
suppose if I put the space in the jboss directory name like jboss-4.0.0 to jboss-4.0.0 s then it will not run and gives the error like | === | . | JBoss Bootstrap Environment | . | JBOSS_HOME:

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-10 Thread [EMAIL PROTECTED]
I implicitly thought you were talking about ordering the windows to order them in the layout. If you were really talking about processing (or computing), no you cannot give an order, you should not depend on the ordering. Each window could in theory could be rendered in parallel. View the

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-10 Thread [EMAIL PROTECTED]
Forgot about 2.2 but don't you have a height tag in -object.xml ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072852#4072852 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4072852

[jboss-user] [JBoss Seam] - Re: Where abouts should I change if I change the ds.xml insi

2007-08-10 Thread nickarls
Without looking too much at the example in question, I would guess that changing the DS should be enough since I recall that it does normal searches to the DB. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072851#4072851 Reply to the post :

[jboss-user] [JBoss Seam] - Using EntityManager in Hibernate Validator

2007-08-10 Thread csl
I try to use the EntityManager in a Hibernate Validator, for I'd like to ensure the uniqueness of a username. This should get reported to the user using ajax4jsf. I implemented it using a JSF Validator and it worked, but the Hibernate Validator approach would be preferable, I guess. How can I

[jboss-user] [JBoss Portal] - Re: java.lang.NullPointerException @ InternalContentProvider

2007-08-10 Thread [EMAIL PROTECTED]
I fixed it yesterday in Branch_2_6 but your post reminded me to do it in trunk ;) I just did, thanks. It's good to see someone looking into the code, try to fix things and report how to fix :) By the way, branches/JBoss_Portal_2_6 (Bug fixes, little enhancements) should be more stable than

[jboss-user] [JBoss Portal] - Re: Use Edit/Help modes with JSF based portlet

2007-08-10 Thread [EMAIL PROTECTED]
FOr myFaces you would have to extend the existing portlet bridge. The Sun RI lets you define pages for the 3 modes of the spec. (Note: you cannot change the window state when using a JSF app) There is room for a Portlet framework that would support this ;) View the original post :

[jboss-user] [JBoss Seam] - Re: How to modify booking example login?(newbie question)

2007-08-10 Thread nickarls
Put some debug code before the if-statement that displays the identity.getUsername() and identity.getPassword() to see that they are populated OK... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072844#4072844 Reply to the post :

[jboss-user] [JBoss Seam] - Re: [SEAM 2.0 BETA 1] Embedded ejb container fails at test s

2007-08-10 Thread urswag
I also got this error. What I did was to download embedded-jboss-beta2. I copied then the bootstrap directory into the jboss Seam boostrap directroy. Then I should work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072840#4072840 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
Incidentally, why are you using an aggregate function in your test SQL statement? Doesn't MySQL have a dummy table like Oracle dual, where you can write a simple query like: SELECT 1 FROM dual View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072839#4072839

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
anonymous wrote : I upgraded the hibernate versions in Seam 1.2.1 to the latest hibernate which definitely reduced the frequency however they are still there. Any suggestions welcome. Oops, sorry. It's 2:00AM here. Sleepy. View the original post :

[jboss-user] [EJB 3.0] - Re: Quartz Configuration not read from Properties in quartz-

2007-08-10 Thread jc7442
You can change the property file by setting the system property org.quartz.properties. If add this prop in run.bat it should works (not try) but that's ugly. I don't know hawo to change that in xml. View the original post :

[jboss-user] [JBoss Seam] - flush-mode=

2007-08-10 Thread tkalactomo
I would like to know is it possible to somehow configure every long-running conversation to begin as flush-mode=MANUAL? Every conversation that starts in my app are like that,and this would spare me precious time and code also. Thanks in advance View the original post :

[jboss-user] [JBoss Seam] - Re: Using EntityManager in Hibernate Validator

2007-08-10 Thread csl
Yes, this works. Context ctx = new InitialContext(); | EntityManagerFactory entityManagerFactory = (EntityManagerFactory) ctxlookup(java:/myprojectEntityManagerFactory); | entityManager = entityManagerFactory.createEntityManager(); But isn't there a better way to do this? It would be great

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-10 Thread brain101
i know that our solution is not 100% clean - but now we need some workaround concerning the processing order until we can fix the problem View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072877#4072877 Reply to the post :

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-10 Thread nickarls
Has the build script filtered your components.xml incorrectly? | core:init jndi-name=spike-ear-0.1.0/#{ejbName}/local / | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072857#4072857 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Memory usage in Workflow wait states

2007-08-10 Thread ZazzaZ
Ok, my situation is the following. I've to execute a very large number of process instances but they're not started all in the same time. This number can be even 1 million per day! Some of this instances will live for a few minutes, since the answer they wait for arrives soon, while the others

[jboss-user] [EJB/JBoss] - UserTransaction JNDI name

2007-08-10 Thread bgonline
Hello, I have a question about the UserTransaction object. Indeed, when I deploy a webapp using the following JNDI name java:comp/UserTransaction for the UserTransaction, it works, although when I go in the JNDIView bean of the JMX console, and I invoke the list, I can't see this name in the

[jboss-user] [JBoss Seam] - Re: validation selectManyListbox

2007-08-10 Thread wiberto
I was able to trace the calls until I found where the error was coming from. Basically it comes because the entityManager is null, and it tries to create one by name. Since I didn't have entityManager defined in my components.xml it never created one. Since you mentioned that Seam 2.0 had

[jboss-user] [Messaging, JMS JBossMQ] - Re: spcace in directory name of the jboss

2007-08-10 Thread jaikiran
Don't have a space in the name. Have seen similar issues earlier when there was a space in the install directory. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072864#4072864 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
Check the manifest file in the hibernate3.jar file. If it's 3.2.0 GA, upgrade it to 3.2.5GA. I just had this problem the other day. reference: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2206 download: http://www.hibernate.org/6.html View the original post :

[jboss-user] [Remoting] - Re: Un/Marshaller not found

2007-08-10 Thread [EMAIL PROTECTED]
Sorry for the long delay in answering. When attempting to load a marshaller, org.jboss.remoting.marshal.MarshalFactory will first try to use the value of the datatype parameter, invocation in this case. Since invocation is not a built-in data type, there would be no marshaller associated with

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-10 Thread [EMAIL PROTECTED]
What if we change the engine to have parallel rendering ? Then the ordering would be totally random. It's a possibility open by the JSR-168 spec. Look at PLT.5.2.4 Request Handling anonymous wrote : The render requests may be executed sequentially or in parallel without any guaranteed order.

[jboss-user] [JBoss Portal] - processing order of windows within page

2007-08-10 Thread brain101
in my page (defined in an *-object.xml file), i have 4 windows: metaWindow headWindow menuWindow contentWindow these objects are stored in jbp_object_node as follows: pk;path;name;parent_key; 122542;myportal.mypage;sprechtagsanmeldung;122535 122543;myportal.mypage.metaWindow;metaWindow;122542

[jboss-user] [EJB 3.0] - Re: EJB3 Interceptor never called - how to debug?

2007-08-10 Thread jc7442
For EJB entities: Use @EntityListener annotation with @PrePersist, @PostPersist, @PreRemove @PostRemove, @PreUpdate, @PostUpdate, @PostLoad @Interceptors works fine for session bean and MDB. I'm not sure it is supposed to works for entity View the original post :

[jboss-user] [Beginners Corner] - org.apache.jasper.JasperException: Unable to compile class f

2007-08-10 Thread alamandrax
Hi, I've just finished installing the JBoss AS 4.0.5.GA using the JEMS installer and I configured it to install the ejb 3.0 profile. After completing the installation, I deployed my application to the Application Server. Upon trying to run the application however, I encounter the following

[jboss-user] [Security JAAS/JBoss] - Re: The neverending logout topic

2007-08-10 Thread chakotey07
Hi, Please post your config file and the location of the prop-files, too! Cheers, chakotey07 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072848#4072848 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4072848

[jboss-user] [JBoss Seam] - Re: selectItems strange behavior

2007-08-10 Thread [EMAIL PROTECTED]
Make sure you have a h:messages component on the page and see what errors it gives. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072942#4072942 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4072942

[jboss-user] [JBoss Seam] - Re: selectItems strange behavior

2007-08-10 Thread rodrigotico
Thanks for your answer Pete, I put h:messages component. If a city is selected, the error is value is not valid when I submit the form, but I don't know why. Is that possible: inject the client's address with the selected city? Thanks. Here is the complete code of the page: | ?xml

[jboss-user] [JBoss Seam] - Re: Jboss Seam+Facelet!

2007-08-10 Thread vprasanx
Hi Samdoyle, Thanks for ur prompt reply. But I'm yet to crack it down.. I'd successfully created deployed a Jboss seam app with Jsf+EJB3.0. But when it comes to implementing facelet framework into the abovesaid I'm not getting the app deployed. I'd used nbfaceletssupport-0-5 for

[jboss-user] [JBoss jBPM] - couldn't delete process definition

2007-08-10 Thread tinico
Hi, I've a problem... I need some help... I use jBPM web-console to deploy my process and to delete it... I deploy lot of process and I often delete it because I make lot of tests !! But, There is a problem... When I use the agument notify='yes' on task, I can't delete process... When I

[jboss-user] [EJB 3.0] - Re: Working example por OneToMany cascade remove?

2007-08-10 Thread icordoba
Hi there, thanks a lot for your reply... this is the Portal side: @OneToMany(mappedBy=portal,fetch=FetchType.LAZY, cascade={CascadeType.ALL}) | public void setUsers(SetUser users) | { | this.users = users; | } | |

[jboss-user] [EJB 3.0] - Re: Quartz Configuration not read from Properties in quartz-

2007-08-10 Thread ALRubinger
Actually, that's less ugly than my current temporary solution of having altered the quartz.properties file in the Quartz JAR, re-JARring it. I'll most likely edit run.conf (instead of run.bat, thanks for the suggestion) to add the property to the java runtime. Will have to look into a more

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Using Oracle sequence with JBOSS

2007-08-10 Thread genman
This is an EJB3 question... But anyway... Add this to your getId(): | @GeneratedValue(strategy = GenerationType.AUTO, generator = MY_ID_SEQ) | Then declare the generator to your class declaration: | @SequenceGenerator(name = MY_ID_SEQ, sequenceName = MY_ID_SEQ) | View the

[jboss-user] [JBoss Seam] - Re: Problem in Seam Integration testing

2007-08-10 Thread [EMAIL PROTECTED]
So is el-ri.jar in your test classpath? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073118#4073118 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073118 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: How to build action parameter expression for s:button wi

2007-08-10 Thread [EMAIL PROTECTED]
As Matt says try using #{trackList.dataModel} - getting EL extension working right in a datatable can be tricky. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073107#4073107 Reply to the post :

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-10 Thread [EMAIL PROTECTED]
It should be core:init jndi-pattern=spike-ear-0.1.0/#{ejbName}/local / View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073106#4073106 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073106

[jboss-user] [JBoss Seam] - Re: Login Redirection not propagating GET parameters

2007-08-10 Thread milli
Anyone? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073100#4073100 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073100 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-10 Thread samdoyle
Was just curious in the case you were using a JEE5 app server. If that was the case the jndi pattern would be different from what you are using. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073141#4073141 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Rendering issues with TC6 in JBossAS 4.2.1

2007-08-10 Thread [EMAIL PROTECTED]
You can change the default mime types in deploy/jboss-web.deployer/conf/web.xml. Regards, Stan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073136#4073136 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073136

[jboss-user] [JBoss jBPM] - Re: task-node attribute create-tasks

2007-08-10 Thread warfster
Resolved the problem by not creating the taskinstance before processinstance enters the task-node. Thanks for the suggestions and comments. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073134#4073134 Reply to the post :

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-10 Thread samdoyle
What server are deploying into? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073132#4073132 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073132 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Use Edit/Help modes with JSF based portlet

2007-08-10 Thread [EMAIL PROTECTED]
These links should help. I wrote a tutorial on how to do this with MyFaces a long time ago. I don't know of any really clean way to do it, but you should be able to get something working. http://wiki.apache.org/myfaces/UsingPortletModes http://wiki.apache.org/myfaces/Using_Portlets Good luck,

[jboss-user] [JBoss jBPM] - Re: couldn't delete process definition

2007-08-10 Thread tinico
Here stackTrace : 16:39:32,248 ERROR [STDERR] org.hibernate.HibernateException: null index column for collection: org.jbpm.graph.def.ProcessDefinition.actions | at

[jboss-user] [JBoss Seam] - Re: flush-mode=

2007-08-10 Thread tkalactomo
rmemoria wrote : Hi, | | I have a workaround for that until it's not implemented in SEAM. | | I created a bean like that: | | package com.rmemoria.utils; | | | | import org.jboss.seam.annotations.FlushModeType; | | import org.jboss.seam.annotations.In; | | import

[jboss-user] [JBoss Seam] - [Rules] Seam security and validating entities

2007-08-10 Thread andrew.rw.robinson
I've got the seam rules engine installed and am trying to write a drl file to grant access to my entities. I have a class that is restricted. Relevant beans: @Name(calendar) CustomerCalendar { members : List } CalendarMember { user : User } User { username : String } The CustomerCalendar

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: why need to restart jboss after network changed

2007-08-10 Thread salewski
Perhaps you're getting bit by Java's default DNS caching? http://www.rgagnon.com/javadetails/java-0445.html http://java.sun.com/j2se/1.5.0/docs/guide/net/properties.html From $JRE/lib/security/java.security: # # The Java-level namelookup cache policy for successful lookups: # # any negative

[jboss-user] [JBossCache] - Multiple Objects under a single key in POJOCache?

2007-08-10 Thread BruceSpringfield
from the findAll(id) method in POJOCache, I assumed that multiple objects can be stored under a single id. Is this not the case? If yes, how do I do it? I tried to attach() different objects with the same id, but then when I find() using that id, I get back the object that I last attached

[jboss-user] [JBossCache] - read only POJOCache objects?

2007-08-10 Thread BruceSpringfield
Is there a way to retrieve objects from POJOCache that are read only? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073148#4073148 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073148

[jboss-user] [Installation, Configuration DEPLOYMENT] - why need to restart jboss after network changed

2007-08-10 Thread [EMAIL PROTECTED]
Hi, I'm using JBoss4.x, the problem/question is, whenever a network connection change (ex. changed to wireless, cable unplug and plug again...), then there is exception: ERROR [UDP] exception sending msg (to dest=228.1.2.4:45577): java.net.NoRouteToHostException: No route to host: Datagram

[jboss-user] [JBoss Seam] - Re: seam s:link fetchs list multiple times. big error !

2007-08-10 Thread bulloncito
This is the simplest EntityQuery ever, but for any other case, from a more complex one, to unwrap methods or other dynamically calculated lists, not caching the results will be a performance issue. Maybe even a concurrent request could change some parameter that would end up giving different

[jboss-user] [JBoss jBPM] - Re: Information on jPDL package

2007-08-10 Thread kukeltje
if by 'speedly; you mean without redeploying a e.g. war file then yes classes in the PD zip go first View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073127#4073127 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073127

[jboss-user] [JBoss jBPM] - Re: Database Documentation

2007-08-10 Thread kukeltje
there is a nice sticky post at the top of this forum about the data model. It is for 3.1 but mostly the same for 3.2 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073126#4073126 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread msduk
local-tx-datasource | jndi-namenrg2Datasource/jndi-name | connection-urljdbc:mysql://localhost:3306/db/connection-url | driver-classcom.mysql.jdbc.Driver/driver-class | user-namedb/user-name | passwordpass/password |

[jboss-user] [JBoss jBPM] - Re: couldn't delete process definition

2007-08-10 Thread kukeltje
show stacktraces..., versions etc View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073125#4073125 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073125 ___ jboss-user mailing

[jboss-user] [JBoss jBPM] - Re: Business Calendar modified property

2007-08-10 Thread kukeltje
if you read it somewhere please post where... afaik, it should not be in the root of the classpath but at the front of the classpath and have a specific 'package' name (just like the original one) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073124#4073124

[jboss-user] [JBoss Seam] - Re: Seam deploying a class from my war file from path WEb-IN

2007-08-10 Thread birwin
Well, after more investigation, I discovered it was not my facelets JAR file that fixed this bug, but rather placing a seam.properties file in my WEB-INF/classes directory. The file is empty, but it triggers the seam scanner and deployer to look at the files inside the war's classes directory.

[jboss-user] [JBoss Seam] - Re: How to build action parameter expression for s:button wi

2007-08-10 Thread ASavitsky
You should be able to make it working without using the data model, or at least I was able to. Try placing the trackList (it's an EntityQuery, right?) inside a long-running conversation, as it might be that, by the time the playMediaId() is called, the trackList is already expired, so track.id

[jboss-user] [JBoss Portal] - Re: Tool for developing JSF controls in JBoss portal

2007-08-10 Thread viggo.navarsete
Have you looked at Netbeans? Here's a blog entry about visual JSF portlet development with Netbeans: http://blogs.sun.com/satya/entry/build_jsf_portlet_with_netbeans View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073101#4073101 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
The real question is, how do you ever see the issue when using check-valid-connection-sql? The connection is obviously bad but that fact wasn't picked up by the check. Post the whole local-tx-datasource node, minus the p/w, of course. View the original post :

[jboss-user] [JBoss jBPM] - Re: Information on jPDL package

2007-08-10 Thread tinico
Hi, Thanks for all !! There is no lot of think, and I'm french, so, I can't understand all think !!! If I've understand well: - If I deploy process-definition with classes in the same file, the classes will be written in the database and will be use more speedly !! - If I deploy

[jboss-user] [Beginners Corner] - Build Tools

2007-08-10 Thread mlewis158
I am really not a java developer but am tasked with finding a build tool for my company. My company has been using jboss, eclipse, and myeclipse products. A new staff member mentioned Maven. In beginning my research I found Buckminster, Ant, Buildr. In reading about Maven, I noted proxy

[jboss-user] [Installation, Configuration DEPLOYMENT] - Using Oracle sequence with JBOSS

2007-08-10 Thread neisann
Hi, I'm trying to use JBOSS IDE for Eclipse but I'm having trouble using an automatic generated id populated from a Oracle sequence previously created in the database. I guess there is some aditional configuration that I need to do in my application but I don't know what it is. In the

[jboss-user] [JBossCache] - POJOCache detach()? Sort Of?

2007-08-10 Thread BruceSpringfield
I need to detach an object, but then have it also stay in the cache to be accessed by others if needed or by my own instance if needed again. But I just need to detach() just my reference to the object, so I have my own free object. Is there an easy way to do this with POJOCache? Or does this

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-10 Thread birwin
First of all, thank you to everyone who responded to my question. It makes one a little more comfortable when there is good peer support from a community as there is for SEAM. Here is the information you asked for: Seam version is 2.0.0-Beta1. No EJBs are found (This is actually the only EJB

[jboss-user] [EJB 3.0] - Re: Working example por OneToMany cascade remove?

2007-08-10 Thread waynebaylor
i think it's safe to assume that you have the mappedBy attribute set for the User side of the relationship, right? the mappedBy attribute basically says which side of the relationship is responsible for maintaining the DB foreign key link. so, you could try this in your existing code: |

[jboss-user] [JBossWS] - Type Substitution doesn't work with Schema2Java Client appro

2007-08-10 Thread M_schumpa
Dear Community, I have written a simple Web Service which uses Type Substitution (uses the @XmlSeeAlso annotation) Everything works fine if I use the classes, that are used by by the service, in the Client. But when I try to use the from WSDL generated classes in the Client, only the Super

[jboss-user] [JBoss Messaging] - Re: Clients on a different Class C Network cannot connect

2007-08-10 Thread ekaltenbach
Here is some additional information. We can ping the JBoss machine from the other machine, running on the different class C network. We can even bring up the JBoss web-console from the machine of the different class C network. So, we know the problem is not in the network hardware, a

[jboss-user] [Beginners Corner] - Re: org.apache.jasper.JasperException: Unable to compile cla

2007-08-10 Thread alamandrax
Hi. I think I've fixed the issue. The problem was not with the configuration files or the jar files. Apparently it was Vista all along. I had not seen http://www.hanselman.com/blog/VistasShowCompatibilityFilesAndTheScrumptiousWonderThatIsFileVirtualization.aspx so was clueless about Vista's

[jboss-user] [Messaging, JMS JBossMQ] - Re: UsingWebSphereMQSeriesWithJBossASPart4

2007-08-10 Thread [EMAIL PROTECTED]
JCA1.5 = jboss4.0.x View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073055#4073055 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073055 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem in Seam Integration testing

2007-08-10 Thread EagleEye
As far as I know, withhin testing stuff You should use the getInstance() method of the SeamTest Cuz it has a lot MockImplementations. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073054#4073054 Reply to the post :

[jboss-user] [JCA/JBoss] - Re: SybXADataSource configuration

2007-08-10 Thread [EMAIL PROTECTED]
This will be in docs/examples/jca in the next release, thanks. http://jira.jboss.com/jira/browse/JBAS-4601 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073047#4073047 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073047

[jboss-user] [JBoss jBPM] - Re: Custom instantiator specified with 'config-type' on a De

2007-08-10 Thread pirx
So, does this mean, that this 'feature' will vanish or is 'unsupportred' ? That would be really a pitty, since using a customer instantiator for creating your delegation classes allows to perform some quite nice things. E.g. I use it to chain the ActionHandler to a Spring container so that it

[jboss-user] [JBoss Seam] - Re: selectItems noSelectionLabel

2007-08-10 Thread [EMAIL PROTECTED]
if you choose the noSelectionLabel, the value of the h:selectXXX will be set to null. If you want an actual value, I suggest you add it to the #{collaborateurHome.situationFamilleKeys} list. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073045#4073045 Reply

[jboss-user] [EJB 3.0] - Re: Joined Inheritance Strategy Problem

2007-08-10 Thread grdzeli_kaci
it works, fine, thank you very much. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073044#4073044 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073044 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: How to build action parameter expression for s:button wi

2007-08-10 Thread lpmon
Thanks for the help. I will look at a possible solution with @DataModel and @DataModelSelection. FYI: Example 1.11 in Seam reference 1.2.1.GA is relevant to @DataModel My apologies. I am new to Seam and misunderstood what you meant by data model. I thought you guys were referring to my

[jboss-user] [JBoss Seam] - s:decorate enhancement

2007-08-10 Thread barthjj
Is it possible to pass the 'disabled' attribute into s:decorate like #{required} and #{invalid} are? Has anyone figured out a nice workaround for this? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073168#4073168 Reply to the post :

[jboss-user] [JBoss Seam] - Re: s:decorate enhancement

2007-08-10 Thread [EMAIL PROTECTED]
Please file a feature request in JIRA and we can implement that. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073169#4073169 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073169

[jboss-user] [Messaging, JMS JBossMQ] - Re: Using a 3rd-party JMS provider in JBoss (Sun Message Que

2007-08-10 Thread adamhmitchell
I'm getting closer to answering my own question. Section 6.2 of the JBoss AS docs explain how to reference objects from your RAR files and bind them into JNDI. I was able to expose my javax.jms.ConnectionFactory with a ds.xml file: | connection-factories | no-tx-connection-factory

[jboss-user] [JBoss Seam] - Re: seam webservice conversation id issues

2007-08-10 Thread rvkishore
OK, the exception goes away when I add an aribitrary conversation Id to the SOAP headers. But it seems kind of counter intuitive to have a conversation id in the soap request even for the login service. Isn;t the conversation supposed to be generated and managed by seam? Or am I missing the

[jboss-user] [EJB 3.0] - Re: Interrupting a stateful session bean in use

2007-08-10 Thread mike.nardone
Excuse me, I misunderstood. We are currently setting a flag in the client. However, it's a single method call in teh SFSB that eats a ton of processing, and so while we can have the bean check the flag between methods, that doesn't help us as much as we might like. View the original post :

[jboss-user] [JBoss Seam] - Re: Exception handling problem

2007-08-10 Thread [EMAIL PROTECTED]
This is almost certainly related to icefaces, so I suggest you ask on their forums as well :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073178#4073178 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073178

[jboss-user] [JBoss Seam] - Re: Login Redirection not propagating GET parameters

2007-08-10 Thread [EMAIL PROTECTED]
http://docs.jboss.com/seam/latest-2.0/reference/en/html/events.html#d0e3813 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073180#4073180 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073180

[jboss-user] [JBoss Seam] - Re: 2.0.0BETA1 jboss-seam-ui.jar doesn't match source

2007-08-10 Thread [EMAIL PROTECTED]
It looks functionally identical to me. I guess your decompilation stripped all the annotations. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073181#4073181 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073181

[jboss-user] [JBoss Seam] - Begin/End Conversation

2007-08-10 Thread deved
Is it possible to begin or end a long-running conversation manually? MenuManager.java | if (tableModel != null) { | tableModel.end(); | } | tableModel = (TableModel) Component.getInstance(beanName); | tableModel.begin(); | TableModel.java @Name(tableModel) |

[jboss-user] [JBoss Seam] - Re: Login Redirection not propagating GET parameters

2007-08-10 Thread milli
Thanks Pete. Meanwhile I tried to debug and found out it works only if you define it in page.xml and not when you use the annotation @RequestParameter. Shouldn't passing parmeters to the page either by defining in pages.xml or by annotation @RequestParameter have the same behaviour? View the

[jboss-user] [JBoss Seam] - Re: Login Redirection not propagating GET parameters

2007-08-10 Thread [EMAIL PROTECTED]
No. They are not semantically identical. @RequestParameter is simply for injecting a request parameter, page parameters have a deeper effect on your app (parameter propagation, setting values on your model, application of converters). View the original post :

[jboss-user] [JBoss Seam] - Re: Begin/End Conversation

2007-08-10 Thread [EMAIL PROTECTED]
Conversation.instance().end() - there are few methods for various end types. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073186#4073186 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073186

[jboss-user] [JBoss Messaging] - JMS Bridge Question

2007-08-10 Thread viniciuscarvalho
Hello there! I'm configuring a jms-bridge here. Both sides have identical configuration: *JBoss AS 4.2.0.GA *JBoss Messaging 1.4.0CR1 On the producer side I have a queue named CMSOutboundQueue (the source) and on the receiver side (CMSInboundQueue). Here's my configuration: My remote Loader

[jboss-user] [JBoss Seam] - Re: Jboss Seam+Facelet!

2007-08-10 Thread samdoyle
And one more very important thing. The jndi-pattern that you might see in the examples or seam-gen applications need to be changed to. | java:comp/env/your ear name/#{ejbName}/local | The JEE5 examples have this set properly. View the original post :

[jboss-user] [JBoss Seam] - Re: Login Redirection not propagating GET parameters

2007-08-10 Thread milli
I saw Gavin's response in an earlier posting with the similar problem http://www.jboss.com/index.html?module=bbop=viewtopict=101357start=20 that you need to define them as page parameters. I have it as @RequestParameter in the backing bean. Isn't it already defined as a page parameter? Or do I

[jboss-user] [EJB 3.0] - Re: Working example por OneToMany cascade remove?

2007-08-10 Thread icordoba
OK.. thanks for the reply. This way, Users will the orphan and I need the special Hibernate annotation for orphans to be removed, right? Is there a way of making JBoss really remove User entities itself without that Hibernate-specific annotation? I can't understand what is then the pourpose of

[jboss-user] [JBoss jBPM] - Re: Business Calendar modified property

2007-08-10 Thread Heiner Niehues
I read that in the documentation of jbpm-jpdl-3.2.1 JBoss jBPM jPDL 3.2 jBPM jPDL User Guide 15.2. Calendar configuration The file org/jbpm/calendar/jbpm.business.calendar.properties specifies what business hours are. The configuration file can be customized and a modified copy can be placed

[jboss-user] [JBoss Portal] - Re: Cannot retrieve user: Unable to locate current JTA trans

2007-08-10 Thread kpalania
Ok in this case you have no choice but to go the Tomcat Valve/Custom Authenticator route. Sohil - thanks very much for suggesting this! I've successfully implemented a custom Tomcat Authenticator/Value, and that solves the problem, and I've been able to achieve exactly what I wanted.

[jboss-user] [JBoss Seam] - Re: How to build action parameter expression for s:button wi

2007-08-10 Thread [EMAIL PROTECTED]
When we say data model we are referring to the JSF DataModel. @DataModel is only one way of getting it, another is the #{entityQuery.dataModel}. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073164#4073164 Reply to the post :

[jboss-user] [JBoss Seam] - Re: validation selectManyListbox

2007-08-10 Thread wiberto
That did it. I was playing around with the entity itself and not with the entity manager. once I changed it to use @In instead of @PersistenceContext and I kept the manager defined in the components.xml it started working fine. At least with all this playing around I learned a bit of the

  1   2   3   >