2 Replies Latest reply on Mar 21, 2007 7:32 AM by wjm

    Small nit with jpdl-3.2.xsd

    wjm

      The latest change to the 3.2 xsd file introduced an error which, as a complete newbie, I boggled over for some time. :-) The websale bits would neither compile nor run as junit tests until I applied the following patch:

      Index: jpdl-3.2.xsd
      ===================================================================
      RCS file: /cvsroot/jbpm/jbpm.3/jpdl/jar/src/main/java/org/jbpm/jpdl/xml/jpdl-3.2
      .xsd,v
      retrieving revision 1.4
      diff -r1.4 jpdl-3.2.xsd
      365,368c365,370
      < <xs:element name="reminder">
      < <xs:attribute name="duedate" type="xs:string" use="required" />
      < <xs:attribute name="repeat" type="xs:string" />
      < <xs:attribute name="transition" type="xs:string" />
      ---
      > <xs:element name="reminder">
      > <xs:complexType>
      > <xs:attribute name="duedate" type="xs:string" use="required" />
      > <xs:attribute name="repeat" type="xs:string" />
      > <xs:attribute name="transition" type="xs:string" />
      > </xs:complexType>


      Thanks for jbpm. I'm looking forward to implementing it in our product.

      Bill

        • 1. Re: Small nit with jpdl-3.2.xsd
          kukeltje

          If you would have searched the jira for 'know' or solved issues, you would have found that it is already solved in cvs.

          If I find a bug in any kind of library, the first thing I do is search the jira and the forums. Saves me a lot of time.

          • 2. Re: Small nit with jpdl-3.2.xsd
            wjm

             

            "kukeltje" wrote:
            If you would have searched the jira for 'know' or solved issues, you would have found that it is already solved in cvs.

            If I find a bug in any kind of library, the first thing I do is search the jira and the forums. Saves me a lot of time.


            I'm using HEAD, afaik. Thanks for the tip though, I'll see if I can find the jira issue you're referring to.