Search the web
Sign In
New User? Sign Up
xrules · XRules & DynamicDOM
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

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

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