[JBoss-user] [JBoss Seam] - Re: Can I use multiple faces-config.xml?

2006-03-02 Thread deniss.parhomenko
Im my application I use 3 different faces config xml, and when server start, I also see, that faces-config.xml readed twice, but application work withou any problem, but seam configuration located in another faces config(faces-config-seam.xml) file, not faces-config.xml View the original post

[JBoss-user] [JBossWS] - Re: NoClassDefFoundError :at com.sun.mail.handlers.multipart

2006-03-02 Thread bbreil
You need also the activation.jar http://java.sun.com/beans/glasgow/jaf.html Then you have to copy both jar-files in the tomcat dir within the jboss dir e.g. ...\jboss-4.0.4RC1\server\default\deploy\jbossweb-tomcat55.sar View the original post :

[JBoss-user] [EJB 3.0] - Re: Warning WARN [ServiceController] Problem starting servi

2006-03-02 Thread djiska1
Ok I send the Propiedad and Empleado class This is Empleado | package org.jboss.jose.db; | | import javax.persistence.*; | import java.util.*; | | | @Entity | @Table(name=empleados) | public class Empleado { | private int idEmpleado; | private String

[JBoss-user] [EJB/JBoss] - Re: PrimaryKey class Error occured on JBOSS

2006-03-02 Thread [EMAIL PROTECTED]
You have 2 versions of the same PK class deployed somewhere. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927374#3927374 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927374

[JBoss-user] [Installation, Configuration Deployment] - Re: web-console not deployed

2006-03-02 Thread [EMAIL PROTECTED]
1) maybe use the .zip distro 2) web-console had a problem with 4.0.4.RC1, that is already fixed: http://jira.jboss.com/jira/browse/JBAS-2817 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927375#3927375 Reply to the post :

[JBoss-user] [JBoss jBPM] - Re: Creating loops between nodes

2006-03-02 Thread im_ytk
Hi Elmo, Ummm.. I am not very understand. You mean when ProcessInstance starts, in one of the nodes, it will create a separate thread, then the ProcessInstance will suspend, or return to main and save. When an event happens, this thread will load that ProcessInstance, and then continue its

[JBoss-user] [JBoss Seam] - Re: Problem with Hibernate Reverse Engineering tool..

2006-03-02 Thread gokcem19981
I have tried both with beta3 and beta4 it is not working. I have added to the classpath; but when I tried to select the reveng startegy it does not come to list automatically. When I directly type it stilll cannot find the class. View the original post :

[JBoss-user] [JBoss Seam] - Re: Problem with Hibernate Reverse Engineering tool..

2006-03-02 Thread [EMAIL PROTECTED]
using beta4 there should not be a problem. Please make´sure you are using beta4 and create a new launch configuration and see if that does not help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927378#3927378 Reply to the post :

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - hibernate and jboss transactionmanager

2006-03-02 Thread JulesVerne
Hi How do i configure hibernate-sevice.xml which is deployed as a har to use Jboss4.0.2 AS servers transaction manger. so that I can use it with my session beans... Here is the current configuration of my hibernate-service.xml | server | mbean code=org.jboss.hibernate.jmx.Hibernate

[JBoss-user] [JBoss Portal] - Portlet development, just getting startet!

2006-03-02 Thread sparrez
Hey, I'm just getting startet at developing portlets, but I was wondering, is there some way to automate the creation of all the different folders and xml files so I can be sure they follow specifications, the content I think I can handle :o). Been searching for plugins for eclipse, but

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: hibernate and jboss transactionmanager

2006-03-02 Thread JulesVerne
I picked this from the net... However, in the context of a larger J2EE application, you'll likely want your Hibernate objects to take part in an existing JTA transaction. This would be the normal case if you wanted to access Hibernate objects in a session bean, for example. anonymous wrote :

[JBoss-user] [JBoss Seam] - Re: validation problems

2006-03-02 Thread gnulp
any idea is welcome - currently i don't see a simpler solution, but I think functionality like that is needed as the example shows ... consider we have 100 buttons in the frontend - do we really need 100 Controllers in the serverside - just for validation ? As I said - any better idea than

[JBoss-user] [Beginners Corner] - JBoss 4.0.3SP1 / Eclipse 3.1.2 / EJB 3.0

