[JBoss-user] [JBoss jBPM] - Re: subProcessInstance is null

2006-02-12 Thread [EMAIL PROTECTED]
it's scheduled for 3.0.3. i just don't know yet when 3.0.3 will be released. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923219#3923219 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923219 ---

[JBoss-user] [EJB 3.0] - Re: Problem with Lazy attributes - 4.0.3SP1-EJB3.0RC4

2006-02-12 Thread elkner
But I think, I know why: The legacy db has no/does not support FKs. Try the given example with mysql (I'm using 5.0.15): USE test; | DROP TABLE IF EXISTS `categories`; | CREATE TABLE `categories` ( | `categories_id` int(11) NOT NULL auto_increment, | `parent_id` int(11) NOT NULL defaul

[JBoss-user] [The Lizzard's corner] - BusinessWeek - Oracle buying JBoss

2006-02-12 Thread djr667
Sorry to polute your Forum with the same message again, but this seems to contradict your previous answer: http://www.businessweek.com/technology/content/feb2006/tc20060209_810527.htm More at http://news.com.com/2061-10795_3-6037727.html?tag=nl http://news.com.com/2061-10807_3-6038230.html?tag=

[JBoss-user] [JBoss Seam] - Re: Bookmakring jsf pages in seam?

2006-02-12 Thread RobJellinghaus
"[EMAIL PROTECTED]" wrote : By the way, there is a FAQ item on this... Where *is* the FAQ? I don't see a FAQ link on the wiki? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923213#3923213 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[JBoss-user] [JBoss Seam] - Re: Ending a conversation and begining another at the same t

2006-02-12 Thread RobJellinghaus
LAST THING: Changing HotelListAction.hotelIndex to "@In(required=false) @Out @DataModelSelectionIndex Integer hotelIndex;" doesn't work *either*, because it blows up before even calling the @Factory HotelListAction.find() method. Specifically, it blows up with: Feb 12, 2006 11:04:24 PM com.sun.

[JBoss-user] [JBoss jBPM] - how to run the sample Hello application given by JBoss jBPM?

2006-02-12 Thread m_srinivasmca02
Hi, I want to know how to run the sample application given by JBoss jBPM. Its very urgent thanks and regards srinivas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923211#3923211 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [Security & JAAS/JBoss] - Re: JaasSecurityManager.getActiveSubject(); retruns null

2006-02-12 Thread sea10
Thanks scott, It almost did it, I had to change a bit: AuthenticationManager manager = (AuthenticationManager) m_ctx.lookup("java:/jaas/MyPolicy"); ... Principal user = new SimplePrincipal(userName); Subject subject = new Subject(); // this method filled the current sub

[JBoss-user] [JBoss Seam] - Re: Ending a conversation and begining another at the same t

2006-02-12 Thread RobJellinghaus
OK, so of course I posted that and then thought of one last possibility, which sort of kind of worked. Declare HotelFactory.hotels as "@In ListDataModel hotels". That gets past all the bijection issues. Problem is it doesn't actually affect HotelListAction, because there, hotelIndex is declar

[JBoss-user] [JBoss Seam] - Where Seam's Mailing Lists? and cvs

2006-02-12 Thread cbomoo
Where is Seam's Mailing Lists? and cvs ? I want to access . View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923207#3923207 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923207 -

[JBoss-user] [JBoss Seam] - Re: Tools & Documentation

2006-02-12 Thread cbomoo
I have see seam's example, it is good. I will use it in my project, but I want to known when 1.0 release? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923206#3923206 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=392

[JBoss-user] [JBoss Seam] - Re: Ending a conversation and begining another at the same t

2006-02-12 Thread RobJellinghaus
OK, I tried the above. Specifically, I wanted to make it so the hotel/booking noejb example brings up the hotel list the first time you land on main.xhtml, without starting a conversation. The hotel list is in session scope, in other words, just like the booking list. Then the "View Hotel" li

[JBoss-user] [JBoss Seam] - Re: ifNotBegunOutcome and non-action page loading

2006-02-12 Thread andrew.rw.robinson
Okay, got a solution. I went back to using my "on-load" library from jsf-comp. For those interested, it is the "jsfExt" library at http://www.sf.net/projects/jsf-comp (http://sourceforge.net/project/showfiles.php?group_id=137466&package_id=168611) I added a method "validateInConversation" that

[JBoss-user] [JBoss jBPM] - Re: foreach ActionHandler

2006-02-12 Thread enazareno
Hi Slavikos, If I am not mistaken, I think this might give you unexpected results regarding the state of the workflow. There is only one path of execution in this case, the root token. Once the first iteration finishes, the current node is already the join node (end_of_user_iteration), thu

[JBoss-user] [JBoss Seam] - Re: ifNotBegunOutcome and non-action page loading

2006-02-12 Thread andrew.rw.robinson
Tried that but I get errors later when using EL expressions to refer to child properties of my object which is of course null since the conversation method has not been invoked that creates my user object View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923200#

[JBoss-user] [JBoss Seam] - Re: Child object validation

2006-02-12 Thread [EMAIL PROTECTED]
I'll point Emmanuel this way. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923199#3923199 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923199 --- This SF.net ema

[JBoss-user] [JBoss Seam] - Child object validation

2006-02-12 Thread andrew.rw.robinson
Hibernate validation question. I am trying out using only hibernate validation for my entity beans, so that I don't have to duplication JSF validators when editing the same object on different pages. I have my user object with children lists (addresses, emails and phone numbers). In my SB: @Va

[JBoss-user] [JBoss Seam] - Re: ifNotBegunOutcome and non-action page loading

2006-02-12 Thread [EMAIL PROTECTED]
i think the best approach is to use @Out(required=false) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923196#3923196 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923196

[JBoss-user] [JBoss AOP] - Converting EJBException in other exception

2006-02-12 Thread virrey
In a client that access a ejb I want to catch all the EJBExceptions and rethrow as the originating exception. how can i do this if i dont want to mark all the methods that access the beans? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923197#3923197 Reply

[JBoss-user] [JBoss Seam] - Re: ifNotBegunOutcome and non-action page loading

2006-02-12 Thread andrew.rw.robinson
Is there a workaround? Could I cause a redirection on a property access using an interceptor? Could I tell from an interceptor if the accessed session bean has an active conversation or not? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923195#3923195 Reply

[JBoss-user] [JBoss Portal] - Incomplete deployment listing error

2006-02-12 Thread scotttam
Environment: JBoss AS 4.0.3-SP1 MySQL 5.0 Mac OS X (10.4.4) Eclipse 3.1.1 JBoss-IDE 1.5-RC1 JBoss Portal 2.2.1 I am getting the following error when starting the server. I have read some of the other postings and it seems others are having a similar problem and it might be due to MySQL 5. Has a

[JBoss-user] [JBoss Seam] - Re: ifNotBegunOutcome and non-action page loading

2006-02-12 Thread [EMAIL PROTECTED]
Property access cannot trigger the ifNotBegunOutcome, because a property access does not have an outcome :) Only action methods have outcomes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923193#3923193 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [JBoss jBPM] - jbpm controller

2006-02-12 Thread zxf_NARI
Dear everyone: when I refer the processdefinition.xml of websale example embeded in the jbpm-3.0.x , I find the "controller" item in the following code: | | | | | | | | | | | I don

[JBoss-user] [JBoss Portal] - Re: jbpm webapp application into a portlet in a portal

2006-02-12 Thread Isklar
same here View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923191#3923191 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923191 --- This SF.net email is sponsored by:

[JBoss-user] [JBoss Portal] - JPortal and JBPM on the same AS?

2006-02-12 Thread Isklar
Hi everyone. is there a Tutorial or something else, which explains how to deploy the jportal in the jbpm starterkit setup... or to depoly jportal and jbpm on the same jboss AS ? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923190#3923190 Rep

[JBoss-user] [JBoss jBPM] - GEtting Started: JBPM Starter Kit and JPortal 2.2.x ?

2006-02-12 Thread Isklar
Hi everyone. is there a Tutorial or something else, which explains how to deploy the jportal in the jbpm starterkit setup... or to depoly jportal and jbpm on the same jboss AS ? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923189#3923189 Rep

[JBoss-user] [JBoss Seam] - ifNotBegunOutcome and non-action page loading

2006-02-12 Thread andrew.rw.robinson
Okay, I may be trying something unsupported, but I thought this was possible: I have a stateful session bean and it is the backing bean for registering a new user. I don't want the user to hit the register page directly, but instead click a register link from another page. Therefore, I want to r

[JBoss-user] [JBossCache] - Re: Question Re: JBossCache 1.3 (cloader chaining)

2006-02-12 Thread [EMAIL PROTECTED]
Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossCacheCacheLoaders - which initially describes the new configuration elements for cache loaders in JBoss Cache 1.3.0, and then talks about the architecture of cache loaders in 1.3.0, including the ability to chain cache loaders. View

[JBoss-user] [EJB 3.0] - Re: em.getReference ?

2006-02-12 Thread elkner
OK, thanx for the enlighten me ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923184#3923184 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923184 --- This SF.ne

[JBoss-user] [EJB 3.0] - Re: Problem with Lazy attributes - 4.0.3SP1-EJB3.0RC4

2006-02-12 Thread elkner
Does not help. Still the same problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923183#3923183 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923183 --- This S

[JBoss-user] [JBoss jBPM] - Re: Build.deploy.xml.

2006-02-12 Thread vballarta
OK..thanks i solved my problem..now i have working websale exampleand if i like to do some modifications in the workflow of websale how can i start how can modify at least the image...?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923180#3923180 Reply

[JBoss-user] [JBoss Seam] - Re: CRUD Generator - Deployment Problem

2006-02-12 Thread [EMAIL PROTECTED]
Then make sure you are using the latest nightly build of JBoss IDE. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923179#3923179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923179

[JBoss-user] [JBoss Seam] - Re: CRUD Generator - Deployment Problem

2006-02-12 Thread phicorp
I am definitely using the jboss-seam.jar file from the jboss-seam-1.0beta2.zip file that I downloaded on the 11th of February (2 days ago). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923178#3923178 Reply to the post : http://www.jboss.com/index.html?modu

[JBoss-user] [JBoss jBPM] - Re: view state and get information of statistics

2006-02-12 Thread [EMAIL PROTECTED]
1. The jBPM web app has some monitoring pages that give the global perspective of the deployed process and each specific instance. By default you need no role to see them, i.e. everyone can see them. Assuming access to your database is protected, you can limit access to those pages using the sec

[JBoss-user] [Installation, Configuration & Deployment] - The jar files under MyApp/WEB_INF/lib are not seen by Jboss.

2006-02-12 Thread marinac
Hi, I cannot load any of third party classes located in some jars MyApp/WEB_INF/lib. I am using 3.2.7/ linux. What should I look for? I am new with jboss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923176#3923176 Reply to the post : http://www.jboss.

[JBoss-user] [JBoss jBPM] - Re: BPEL Extension Beta?

2006-02-12 Thread [EMAIL PROTECTED]
Take a look at our road map, where you can find about the upcoming versions, the release dates, and the issues to be addressed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923175#3923175 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[JBoss-user] [EJB 3.0] - Re: EJB3Trail does not work with JBoss 4.0.4 RC1

2006-02-12 Thread [EMAIL PROTECTED]
trailblazer is out-of-date because: * spec has changed * jboss has changed View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923174#3923174 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923174

[JBoss-user] [JBoss jBPM] - Re: websale example

2006-02-12 Thread [EMAIL PROTECTED]
Please see the topic build.deploy.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923173#3923173 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923173 --- This SF

[JBoss-user] [EJB 3.0] - EJB3Trail does not work with JBoss 4.0.4 RC1

2006-02-12 Thread wauwau0977
hi i downloaded a fresh copy of JBoss 4.0.4 RC1, dropped the EAR in the deploy folder and tried the Calulator. This worked with the former 4.0.3 installation! As I read in the notes, there's no need to install the EJB 3.0 deployer manually. So why does it not work? any ideas? has anyone the sa

[JBoss-user] [JBoss jBPM] - Re: Build.deploy.xml.

2006-02-12 Thread [EMAIL PROTECTED]
>From src/resources/hsqldb/create.db.hibernate.properties: # these properties are used by the build script to create | # a hypersonic database in the build/db directory that contains | # the jbpm tables and a process deployed in there | | hibernate.dialect=org.hibernate.dialect.HSQLDial

[JBoss-user] [JBoss Portal] - NPE in Management Portlet

2006-02-12 Thread colintoal
Hi all, I hope someone can help, and I apologize if the answer to my query is in a JIRA issue/WIKI page/forum post/doc that I have missed, but my management portlet isn't working in 2.2.0, 2.2.1RC2 or from HEAD (2.4.0ALPHA ?). Here are my environment details: MySql 5 (with Truncation fixes a

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss installer Exception

2006-02-12 Thread [EMAIL PROTECTED]
Works fine for me. | [EMAIL PROTECTED] Releases]$ /usr/java/jrockit-jdk1.5.0_03/bin/java -jar jboss-4.0.4RC1-installer.jar | PackageListener, install.log=C:\usb\Releases\install.log | [EMAIL PROTECTED] Releases]$ | View the original post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [JNDI/Naming/Network] - Re: Error with JNDI Remote Binding

