I would like to extract the rules surrounding how commissions for sales reps are calculated when they sell a loan product. While it will increase in...
I was wondering if someone could spell out the differences between XRules and Schematron. I know that XRules has the added functionality that it can...
Hi I'm working with XRule for my project. it's so good but I have a problem with regular expression. I have a tag with string value. I want user can insert...
Thank you Waleed and David for your valueble comments. I am going to start with making it work with .net. Obiviously my other challenge is being able to...
... Yep, agree with all of these. However, how XSLT is implemented varies from implementation to implementation. Plus, unless you implement SAXON .NET, there...
I agree with Dave's comment that XRules is suitable for the .NET platform because there is only a .NET implementation right now. However, in terms of speed, I...
... XRules would be my first choice for a Windows platform, with small data sets. Reason I say small data sets is that it loads items into a DOM, which means...
Ravi, This is a good use case. Sure, you can encapsulate your validations in an XRules document and use it on the client to validate the XML data. All you need...
Waleed, Thanks for your response.. Our backend parameter data is exposed as XML documents for other groups to build a CRUD application. These groups use thick...
Ravi, I'm not sure I fully understand your proposed approach. XRules is suitable for encoding and executing business rules on XML documents. Are you doing CRUD...
Hello all.. I am fairly new to xrules. seems like an interesting concept and may solve the problem I am trying to resolve. I am trying to design a web based...
True. An implementation of "include" functionality is on the to-do list. However, XRules provides an added capability to attach multiple XRules documents to...
... Implementing either an XInclude or a xrules specific include would be more in following with what other XML languages implement, like XML Schema and XSLT. ...
That's actually easy. DDOM Supports attaching multiple XRules documents to one XML document at the same time. No need to use <Include> for this; just call the...
How can simulate with XRule or DDOM. I have 1 XML file and 3 Xrule file that I want to run on XML file. Best regards Sasan Nikookar ... <import> ... Behalf Of...
Hi all, I have this XML : ... <PartList> <part> <Name>AAAABBBBCCCC100</Part> <Format>############999</Format> <Size>15</Size> </Part> </partList> ... I want to...
It seems that you're missing the "@" before the attribute name. This should fix the problem: <xr:rules xmlns:xr="http://www.xrules.org/2003/11"> <xr:ruleset...
You can use the regex attribute of the <bind> rule to select a regular expression to match your format. Here is an example I made up. You can find excellent...
Hi, Thank you about XRule,It is so usefull Rule Management. I have problem with XmlAttribute like this: <FLN ID="F051601004" SUM=""> <CFLN ID="1">10</CFLN> ...
Hi, I have a question about How I can control email,phone,... format with XRule. <Contact> <Phone>+98-21-2222222</phone> <Email>Radobject@...</Email> ...
Hi, If you want calculate some fields and set result into another xml element but you don't know that all tag has it. You can use this XRule. My XML data : ...
I don’t believe that these warnings are an issue. Most of them are complaining that types and interfaces under the Microsoft.Vsa namespace are obsolete. This...
To begin -- XRules is some very useful and cool stuff! I used TortoiseSVN to get the latest source from tigris.org and compiled (I use VS 2005 and was...
You raise a good point. I just finished implementing a fix and uploaded it to the repository at http://dynamicdom.tigris.org/ . I changed NodeTracker to be a...