necessary changes in events.xml
Stefan Armbruster <[email protected]>
| Newsgroups | gmane.comp.java.enhydra.barracuda.general |
|---|---|
| Message-ID | <[email protected]> |
Hi, it took me some time to solve the following problem. Hopefully this posting saves other's people's time. When I'm offline and trying to generate the event classes out of event.xml it fails by saying "host barracuda.enhydra.org not found". After checking the sources of the EventBuilder taskdef, I saw the EntityResolver redirects to xlib when barracudamvc.org is specified in the systemID of event.xml. The event.xml of my application still used barracuda.enhydra.org in the systemID, so this breaks (no redirection to xlib). It took me quite a time to figure that out that I need to change the systemID. Conclusion: Change the DOCTYPE of existing events.xml in this way: OLD: <!DOCTYPE build-events PUBLIC "-//Enhydra Barracuda//DTD Barracuda Events 1.0//EN" "http://barracuda.enhydra.org/Barracuda/dtds/BarracudaEventBuilder.dtd"> NEW: <!DOCTYPE build-events PUBLIC "-//Enhydra Barracuda//DTD Barracuda Events 1.0//EN" "http://barracudamvc.org/Barracuda/dtds/BarracudaEventBuilder.dtd"> Regards, Stefan