... Your rule is correct except that, unfortunately, XPath does not do string comparison; it tries to convert the values to numbers first. But, there is a...
... XPath 1.0 is limited to this, XPath 2.0 supports the 19 primitive types defined by XML Schema. I believe the only XPath 2.0 implementation for .NET is...
Rather than start a new topic each time, I figure one topic with a dialog might prevent cluttering up the main page with lots of topics. Naturally, the list...
Sure, you can do string operations with the <calculate> rule. It's not limited to numeric operations. In fact, all the rules in XRules use XPath as the...
It appears that the NodeTracker is a static class with a static ParticleList as its collection. If you attempt to use DynamicDom in a webserver environment...
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...
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...
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...
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 : ...
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, 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> ...
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...
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...
Hi all, I have this XML : ... <PartList> <part> <Name>AAAABBBBCCCC100</Part> <Format>############999</Format> <Size>15</Size> </Part> </partList> ... I want to...
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...
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...
... 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. ...
True. An implementation of "include" functionality is on the to-do list. However, XRules provides an added capability to attach multiple XRules documents to...
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...
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...
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, 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...
... 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...