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