2006-03-02 Thread tdume
I want to use JBoss and EJB 3 to make a big application and i have first to validate these choices with a little application with an entity bean, a stateless session bean and a swing client. The problems began with this swing client because i have no problem when i use a servlet as client.

[JBoss-user] [Clustering/JBoss] - Re: MBean Clustering , JBoss 4.0.3

2006-03-02 Thread hannes.koller
[EMAIL PROTECTED] wrote : DistributedReplicantManager.remove does not remove all values for the given key. It just removes the value associated with the key. | Yes you are correct. I tested the remove's behavior in the JMX console today and it does what it is supposed to do. My bad. Still

[JBoss-user] [EJB 3.0] - Re: Warning WARN [ServiceController] Problem starting servi

2006-03-02 Thread Instinct
Your mapping is wrong. | [...] | private ListPropiedad propiedades; | [...] | | @JoinColumn (name = idEmpleado) | @OneToMany (cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = idEmpleado) | public ListPropiedad getPropiedades()

[JBoss-user] [EJB 3.0] - Can't get the embedded-war example to work

2006-03-02 Thread cim96sj6
Hi, I can't get the the embedded-war tutorial of the Embedded EJB3 Alpha 5 release to work. I have just built the example as it is without changes and deployed the war file in a Tomcat 5.5 server. When the war file is deployed I get the following message: WARN 02-03 09:56:36,904

[JBoss-user] [EJB 3.0] - Re: How to inject resources from HA-JNDI?

2006-03-02 Thread metelka
The problem is that if I use @Resource(mappedName=queue/testQueue) javax.jms.Queue testQueue; ejb container uses default InitialContext (running on port 1099) to lookup the queue and not ha-jndi context (running on port 1100). Because the queue is registered in global namespace, it is not

[JBoss-user] [JBoss Seam] - Re: Problem with Hibernate Reverse Engineering tool..

2006-03-02 Thread gokcem19981
I added the hibernate jar to Eclipse - window -preferences -Java - Build path - class path variables. I have left the reveng.strategy field empty. Now I have no errors but I also don't have any code generated. I didn't add the jar to the console conf claddpath. It was written there but when

[JBoss-user] [JBoss Seam] - Re: Problem with Hibernate Reverse Engineering tool..

2006-03-02 Thread [EMAIL PROTECTED]
...and what is the error ? And did you remove all the hibernate related jars from the console classpath ? And did you try and create a new code generation launcher ? ...and are you sure you are using beta4? View the original post :

[JBoss-user] [JBoss Portal] - Re: cvs, 2.4 clustering

2006-03-02 Thread [EMAIL PROTECTED]
Did you try running the CMS service as a HA singleton ? core/src/resources/portal-cms-sar/META-INF/jboss-service.xml It's commented out at the beginning of the file. But please bare with us, this is something (CMS clustering) that we are currently intensively working on. View the original

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

2006-03-02 Thread blue_due
Sorry, should have included that in my last post. It doesn't log the components. Using the '@Name' name works fine. It's as though the @Role annotation is being ignored. I've checked out the latest cvs version of seam. I've had a look through the seam code it looks as though the only class

[JBoss-user] [JBoss jBPM] - Re: Creating loops between nodes