2006-02-12 Thread onezzstt
I have found my config errors in the new JBoss 4.0.4RC1: the shema of persistence.xml is changed: the new persistence.xml look like this: | | | java:/infonds2 | | | | | | | It runs now with deployment. Thanks. View the original post : http://www

[JBoss-user] [EJB/JBoss] - Re: Subtransactions on EJB

2006-02-12 Thread [EMAIL PROTECTED]
Its a seperate transaction. The Arjuna TM supports nested transactions. http://www.jboss.com/products/transactions View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923167#3923167 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [JBoss Getting Started Documentation] - Re: Installing JBoss 4 on Mac OS X 10.4.* ?

2006-02-12 Thread [EMAIL PROTECTED]
If you have successfully gone through the installer, you are done. You can start JBoss by going to the bin directory and running the run script. ("sh run.sh" is the surest way) Once it is has started, go to http://localhost:8080/ to see what is there. View the original post : http://www.j

[JBoss-user] [News & Announcements] - Re: 3.2.8 release available

2006-02-12 Thread [EMAIL PROTECTED]
Yes that issue was included in the 3.2.8 release as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923165#3923165 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923165 ---

[JBoss-user] [Management, JMX/JBoss] - Re: Unexpected NoClassDefFoundError when an MBean depends on

2006-02-12 Thread [EMAIL PROTECTED]
Dependency is not down to the level of class loading. If you read the service mbean behavior in chapter 2 of the server guide it will be clear that the service lifecycle notion applies well have the service is created in the jvm. The jboss5 microcontainer will support class loader level dependen

