[jboss-user] [EJB 3.0] - Re: Persistence Problem after upgrading to 4.0.5GA

2006-10-30 Thread SchlauFuchs
Tried that, the result is mappedBy reference an unknown target entity property: packagename.ArticleConsumeSchema.schema in packagename.ConsumeSchema.articleSchemas schema is an inherited attribute - and that worked earlier. Next suggestion, please? Kai View the original post :

[jboss-user] [EJB 3.0] - Re: Persistence Problem after upgrading to 4.0.5GA

2006-10-30 Thread SchlauFuchs
anonymous wrote : Try declaring ArticleConsumeSchemaTemplate as a mappedSuperclass (so long as you don't need the template class persisted) | That seems to be the solution. I've annotated the class as MappedSuperclass AND Entity and it went through the Initializing. So I will do now some

[jboss-user] [EJB 3.0] - Persistence Problem after upgrading to 4.0.5GA

2006-10-29 Thread SchlauFuchs
Hi there, I have switched today from 4.0.4GA to 4.0.5GA and now my persistence classes produce a problem I can't fix for myself. These three classes are involved: | @Entity | public class ConsumeSchema implements Serializable { | | private static final long serialVersionUID =

[jboss-user] [JNDI/Naming/Network] - Binding a remote Remote object...

2006-10-02 Thread SchlauFuchs
Hello all, a greenhorn question, I assume already asked... I have a server running a no-JBoss java application. I would like to bind a Remote object from this server into my JBoss JNDI, so that I can use it from other apps easily, too. What is best practice for this case? I already tried to

[jboss-user] [EJB 3.0] - Re: Quartz Bean deployment

2006-09-17 Thread SchlauFuchs
I have exactly the same problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972147#3972147 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972147 ___ jboss-user mailing list

[jboss-user] [JNDI/Naming/Network] - Re: Getting JNDI context fails

2006-09-08 Thread SchlauFuchs
The IP address of the server is 192.168.0.2. OS is Suse Linux 10.0. The IP adress of my test client is 192.168.0.9. OS is Win XP SP2 . View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970398#3970398 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: Getting JNDI context fails

2006-09-08 Thread SchlauFuchs
Hi, I found that Suse somewhy adds a line to /etc/hosts setting the server ip as 127.0.0.2. I can't think what for this entry should be good, but after I replaced it with the real IP adress everything started workling :-) Thank you for you help! View the original post :

[jboss-user] [JNDI/Naming/Network] - Re: Getting JNDI context fails

2006-09-08 Thread SchlauFuchs
Of course :-) But hurry, I am planning to immigrate to New Zealand in the next year :-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970428#3970428 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3970428

[jboss-user] [JNDI/Naming/Network] - Re: Getting JNDI context fails

2006-09-07 Thread SchlauFuchs
Ok, here comes the stack trace: 07.09.2006 19:55:19 de.hackemesser.frieshouse.client.Manager getContext | INFO: Creating jndi context | javax.naming.CommunicationException [Root exception is java.rmi.ConnectException: Connection refused to host: 127.0.0.2; nested exception is: |

[jboss-user] [JNDI/Naming/Network] - Re: Getting JNDI context fails

2006-09-07 Thread SchlauFuchs
Ok, but why and what is connecting to my machine at 127.0.0.2? When I shut down the server or change the IP address in properties I get connection timeout exception. This strange exception comes only if the connection is beeing established. View the original post :

[jboss-user] [JNDI/Naming/Network] - Getting JNDI context fails

2006-09-06 Thread SchlauFuchs
Hello, I have a problem connecting my EJB3 client app to a JBoss server. In my development I had no problems connecting the server, as long as it was on the same machine with my client. Recently I switched to a remote JBoss server and since then I can't get my client working. Each time I try

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JBoss 4.0.2, EJB QL and Left join problem

2006-08-23 Thread SchlauFuchs
Sorry, didn't work: 08:26:01,002 INFO [STDOUT] org.jboss.ejb.plugins.cmp.ejbql.ParseException: Encountered RIGHT at line 1, column 62. Was expecting one of: , ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966875#3966875 Reply to the post :

[jboss-user] [Beginners Corner] - Re: Call EJB on a Schedule?

2006-07-25 Thread SchlauFuchs
Hi there, I have a similar problem. I want to deploy a service or something which is automatically working after deployment in a timed fashion. An EJB isn't created before first request for it AFAIK. So I can't use the EJB to ask for a timer to execute an action. Or am I wrong? How should I do