2006-03-02 Thread enazareno
This sample is an excerpt from arbitrary cycle of the workflow patterns: | process-definition name=arbitrary-cycle | | start-state name=A | transition to=B/ | /start-state | | state name=B | timer duedate=20 seconds transition=C |scriptprint(

[JBoss-user] [EJB 3.0] - Injecting a String

2006-03-02 Thread fcorneli
In my MDB I have: | @Resource(mappedName = TheStringResource) | private String theStringResource; | I also have a resource-env-ref in both my ejb-jar.xml and jboss.xml. But when onMessage is invoked it gives me null for the value of the 'theStringResource' variable. And this while: |

[JBoss-user] [JBoss Seam] - Re: Problem with Hibernate Reverse Engineering tool..

2006-03-02 Thread gokcem19981
Thank you, thank you, THANK YOU. The last problem was that there was no code generated. But it was my fault. I have repeated the same thing so many times that I forgot some step. The code is generated thank you and have a nice day Gökcem View the original post :

[JBoss-user] [JNDI/Naming/Network] - Client hanging when making remote call to bean

2006-03-02 Thread surak
Hi everyone! We are having problem getting the external clients of our application to communicate properly with the application-core (running jboss-4.0.3). Depending on from which machine we're trying to make the call we get two different error-cases. Case 1: Lookup of bean works but then

[JBoss-user] [JBoss/Spring Integration] - Locking Connection of ManagedConnectionPool with spring Appl

2006-03-02 Thread gemmeric
Hello We try to put several J2EE applications in a cluster of four Jboss4.0.3 sp1 Some in EJB2 Struts Some in Hibernate Struts And some in Spring Jsf Hibernate All of these applications work in default deployement but when we deploy in all configuration for cluster we have problem with spring

[JBoss-user] [EJB 3.0] - NoClassDefFoundError by ServiceController

2006-03-02 Thread fcorneli
When JBoss is loading my EJB it gives me a NoClassDefFoundError when he tries to start the service jboss.j2ee:service=EJB3,module=my-model.jar. The funny thing is that the Class-Path inside the MANIFEST.MF of the EJB JAR is set correctly and the JAR containing the class lives inside my EAR. It

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Problems with JSP and Tag Libraries in JBoss using Tomcat 5.

2006-03-02 Thread HenkoMannen
Hi, I am experiencing a really weird situation here. When running a deployed EJB3 ear application in a JBoss 4.0.3sp1 application using Tomcat service 5.5.9, Jasper is unable to compile any JSP file using Tag Libraries. To be more precise, when generating the Java source file (looking in the

[JBoss-user] [JBossWS] - jbossws under jboss-4.0.x ?

2006-03-02 Thread fheldt
I'm sorry, but i don't get it. :-~ I wanted to try out the new jbossws stack (JSR-181 is nice :-), so i did everything decribed in http://wiki.jboss.org/wiki/Wiki.jsp?page=WSDeployJBossWS to setup the new jbossws stack. I'm using jboss-4.0.4RC1 and took the binaries from docs/examples/jbossws.

[JBoss-user] [JNDI/Naming/Network] - External JNDI yields

2006-03-02 Thread quaxi
Hi, I tried to configure an external JNDI store (Tibco EMS to lookup the Queues stored there) as presented in the JBOSS documentation, where I found an example on how to attach an LDAP server to JBOSS. I changed it to mbean code=org.jboss.naming.ExternalContext |

[JBoss-user] [EJB 3.0] - jar-file dependencies in persistence.xml

2006-03-02 Thread Kato
We are converting a very large multi-module software package from EJB2.1 BMP to EJB3 CMP. Accessing entities from another jar file requires that the persistence.xml file lists the jar file using the jar-file../One.jar/jar-file syntax. Any jar dependencies from the persistence.xml file in

[JBoss-user] [EJB 3.0] - Transient members

2006-03-02 Thread zauberlehrling
Hello, I have a question concerning transient members. In the follwoing code there is an Entity Bean: package entities; | | import java.io.Serializable; | import java.util.*; | import javax.persistence.*; | | @Entity | public class Node implements Serializable { | |

[JBoss-user] [Beginners Corner] - Re: Problems in web-console

2006-03-02 Thread Linuso
ineverstop wrote : | 1) creat a interface named IMarshalledValue.java then compile it, src like: | public interface IMarshalledValue extends Serializable {} | I'm pretty new to this, just testing around.. but.. I created a file named IMarshalledValue.java containing: public interface

[JBoss-user] [JBoss jBPM] - ClassLoader issue with jBPM and EJB3+EAR deployment?

2006-03-02 Thread scotto
I am relatively to JBoss/jBPM but have been having good sucess with it so far. However I have just hit a problem that has had me stumped for the better part of a day now. I am using: - jboss-EJB-3.0_RC5-PFD - jbpm-3.1 - jboss-4.0.4RC1 Most of it works fine, except I am having trouble with

[JBoss-user] [JBoss Seam] - Re: Steps to use SEAM in RCP (Eclipse Based) Application

2006-03-02 Thread [EMAIL PROTECTED]
I've taked a look in atual solutions proposed to eclipse rcp applications that intend to be a fremework to develop Aplicatinos like ERPs and ECMs. There are some examples like: * IBM WorkPlace Rich Client - They use syncml and have a local and a server database, so the aplication culd work

[JBoss-user] [Management, JMX/JBoss] - jmx/invoker/RMIAdaptor - This is working with JBoss 4.x but

2006-03-02 Thread lbrd
Hi, before i dive into problem rather i would like to give u small idea of the problem. i can get the Instance of MBeanServer from Outside the JBoss in JBoss 4.x but i am not able to get Instance of MBeanServer in case of JBoss 3.x. i found there are some differences for RMIAdaptor

[JBoss-user] [Management, JMX/JBoss] - jmx/rmi/RMIAdaptor - Working with JBoss 4.x but Not with 3.x

2006-03-02 Thread lbrd
Hi, before i dive into problem rather i would like to give u small idea of the problem. i can get the Instance of MBeanServer from Outside the JBoss in JBoss 4.x but i am not able to get Instance of MBeanServer in case of JBoss 3.x. i found there are some differences for RMIAdaptor

[JBoss-user] [EJB 3.0] - Re: ManyToOne to a composite primary key

2006-03-02 Thread heinrich
Hi Emmanuel, i think i have nearly the same problem. I have a database table with a composite pk consisting of a auto-gen id and a fk. As you mentioned before, auto-gen values are not allowed in composite pk. But, is there a solution for this cases? I think this is not a very exotic database

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: HttpInvokers Data Compression using GZIP streams

2006-03-02 Thread boa_ig
Thanks, Compression is work (in testing) JBoss plans this function to add in Released? sory for my bad English Oleg. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927418#3927418 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.3SP1 / Eclipse 3.1.2 / EJB 3.0

2006-03-02 Thread tdume
I finally solved this problem by adding antlr.jar to the classpath. I changed also my persistence.xml (put the value of the property hibernate.hbm2ddl.auto to update) and i have errors when i try to deploy my ear file (here are the two errors): 13:29:06,297 ERROR [SchemaUpdate] could not get

[JBoss-user] [JBoss Portal] - Re: cvs, 2.4 clustering

2006-03-02 Thread noicangi
hi thomas, thanks for your reply, i will try building the source with the solution you plan. maybe its the tutorial, but some days ago someone post that the repositories.xml was obsolete and now we have to use the jboss-portal.sar/portal-cms.sar/META-INF/jboss-service.xml, i was thinking if

[JBoss-user] [JBoss jBPM] - session.get(Token.class, tokenId) return null

2006-03-02 Thread RAlfoeldi
Hi all, I know this is more of a Hibernate question, but maybe someone knows an answer. Under what circumstances does Hibernate return null even though the Token definately exists. Session session = jbpmSession.getSession(); | | Token token = (Token) session.get(Token.class, tokenId);

[JBoss-user] [JBoss Portal] - Re: cvs, 2.4 clustering

2006-03-02 Thread [EMAIL PROTECTED]
you should not have your content in all/data/portal, unless you are using the storage on file instead of Hibernate storage (the default is Hibernate) (The zipped directory is only used to put initial content) View the original post :

[JBoss-user] [EJB 3.0] - Re: Warning WARN [ServiceController] Problem starting servi

2006-03-02 Thread djiska1
thank you for information. Now it doesn't have got those errors. Only a 13:51:56,653 FATAL [PersistenceXmlLoader] test JTA I've got to do more test. But I now have finished. Tomorrow i'll follow thank you View the original post :

[JBoss-user] [JBoss jBPM] - how to adapt owr bussiness need to jbpm

2006-03-02 Thread nabilblk
jbpm propose a generic database (defaut is hsqldb ) , where many table is created (TABLE JBPM_ACTION , JBPM_ID_USER... for exemple) , but in my conception we need other information ... My question is how to correspond our bussiness conception ( class diagram for exemple ) to the generyc

[JBoss-user] [JBoss jBPM] - Re: Comparision matrix for jBPM

2006-03-02 Thread jbpmndc
To get started download the starter kit. run ant. Then run the Junit test for Websale. 1. create an ant task for websale. !-- the dependency on compile.identity is necessary to make the identity mapping files available --

[JBoss-user] [JBoss jBPM] - Re: Comparision matrix for jBPM

2006-03-02 Thread jbpmndc
To get started download the starter kit. run ant. Then run the Junit test for Websale. 1. create an ant task for websale. !-- the dependency on compile.identity is necessary to make the identity mapping files available --

[JBoss-user] [Installation, Configuration Deployment] - Re: jboss gives NoClassDefError for jdom/Text when accessed

2006-03-02 Thread gmeroz
did you add jdom.jar to your war/ear which you deploy on jboss? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927429#3927429 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927429

[JBoss-user] [JBoss jBPM] - Re: Comparision matrix for jBPM

2006-03-02 Thread jbpmndc
Try this one more time | 1. comment out a line in WebSale.java | //assertEquals(0, taskInstance.getVariables().size()); | | 2. | | set property in build.xml | | path id=test.classpath | path refid=classpath/ | pathelement path=src/resources / |

[JBoss-user] [Management, JMX/JBoss] - Re: jmx/rmi/RMIAdaptor - Working with JBoss 4.x but Not with

2006-03-02 Thread [EMAIL PROTECTED]
You need to understand a) how to properly ask for Help http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp b) how to search JIRA: http://jira.jboss.com/jira/browse/JBAS-2803 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927432#3927432 Reply to the post :