[JBoss-user] [JBossWS] - JBossWS 1.0

2006-02-12 Thread hsutarwala
JBossWS 1.0 final version is available but can some documentation be provided on how to download it and then run it? Even better would be a standalone download available to plug in JBoss AS and ready to use. Can you issue a compatibility list of EJB versions and JBoss AS to be used with the new

[JBoss-user] [EJB 3.0] - Re: Problem with Lazy attributes - 4.0.3SP1-EJB3.0RC4

2006-02-12 Thread [EMAIL PROTECTED]
I still haven't replicated the issue on EJB3, but I have replicated a problem saving Class arrays. (Thanks for Adrian Brock who discovered the error just by looking at my code :-) ) So, if whoever is having the issue, could try replacing jboss-serialization.jar by this JAR: http://jira.jboss.c

[JBoss-user] [Beginners Corner] - Re: problem with JBoss class loading

2006-02-12 Thread mtedone1
I wanted to add a comment to my previous posting: if it's true that deployment-based scoping will cause a ClassCastException in case a component in App2 tries to get through JNDI a component in App1, it is true that in the following scenario, only through deployment-based scoping it will be poss

[JBoss-user] [Beginners Corner] - Re: problem with JBoss class loading

2006-02-12 Thread mtedone1
I was posting a similar problem. I think it has to do with the deployment-based scoping. This is my scenario: App1.ear -> Contains a session bean, registered in JNDI App2.ear -> Contains a session bean, registered in JNDI, which retrieves and invokes a business method on session bean of App1 If

