[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-15 Thread Timaar
Tried changing the ejb file: ?xml version=1.0? | ejb-jar version=3.0 xmlns=http://java.sun.com/xml/ns/j2ee; No succes it now gives: anonymous wrote : expected one enterprise-beans tag I don't have a line break in between as suggested in: anonymous wrote :

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-15 Thread Timaar
A question that I have and that might cause this issue is that in the Seam tutorial (http://docs.jboss.com/seam/1.0.0.GA/reference/en/html/tutorial.html#d0e198). It states: anonymous wrote : | ... | Next, make sure you set the location of your Tomcat 5.5 installation in the

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-15 Thread Timaar
See http://www.jboss.com/index.html?module=bbop=viewtopicp=3951061#3951061 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3951063#3951063 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3951063

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-09 Thread nadiaismail
I get the same problem too .. did anyone manage to solve it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3950091#3950091 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3950091

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-09 Thread Muppie
I had the same problem, and I realised that I had install JBoss All, instead of JBoss EJBProfile. Its resolved now with no changed necessary to the seam examples... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3950106#3950106 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-07 Thread digua
It's strange because I intalled the same software and I deployed same project, but I got the error message. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3949581#3949581 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-06-02 Thread smajima
I installed Jboss-4.0.4.GA-Patch1-Installer.jar. And I checked by Jboss-Seam examples. They worked. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3948708#3948708 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3948708

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-05-31 Thread smajima
bitl wrote : Start your file with: | | ?xml version=1.0? | | ejb-jar version=3.0 xmlns=http://java.sun.com/xml/ns/j2ee; | | I have concluded the solution reading this: | http://www.theserverside.com/discussions/thread.tss?thread_id=38282 | | At least it helped me to resolve

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-05-25 Thread bitl
Start your file with: ?xml version=1.0? | ejb-jar version=3.0 xmlns=http://java.sun.com/xml/ns/j2ee; I have concluded the solution reading this: http://www.theserverside.com/discussions/thread.tss?thread_id=38282 At least it helped me to resolve your (and my) issue under jboss-4.0.4.GA. View

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-05-16 Thread bjornbjorn
I still get this problem. I do not get it if I specify: !DOCTYPE ejb-jar PUBLIC -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN http://java.sun.com/dtd/ejb-jar_2_0.dtd; at the top - but that causes problems when deploying since it will try to validate the beans as 2.0 beans and not

[JBoss-user] [EJB/JBoss] - Re: ejb-jar.xml must either obey the right xml schema or def

2006-05-16 Thread bjornbjorn
Also, why doesn't the ejb-jar.xml from the EJB3 tutorial work? (http://docs.jboss.org/ejb3/app-server/reference/build/reference/en/html/partial_deployment_descriptors.html#d0e656) Does it mean something is wrong with my server, or is it the tutorial which has an old ejb-jar.xml? View the