[JBoss-user] [JBoss Seam] - Session Listener: @Startup for session scoped component

2006-03-02 Thread liudan2005
At moment, if you have @Startup in your class, your component gets initialised no matter it's session scoped or application scoped. In some occasions, you might want to do some initialization and outject the component when session is created. For example, you might need to retrive the user info

[JBoss-user] [JBoss jBPM] - Re: Comparision matrix for jBPM

2006-03-02 Thread nabilblk
for comparision you must look for the criteria of WARIA of comparing open source workflow engine ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927435#3927435 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927435

[JBoss-user] [JBoss jBPM] - Re: pbl fork: children still active after process end

2006-03-02 Thread mennen
here is my gpd.xml in case you want to visualize it .. ?xml version=1.0 encoding=UTF-8? | | process-diagram name=fork_endTasks width=800 height=597 | node name=start fork test x=280 y=144 width=140 height=40 | transition name=nameFork | label x=5 y=-10/ | /transition

[JBoss-user] [JBoss jBPM] - Re: pbl fork: children still active after process end

2006-03-02 Thread mennen
Hi, Thank you for your reply.. I tried what you said and it didn't work out.. Does this cancel only the tasks inside of a task-node? (cuz what i need to do is cancel all the other task instances, so that my process can finally end) I don't know if the fork is making a problem, but i can't