[JBoss-user] [JBoss Seam] - Re: @Factory problem

2006-02-12 Thread emsa
"[EMAIL PROTECTED]" wrote : Why would it be called? Well - you tell me :-) I did the following test - I added a @Factory in HotelBookingAction.java, like this: | @Factory("hotels") | @Begin(join=true) | public String find() { |... } | This result in that the find() method is c

[JBoss-user] [EJB 3.0] - Access to Entity Manager in entity beans?

2006-02-12 Thread aboudank
Hello, Are entity beans allowed access to Entity Manager via injection (i.e. @PersistenceContext (unitName="mymgr"))? I would like to run a query from an entity bean method. Thanks and Regards, MKA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923153#39

[JBoss-user] [JBossCache] - Re: Eviction Using Too Much Memory?

2006-02-12 Thread [EMAIL PROTECTED]
Daniel, TO answer your question. Yes, the queue size is too rigid. We do have a Jira task to change that actually. But the total memory used by eviction should also depends on your wakeupInterval. During your load test, if you eviction thread wakes too slowly, you will see the node event accumu

[JBoss-user] [JBoss Eclipse IDE (users)] - Exception while generation code...

2006-02-12 Thread guandm
When I generate code it occurs the expect like this :org.hibernate.console.HibernateConsoleRuntimeException: Could not create or find with one argument delegate constructor java.lang.ClassNotFoundException: java.lang.ClassNotFoundException: I use Eclipse 3.1.2 & JBoss Eclipse IDE 1.5 What is

