Re: [rules-users] Solution for reasoning over XML?

2013-01-13 Thread Chris Selwyn
Is this paper freely available? I would be interested in seeing a copy of it since I have recently been using with Drools to detect all sorts of data conditions in XML documents. Chris On 11/01/2013 07:03, Wolfgang Laun wrote: There was my talk at IntelliFest 2012: Reasoning with XML Data.

Re: [rules-users] Solution for reasoning over XML?

2013-01-13 Thread Wolfgang Laun
I should have had it put up on the conference web site a long time ago. Still needs final proofreading, and this list is not the place for it, but you'll receive it via direct email. -W On 13/01/2013, Chris Selwyn ch...@selwyn-family.me.uk wrote: Is this paper freely available? I would be

Re: [rules-users] Solution for reasoning over XML?

2013-01-13 Thread craigparra
I did initially consider just inserting the DOM objects, but the java DOM api is quite obstruse, and difficult to navigate with MVEL expressions. What I have done is wrap the DOM api with some syntax sugar, that makes asserting conditionals a lot neater. My worry was that this would come at a

Re: [rules-users] Location of ScoreCard Spreadsheet File?

2013-01-13 Thread vinodkiran
Did you have any luck with the Sample Spreadsheet Michael had pointed out? -- View this message in context: http://drools.46999.n3.nabble.com/rules-users-Location-of-ScoreCard-Spreadsheet-File-tp4021435p4021492.html Sent from the Drools: User forum mailing list archive at Nabble.com.

Re: [rules-users] Solution for reasoning over XML?

2013-01-13 Thread craigparra
Interestingly, once pre-compiled I have found Drools is actually faster than pre-compiled Groovy in the few examples I have tested. This kind of suprised me - a lot actually. The pre-compilation of Drools is much more expensive than Groovy, but the execution is quicker. On closer inspection,