2 Replies Latest reply on Sep 9, 2007 10:27 PM by neilac333

    Schemas/DTDs for Seam XML Documents

      I am building a Seam app using IntelliJ rather than JBoss IDE. As I generate different XML files (e.g. components, pages, jbpm, etc), I would like the tag completion and validation features so I can know at "compile-time" if I have violated anything.

      Are there DTDs or schemas for the Seam XML documents? If so, where?

      Thanks.

        • 1. Re: Schemas/DTDs for Seam XML Documents
          christian.bauer

          jboss-seam-1.2.1.GA find . -name "*xsd"
          ./src/ioc/org/jboss/seam/ioc/spring/spring-1.2.xsd
          ./src/ioc/org/jboss/seam/ioc/spring/spring-seam-1.2.xsd
          ./src/ioc/schema/seam-components_1_0.xsd
          ./src/main/org/jboss/seam/components-1.2.xsd
          ./src/main/org/jboss/seam/core-1.2.xsd
          ./src/main/org/jboss/seam/drools-1.2.xsd
          ./src/main/org/jboss/seam/framework-1.2.xsd
          ./src/main/org/jboss/seam/jms-1.2.xsd
          ./src/main/org/jboss/seam/mail-1.2.xsd
          ./src/main/org/jboss/seam/pageflow-1.2.xsd
          ./src/main/org/jboss/seam/remoting-1.2.xsd
          ./src/main/org/jboss/seam/security-1.2.xsd
          ./src/main/org/jboss/seam/theme-1.2.xsd
          ./src/main/org/jboss/seam/web-1.2.xsd

          • 2. Re: Schemas/DTDs for Seam XML Documents

            Ahhh...I was looking online and didn't look within the distribution. My bad.

            Thanks.

            P.S. Incidentally, Christian, nice job (with Gavin) on Java Persistence with Hibernate. It has been very helpful.