[JBoss-user] [EJB 3.0] - Re: Strange Exception

2006-03-13 Thread Instinct
do you use -Djava.security.manager as VM parameter when starting your application? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929770#3929770 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3929770 -

[JBoss-user] [EJB 3.0] - Re: EJB3 to RC5 context lookup confusion

2006-03-12 Thread Instinct
you have ObjectName: persistence.units:unitName=QMDev-ds but in your persistence.xml you declare persistence-unit name="Default2-ds" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929681#3929681 Reply to the post : http://www.jboss.com/index.html?module=b

[JBoss-user] [EJB 3.0] - Re: Where is @DeclareRoles

2006-03-05 Thread Instinct
You are right, it is not in any of the provided jars when selecting an "ejb3" installation. I did not check other installation types. Maybe you should file a bug report? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928106#3928106 Reply to the post : http:

[JBoss-user] [Installation, Configuration & Deployment] - Re: jboss4.0.4

2006-03-02 Thread Instinct
Unless you need to access the TransactionManager via JNDI this should be no problem. AFAIK you can safely ignore this message. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927689#3927689 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[JBoss-user] [EJB 3.0] - Re: When to use EAGER / LAZY

2006-03-02 Thread Instinct
Did you call getFiles() in your Session Bean before calling the method on the entity in the client? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927680#3927680 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927680

[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=bb&op=viewtopic&p=3927485#3927485 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927485 --

[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 : http://www.jboss.com/index.htm

[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=bb&op=viewtopic&p=3920642#3920642 View the original post : http://www.jboss.com/index

[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: Warning WARN [ServiceController] Problem starting servi

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

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

2006-03-01 Thread Instinct
org.hibernate.MappingException: property not found: idEmpleado on entity org.jboss.jose.db.Propiedad You seem to have an association referencing the property idEmpleade in your Propiedad class that hibernate cannot find. If you could post your org.jboss.jose.db.Propiedad and Empleado classes so

[JBoss-user] [EJB 3.0] - Re: Collection Access Best Practices

2006-02-24 Thread Instinct
ejb-3_0-pfd-spec-persistence.pdf wrote : | If the entity has field-based access, the persistence provider runtime accesses instance variables directly. | If the persistence provider does not use the getters and setters I don't see why your accessor methods should not be declared private.

[JBoss-user] [EJB 3.0] - Re: Schemaupdate tries to create existing sequences ?

2006-02-23 Thread Instinct
Well, changing the code to | @SequenceGenerator(name = "incident_category_seq", sequenceName = "dossier.incident_category_seq") | (changing the sequenceName to schema.sequenceName) solved this error, but I think since this did not work for the table specification, it's probably not suppo

[JBoss-user] [EJB 3.0] - Re: Schemaupdate tries to create existing sequences ?

2006-02-23 Thread Instinct
How would I do this using current ejb3 PFD implementation? I'm currently using this: | @Entity | @Table(name="incident_category", schema="dossier") | and in the class | @Id | @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "incident_category_seq") | @SequenceGene

[JBoss-user] [EJB 3.0] - Re: The issue of calling EJB from client

2006-02-17 Thread Instinct
please have a look at the logfile if you can find messages like this: | 18:49:05,653 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:service=EJB3,jar=gecam.ejb3,name=ListManagerBean with dependencies: | 18:49:05,653 INFO [JmxKernelAbstraction] persistence.units:jar=gecam.ejb

[JBoss-user] [EJB 3.0] - Re: Migration JBoss 4.0.3 --> JBoss 4.0.4

2006-02-17 Thread Instinct
I went the one-by-one approach on testing which libraries are required for compiling and running my swing client, so i hope this is the complete list of required jboss libs (of course, don't forget the additional libraries you need for your gui, e.g. jgoodies looks) | - JBoss ALL Client

[JBoss-user] [JNDI/Naming/Network] - Re: JBoss- or Java-Configuration Error?

2006-02-15 Thread Instinct
Wow, this is a hard one. Wondered so long why my client kept trying to connect to 127.0.0.1 So the SERVER needs to be able to resolve his external ip address Output of the `hostname` command is $ hostname | astranaar So my /etc/hosts looks like this: 127.0.0.1 localhost | 10.14.1.47

[JBoss-user] [Installation, Configuration & Deployment] - Re: How to create multiple instances of jboss on same server

2006-02-14 Thread Instinct
maybe you should state somewhere in the documentation that the binding service is not available in all configurations, e.g. I don't have it when selecting "ejb3" in the installer. Copied bindingservice-plugin.jar from "all" config... View the original post : http://www.jboss.com/index.html?modu

[JBoss-user] [Installation, Configuration & Deployment] - Re: How to create multiple instances of jboss on same server

2006-02-14 Thread Instinct
I need to install a second jboss because i need the pfd version of ejb3. When I start jboss I get the following Exception: | No ClassLoaders found for: org.jboss.services.binding.ServiceBindingManager | My mbean configuration in default/deploy/binding-service.xml looks like this: |

[JBoss-user] [EJB 3.0] - Re: Installation steps of jboss on Linux to specific user fr

2005-12-08 Thread Instinct
Hi Sridhar, maybe you can provide us with some details about what does not work because installing jboss under linux is just as easy as under any other os. Just run the installer (using java web start - javaws) or download the zipped jboss and unzip it as the user you want it to be running as.

[JBoss-user] [EJB 3.0] - Re: EntityManager not injected

2005-12-05 Thread Instinct
Have you tried looking at your JBoss LogFile? It tends to be more verbose than console output by default. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910595#3910595 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910