[JBoss-user] [JBoss/Spring Integration] - Re: TransactionManager and UserTransaction

2006-02-12 Thread alesj
It's in jboss-j2ee.jar. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923146#3923146 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923146 --- This SF.net email is

[JBoss-user] [EJB 3.0] - Re: Error with fetching nested entities

2006-02-12 Thread onezzstt
sorry, the red-colored text should be "Hibernate.initialize(this.vertraegeContact);" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923145#3923145 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923145

[JBoss-user] [EJB 3.0] - Re: Error with fetching nested entities

2006-02-12 Thread onezzstt
is it a good idea, if i use Hibernate.initialize(object) in the "lazy fetch" annotation's method? e.g. like this: @ManyToOne(cascade={}, | fetch=FetchType.LAZY) | @JoinColumn(name="vertraege_partner_contact_id", unique=false, nullable=true, insertable=true, updatable=true

[JBoss-user] [EJB 3.0] - Re: Error in delete and update (unknow column)

2006-02-12 Thread onezzstt
the link of my bug's report: http://opensource2.atlassian.com/projects/hibernate/browse/HBX-586 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923143#3923143 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923143

[JBoss-user] [EJB 3.0] - Re: Error in delete and update (unknow column)

2006-02-12 Thread onezzstt
the link of my bug's report: http://opensource2.atlassian.com/projects/hibernate/browse/HBX-586 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923142#3923142 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923142 -

