Skip to search.
xrules · XRules & DynamicDOM

Group Information

  • Members: 31
  • Category: XML
  • Founded: Mar 10, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 45 - 74 of 74   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
45 Waleed K. Abdulla
waleed_ka Offline Send Email
Dec 23, 2006
12:54 pm
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...
46 Waleed K. Abdulla
waleed_ka Offline Send Email
Dec 23, 2006
1:05 pm
The last repository update also includes upgrading the projects to .NET 2.0 and VS 2005 format. http://dynamicdom.tigris.org/ Regards, Waleed...
47 voxdog69 Offline Send Email Dec 23, 2006
8:50 pm
Excellent. I'll try it out asap and let you know if there's any issue....
48 w1lls1d Offline Send Email Jan 5, 2007
6:04 pm
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...
49 Waleed Abdulla
waleed_ka Offline Send Email
Jan 5, 2007
6:36 pm
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...
50 radobject Offline Send Email Jan 14, 2007
3:25 am
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 : ...
51 radobject Offline Send Email Jan 14, 2007
3:26 am
Hi, I have a question about How I can control email,phone,... format with XRule. <Contact> <Phone>+98-21-2222222</phone> <Email>Radobject@...</Email> ...
52 radobject Offline Send Email Jan 14, 2007
3:27 am
Hi, I have this XML file : ... <Part> <ID>1</ID> <FLN ID="F051601001">ÂÓãÇä ÂÈ</FLN> <FLN ID="F051601002">3400</FLN> <FLN ID="F051601003">40</FLN> ...
53 radobject Offline Send Email Jan 14, 2007
3:30 am
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> ...
54 Waleed K. Abdulla
waleed_ka Offline Send Email
Jan 14, 2007
5:41 am
Hi Sassan, You found a correct solution. Another way you can use is to create your rules as follows: <xr:ruleset...
55 Waleed K. Abdulla
waleed_ka Offline Send Email
Jan 14, 2007
5:53 am
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...
56 Waleed K. Abdulla
waleed_ka Offline Send Email
Jan 14, 2007
5:59 am
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...
57 radobject Offline Send Email Jan 16, 2007
11:39 am
Hi all, I have this XML : ... <PartList> <part> <Name>AAAABBBBCCCC100</Part> <Format>############999</Format> <Size>15</Size> </Part> </partList> ... I want to...
58 radobject Offline Send Email Jan 16, 2007
11:39 am
Hi I want to kno XRULE suppot import or include statement for adding another XRule into a XRule file. Best regards Sasan Nikookar...
59 Waleed K. Abdulla
waleed_ka Offline Send Email
Jan 16, 2007
12:10 pm
Sasan, The current implementation does not support the <include> or <import> elements yet. Regards, Waleed ... From: xrules@yahoogroups.com...
60 radobject Offline Send Email Jan 16, 2007
4:45 pm
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...
61 Waleed K. Abdulla
waleed_ka Offline Send Email
Jan 17, 2007
5:44 am
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...
62 David Carver
d_a_carver Offline Send Email
Jan 17, 2007
6:06 pm
... 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. ...
63 Waleed K. Abdulla
waleed_ka Offline Send Email
Jan 18, 2007
12:47 am
True. An implementation of "include" functionality is on the to-do list. However, XRules provides an added capability to attach multiple XRules documents to...
64 Ravi
rckv Offline Send Email
Mar 22, 2007
2:59 am
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...
65 Waleed K. Abdulla
waleed_ka Offline Send Email
Mar 23, 2007
9:45 am
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...
66 Ravi
rckv Offline Send Email
Mar 25, 2007
8:13 am
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...
67 Waleed K. Abdulla
waleed_ka Offline Send Email
Mar 25, 2007
10:32 am
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...
68 David Carver
d_a_carver Offline Send Email
Mar 25, 2007
2:08 pm
... 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...
69 Waleed K. Abdulla
waleed_ka Offline Send Email
Mar 26, 2007
6:57 am
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...
70 David Carver
d_a_carver Offline Send Email
Mar 26, 2007
11:47 am
... Yep, agree with all of these. However, how XSLT is implemented varies from implementation to implementation. Plus, unless you implement SAXON .NET, there...
71 Ravi
rckv Offline Send Email
Mar 27, 2007
1:48 am
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...
72 radobject Offline Send Email Jul 3, 2007
6:45 pm
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...
73 albertson.jacob Offline Send Email Oct 2, 2008
5:11 am
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...
74 g_blackwell Offline Send Email Jul 30, 2009
6:55 am
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...
Messages 45 - 74 of 74   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help