[JBoss-user] [EJB 3.0] - Re: Warning WARN [ServiceController] Problem starting servi

2006-03-02 Thread Instinct
djiska1 wrote : thank you for information. | | Now it doesn't have got those errors. Only a | | 13:51:56,653 FATAL [PersistenceXmlLoader] test JTA | | I've got to do more test. But I now have finished. | | Tomorrow i'll follow | | thank you | | Forget about that

[JBoss-user] [EJB 3.0] - Re: Error storing objects with ejb3 entity

2006-03-02 Thread Instinct
pulsycouac wrote : | However when I deploy my ear I have the following errors: | | FATAL [PersistenceXmlLoader] ejb3essaiPerst JTA | You can ignore this one, http://www.jboss.com/index.html?module=bbop=viewtopicp=3920642#3920642 View the original post :

[JBoss-user] [Beginners Corner] - Re: Problems in web-console

2006-03-02 Thread ineverstop
try it again: package org.jboss.util.stram; | | import java.io.Serializable; | | public interface IMarshalledValue extends Serializable {} it's really a hard job for a new one to do it; if you can't finish it by you self, give me your email address, i could mail the applet.jar file

[JBoss-user] [Remoting] - Re: EJB3 with plain RMI

2006-03-02 Thread gruenewa
Thanks for your response. Best regards, Alexander View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927441#3927441 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927441

[JBoss-user] [Microcontainer] - Re: How do I get the POJO ?

2006-03-02 Thread [EMAIL PROTECTED]
Use search. There is already a long discussion on this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927442#3927442 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927442

[JBoss-user] [EJB 3.0] - EJB3 compilation failure