[JBoss-user] [EJB 3.0] - Re: Problem With EJB or JBOSS CACHE..seems L1 Cache Problem

2006-02-12 Thread epbernard
And of course, this is not an Hibernate nor JBoss Cache problem View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923141#3923141 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923141 -

[JBoss-user] [EJB 3.0] - Re: Problem With EJB or JBOSS CACHE..seems L1 Cache Problem

2006-02-12 Thread epbernard
Do not crosspost between forums This has been answered in Hibernate EJB3 one. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923140#3923140 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923140 ---

[JBoss-user] [EJB 3.0] - Re: java.sql.Timestamp mapping to Oracle database

2006-02-12 Thread epbernard
@Column(columnDefinition View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923139#3923139 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923139 --- This SF.net email is

[JBoss-user] [EJB 3.0] - Re: UNION and EJB-QL

2006-02-12 Thread epbernard
union is not supported View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923138#3923138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923138 --- This SF.net email is s

[JBoss-user] [EJB 3.0] - Re: em.getReference ?

2006-02-12 Thread epbernard
if you use getReference, you know that the reference exists. persist does not access the parent your FK constraints might save your butt here View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923137#3923137 Reply to the post : http://www.jboss.com/index.html?mo

[JBoss-user] [Beginners Corner] - Re: Java Web Start

2006-02-12 Thread moritz.schmidt
Hi Martin, this is maybe a solution. I think this will help. Thanks. Moritz View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923136#3923136 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923136 --

[JBoss-user] [EJB 3.0] - Re: Error in delete and update (unknow column)

2006-02-12 Thread epbernard
it creates a commented @Cascade? Then yes that's a bug. please report http://opensource2.atlassian.com/projects/hibernate/secure/Dashboard.jspa View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923135#3923135 Reply to the post : http://www.jboss.com/index.htm

[JBoss-user] [EJB 3.0] - Re: Cascade Delete on 3 Entities not working

2006-02-12 Thread epbernard
That 's most likely something else. The example you describe works View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923134#3923134 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923134 --

[JBoss-user] [EJB 3.0] - Re: Foreign keys in composite PKs

2006-02-12 Thread epbernard
The doc indicates that it is not yet supported. I've commited in CVS support for association inside a non id embedded object though View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923133#3923133 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: MDB Fails to retrieve messages from Topic after bombardm

2006-02-12 Thread [EMAIL PROTECTED]
"[EMAIL PROTECTED]" wrote : It is very | difficult to achieve a controlled shutdown that doesn't leaving hanging/orphaned | threads lying around. To be later removed when they pass the idle timeout ("long after" the thread pool is dead). View the original post : http://www.jboss.com/index.h

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: MDB Fails to retrieve messages from Topic after bombardm

2006-02-12 Thread [EMAIL PROTECTED]
"Thoennes" wrote : | Dough Lea, the creator of the oswego-concurrent package, said the reason was an unsupported way how JBoss used the thread pool settings, but Adrian regarded it as a bug in the lib. | It is a bug. Just because Doug no longer supports it, doesn't stop it being a bug. ;-

[JBoss-user] [JBoss Seam] - Re: CRUD Generator - Deployment Problem

2006-02-12 Thread [EMAIL PROTECTED]
It also looks like you are not running the latest version of Hibernate Tools. Try the nightly build of JBoss IDE. http://download.jboss.org/jbosside/builds/nightly/buildResults.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923130#3923130 Reply to th

[JBoss-user] [JBoss Seam] - Re: CRUD Generator - Deployment Problem

2006-02-12 Thread [EMAIL PROTECTED]
(1) Because we did not yet implement that. Still the app should run against JBoss' default datasource. (2) Looks like you have an old version of the Seam jar. Make sure you are using Seam 1.0 beta 2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923129#39231

[JBoss-user] [JBossCache] - Samples

2006-02-12 Thread patnaik
Hi All, Is there any samples or glue code for storing database caching . i have found some samples using jboss cache doc but i am geting some error but i guess i might have missed something. simply i want to store data in database and fetch data using TreeCache from database using cache . it can

[JBoss-user] [JBoss Seam] - CRUD Generator - Deployment Problem

2006-02-12 Thread phicorp
Hello All, I have installed Seam beta 2 and the booking example is working as expected. However when I use the CRUD generator in Eclipse JBoss IDE 1.5 I am unable to deploy the generated application. To generate the application I create a new Java 5.0 project, a Hibernate configuration file, a

[JBoss-user] [JNDI/Naming/Network] - jboss service lookup

2006-02-12 Thread miska7
Here's my problem (hope this's the right forum): I set up a scheduler service to call a schedulable session bean. Inside the session bean I can lookup successfully others ejb but lookup for Mail service fails. My code: InitialContext ic = new InitialContext(); Object ref = ic.lookup("java:/Mail

[JBoss-user] [JBossWS] - Re: How to download and install JBossWS?

2006-02-12 Thread balpeck
Hi.. I have the same question..How do i get started with JBossWS.. I tried the CVSRepository link that was posted here.. Firstly i didnt know exactly what to download(the web service folder??).. I thought of trying to download the webservice folder anyway, buti cldnt. I tried using the CVSGrab t

[JBoss-user] [Security & JAAS/JBoss] - JBoss 4.0.2, SSL , Tomcat

2006-02-12 Thread sea10
I have configured the server.xml of tomcat.sar: Connector port="8443" address="${jboss.bind.address}" maxThreads="100" strategy="ms" maxHttpHeaderSize="8192" scheme="https" secure="true" clientAuth="false" keystoreFile="${jboss.server.home.dir}/deploy/jbossweb-

[JBoss-user] [JBoss jBPM] - Re: foreach ActionHandler

2006-02-12 Thread corfian
Jim, thanks for you answer. I'm aware of the handler you are refering to. It was the base for my first solution, which currently seems to work, but I'm not sure if I use jBPM's API correctly ... My handler look's like : public void execute(ExecutionContext executionContext) throws Exception {

[JBoss-user] [JNDI/Naming/Network] - Re: ????Why can?t I lookup the complex object in JBOSS? ????

2006-02-12 Thread shaobz
I did not register the complex bean in any XML files. If it is necessary, Can you tell me how to register or announce it? PLEASE HELP ME View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923122#3923122 Reply to the post : http://www.jboss.com/index.h

[JBoss-user] [JNDI/Naming/Network] - ????Why can?t I lookup the complex object in JBOSS? ????

2006-02-12 Thread shaobz
I have code one small program. It can run successfully in main() method. Then I want to access it through servlet/jsp, but it always throw the Exception: javax.naming.CommunicationException [Root exception is java.net.MalformedURLException: no protocol: Files/Apache] the server which I use is

[JBoss-user] [Installation, Configuration & Deployment] - JBoss installer Exception

2006-02-12 Thread tkettler
Hi, I just tried to install jboss-4.0.4RC1 with the installer jar and got this exception: C:\>java -jar jboss-4.0.4RC1-installer.jar PackageListener, install.log=C:\\install.log - Error - java.lang.NullPointerException java.lang.NullPointerException at com.sun.java.swing.plaf.windows.XP

[JBoss-user] [Beginners Corner] - Re: UserTransaction

2006-02-12 Thread the-gtm
Most API classes are in jboss-j2ee.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923118#3923118 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923118 --- This S

[JBoss-user] [JBoss Portal] - Re: get 404 error when get http://localhost:8080/portal

2006-02-12 Thread kgelner
"weipingy" wrote : I am using | | jboss-4.0.3SP1 | with Portal 2.2 | Oracle 9i database. | | The server seems starting fine. Schema is created. but get 404 error when typing above. | | Any help is appreciated Look for something like this in your JBoss log: --- 22:55:22,629 WA