2006-03-02 Thread Roberto72
Hi, I have a small test bean: package test.ejb.entity; import java.util.*; import javax.persistence.*; @Entity public class IdEntityBean { @Id(generate=javax.persistence.GeneratorType.AUTO) Integer id; public Integer getId() { return id;} }

[JBoss-user] [EJB 3.0] - Re: EJB3 compilation failure

2006-03-02 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=FromJBossEJB3.0RC3ToRC4PFD specifically the Hibernate Migration Guide link View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927444#3927444 Reply to the post :

[JBoss-user] [Microcontainer] - Re: demandType Schema wondering

2006-03-02 Thread [EMAIL PROTECTED]
| e.g.: | ISupply must be installed before IDemand is constructed | bean name=IDemand ... |demand whenRequired=InstantiatedtheSupply/demand | /bean | The xsd is wrong. | public void attributes(Object o,

[JBoss-user] [JBoss Seam] - Re: Need help understanding contexts

2006-03-02 Thread JamesWoodward
Hi Gavin, Maybe you can give me an example of how I should be designing my webapps using Seam. Lets take a simple CRUD application, The home page should be accessed by a GET request and accept a parameter that identified the current user. It should display a list of products in a table,

[JBoss-user] [JBoss Seam] - Re: Session Listener: @Startup for session scoped component

2006-03-02 Thread JamesWoodward
To trigger a method to run when a session scoped component is created use the @Create annotation. @Create public void init() { . } View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927447#3927447 Reply to the post :

[JBoss-user] [Microcontainer] - Re: demandType Schema wondering

2006-03-02 Thread [EMAIL PROTECTED]
Bug report: http://jira.jboss.com/jira/browse/JBMICROCONT-72 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927448#3927448 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927448

[JBoss-user] [JBoss Seam] - Re: Need help understanding contexts

2006-03-02 Thread JamesWoodward
Ignore question 3, I see you've already answered that one is another thread! :) BTW, hope you had a nice holiday! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927449#3927449 Reply to the post :

[JBoss-user] [JBoss Seam] - Hibernate failing to map collection

2006-03-02 Thread edwar64896
Hi. Just starting out on my first seam expedition and have run into a brick wall with hibernate. Was having some success up until yesterday when this error occurs... anonymous wrote : 00:57:40,871 INFO [CollectionBinder] Mapping collection: com.snet.cb.ejb.Account.payments - Payment |

[JBoss-user] [JBoss Seam] - Hibernate failing to map collection

2006-03-02 Thread edwar64896
Hi. Just starting out on my first seam expedition and have run into a brick wall with hibernate. Was having some success up until yesterday when this error occurs... anonymous wrote : 00:57:40,871 INFO [CollectionBinder] Mapping collection: com.snet.cb.ejb.Account.payments - Payment |

[JBoss-user] [Messaging, JMS JBossMQ] - Re: Message Driven Bean does not catch the message with onMe

2006-03-02 Thread esplinr
How was this resolved View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927452#3927452 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927452 --- This SF.Net email is

[JBoss-user] [Security JAAS/JBoss] - Granting Access

2006-03-02 Thread vlmcouto
Hi All, How can i deny access to an application (user need put the credentials in a login form - it's working fine!), and grant access to some special page or servlet, like user registration form or something like that. Thank you! View the original post :

[JBoss-user] [EJB 3.0] - Re: IllegalStateException in BaseSessionContext.getCallerPri

2006-03-02 Thread asylumx
Ok, well, are there any examples of how to implement this for JBoss? I really appreciate the help! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927455#3927455 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927455

[JBoss-user] [Microcontainer] - Re: demandType Schema wondering

2006-03-02 Thread bkeh12
Thank you for telling me :-) So do this: |TypeBinding beanType = schemaBinding.getType(beanTypeQName); | | /* | ClassMetaData classMetaData = new ClassMetaData(); | classMetaData.setImpl(AbstractBeanMetaData.class.getName()); |

[JBoss-user] [Beginners Corner] - Re: Problems in web-console

2006-03-02 Thread Linuso
ineverstop wrote : try it again: | | package org.jboss.util.stram; | | | | import java.io.Serializable; | | | | public interface IMarshalledValue extends Serializable {} | | | | it's really a hard job for a new one to do it; if you can't finish it by you self,

[JBoss-user] [EJB 3.0] - Re: EJB3 compilation failure

2006-03-02 Thread Roberto72
Solved: @Id @GeneratedValue(strategy=GenerationType.AUTO) ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927458#3927458 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927458

[JBoss-user] [JBoss Eclipse IDE (users)] - DefaultReverseEngineeringStrategy

2006-03-02 Thread eracer
Hi, How to reverse engineer from the hbm to the java files ? I am trying to produce java code from my database. Thanks for the post about the DefaultReverseEngineeringStrategy, because I had the same bug as explained here http://www.jboss.com/index.html?module=bbop=viewtopict=74849

[JBoss-user] [EJB 3.0] - Re: Cannot get the embedded ejb source code with CVS

2006-03-02 Thread tim.cockle
Hi, Have you had any luck building jboss and getting the embedded ejb3 source? I have been having a similar problem in that I need the latest version to get my JUnit tests going. Right now it is an up hill battle! If you have any additional hints it would be good. Thanks Tim View the

[JBoss-user] [JBossCache] - Re: Clearing the cache

2006-03-02 Thread drosenbaum
Thanks Ben for responding. Unfortunatly it does not happen every time. All I know is that I have had an application running with JBossCache for about 6 months now and I get messages such as this about once a week or 2, sometimes more often and sometimes less. I have a process that runs every

[JBoss-user] [JBossCache] - Re: Clearing the cache

2006-03-02 Thread drosenbaum
One other thought, you say that the remove method is supposed to remove it from the eviction queue. When I call remove(/), are all child elements of that node also being removed from the eviction queue? And the children's children at all levels of the subtree? Maybe what is happening is that

[JBoss-user] [Microcontainer] - Re: demandType Schema wondering

2006-03-02 Thread bkeh12
Hi, I see Bug report thank for your help:-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927463#3927463 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927463 ---

[JBoss-user] [Beginners Corner] - Re: Problems in web-console

2006-03-02 Thread Linuso
I dont know if it mathers.. but I'm running on fedora core 4 jdk 1.5.0_06 jboss-4.0.4 also try jboss-4.0.3 sp1 whit same problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927464#3927464 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: Session Listener: @Startup for session scoped component

2006-03-02 Thread liudan2005
@Create method only gets trigger when your component is referenced in a jsf page and the page is requested by the user. If your site has many entrances, this is gonna be a problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927465#3927465 Reply to the

[JBoss-user] [JBoss Portal] - Re: A bug when using hibernate3 har deployment with jboss po

2006-03-02 Thread jsports
yesterday,I post a topic on hiberante.org forum. But No one give an answer or a solution. It makes me puzzled. Need your help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927466#3927466 Reply to the post :

[JBoss-user] [EJB 3.0] - Missing index on foreign keys in oracle

2006-03-02 Thread mwoelke
Hello, I have a deadlock problem with oracle. I have two entity beans, lets say Order and OrderPos. There is a bidirectional OneToMany relationship between Order and OrderPos. | @Entity | public class Order{ | long id; | SetOrderPos positions; | @Id | @GeneratedValue(...) |

[JBoss-user] [JBoss Portal] - Re: Passing parameters in a friendly URL

2006-03-02 Thread [EMAIL PROTECTED]
Look at the PortalObjectCommandFactory in 2.4, I think it does what you want. I think it does that in 2.4, but is not in 2.2 (for exception logging), you can provide a patch for 2.2 if you want. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927469#3927469

[JBoss-user] [Beginners Corner] - Re: Problems in web-console

2006-03-02 Thread ineverstop
i confirm my new applet.jar package file again, in the end, i found my new folder i added is stream instead of stram in my folder tree; my folder looks like: org/jboss/util/stream/IMarshalledValue.class if it is the reason of the problem, you nedd to modify IMarshalledValue.java file like:

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: DefaultReverseEngineeringStrategy

2006-03-02 Thread [EMAIL PROTECTED]
beta4 does not have the need for you to specify the reverse engineerings strategy. if you want to change the generator strategy for *all* table/classes then the simplest thing is to implement a custom strategy that return increment in the getTableIdentifierStrategyName. Your last question is

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

2006-03-02 Thread [EMAIL PROTECTED]
Are you trying to use a class with a @Role annotation, but no @Name annotation? (That is not what your original code example showed.) Currently, Seam does not support components with no default role. View the original post :

[JBoss-user] [JBoss Seam] - Re: Steps to use SEAM in RCP (Eclipse Based) Application

2006-03-02 Thread [EMAIL PROTECTED]
What we would do is adopt some existing rich client platform such as Eclipse RCP or something and figure out how to use Seam as a server-side component model. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927474#3927474 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: Session Listener: @Startup for session scoped component

2006-03-02 Thread [EMAIL PROTECTED]
liudan2005 wrote : At moment, if you have @Startup in your class, your component gets initialised no matter it's session scoped or application scoped. In some occasions, you might want to do some initialization and outject the component when session is created. For example, you might need to

[JBoss-user] [EJB 3.0] - missing javax.ejb.Stateless?

2006-03-02 Thread Roberto72
Hi, with jboss-4.0.4RC1 I obtain a cannot find symbol on import javax.ejb.Stateless; code (required for @Stateless annotation). Any idea? TIA Roberto Colmegna View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927477#3927477 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: Need help understanding contexts

2006-03-02 Thread [EMAIL PROTECTED]
(1) Depends upon what is the scope of the product list, and what is the scope of the shopping cart. Session? Conversation? Application? Very loosely, a good first cut is to use one Seam component per conversation, and another Seam component each time you have some set of data that is not

[JBoss-user] [EJB 3.0] - Re: Transient members

2006-03-02 Thread mwoelke
of course its correct. The spec says: anonymous wrote : 9.1.14 Transient Annotation | The Transient annotation is used to annotate a property or field of the entity class. It specifies that | the property or field is not persistent. | @Target({METHOD, FIELD}) @Retention(RUNTIME) | public

[JBoss-user] [JBoss Seam] - Re: Hibernate failing to map collection

2006-03-02 Thread [EMAIL PROTECTED]
Better to ask in the question here: http://forum.hibernate.org/viewforum.php?f=9 Emmanuel does not monitor this forum very closely. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927481#3927481 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: Cannot get the embedded ejb source code with CVS

2006-03-02 Thread tim.cockle
I am getting the following problem when I try to build from JBoss-Head (as explained in the wiki: compile-rmi: [rmic] RMI Compiling 1 class to /home/tim/testJB/jboss-head/naming/output/classes java.lang.NoClassDefFoundError: com/sun/corba/se/internal/util/Utility View the original post :

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: DefaultReverseEngineeringStrategy

2006-03-02 Thread eracer
Hi Max, Thanks for your prompt reply. I have changed the generators type in the mapping files by hand, then run the code generation again, but with reverse engineering from JDBC connection unchecked. I thought this as what you meant. I get an error saying that it does find the xx.hbm.xml

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: DefaultReverseEngineeringStrategy

2006-03-02 Thread eracer
I expect the id to be removed from the full and minimal constructors. I can remove them by hand as well. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927483#3927483 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927483

[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.3SP1 / Eclipse 3.1.2 / EJB 3.0

2006-03-02 Thread Instinct
anonymous wrote : relation information_schema.system_sequences does not exist Possibly something might be broken with your database? Did you specify information_schema.system_sequences somewhere in your jboss configuration or entities? View the original post :

[JBoss-user] [EJB 3.0] - Re: missing javax.ejb.Stateless?

2006-03-02 Thread Instinct
javax.ejb.Stateless is part of jboss-ejb3x.jar View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927485#3927485 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927485 ---

[JBoss-user] [Installation, Configuration Deployment] - Re: Could not instantiate bean under Linux (only?)

2006-03-02 Thread kismorc
Could anyone give me some pointers what can be wrong? Thanks for your help in advance! Regards, Peter View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3927488#3927488 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3927488

[JBoss-user] [Installation, Configuration Deployment] - Could not instantiate bean under Linux (only?)

2006-03-02 Thread kismorc
Hi Guys, I've got a CMP entity bean and when our bean package is depoyed, JBoss throws this: 2006-03-02 13:23:42,674 ERROR [org.jboss.ejb.plugins.LogInterceptor] EJBException in method: public abstract java.util.Collection Br | okerageInPriceHome.findAll() throws

  1   2   3   >