-
Hi I am new to BizTalk and am looking into the possibility of prioritizing the folders that BizTalk will poll. I will be creating various physical file directories on various servers as the receive locations for flat files and would like to specify which of the folders should receive special attention...
Posted to
BizTalk 2006
(Forum)
by
Anonymous
on
Tue, Apr 15 2008
Filed under: learn biztalk, business rule, ports, receive port, biztalk 2006, Flat Files
-
Hi, Thank you very much for your response. In fact my problem is little different than what u described in your response. In my above example, I have multiple occurence of <Item> node and I do not know how many times it would get repeated in single message instance. Now my problem is how do I have...
-
Hi, I have set of business rules which I defined in BRE of BTS06. Out of this, I also have a typical requirement wrt BRE which I am not able to put in. Typical case is as below: <Order> <Header> <OrderID>100</OrderID> </Header> <Details> <Item> <ItemCode>I001<...
-
Have tried a few things, and nothing seems to work. The schema that I receive has a date in it, format is <Datum> 2007-02-21 </Datum> and type is xs:date . How to check this in the Business Rule Engine and let the BRE change a boolean if date is more than 26 weeks (182 days) from SysDate...
-
I think it should be possible to work with date's in the BRE. Just don't know how. We want to check if a given date is between a periode of 26 weeks before sysdate and 26 weeks after sysdate. Anyone who has expirienced with this? Thanks for any help.
-
Hi all, I have a situation where I have a custom fact retriever getting some long-term data from a database table. Unfortunately, the database table has millions of records and I don't want to assert the entire table as a fact. However, based on the state of the orchestration, I can determine more...
-
Hi all, I would like to use a BRE Vocabulary to store variables, which I want to retrieve in my orchestration. In my particular case I want to store time-out values (.NET DateTime-objects) in the vocabulary, which I want to retrieve in my orchestration and assign to orchestration variables. These orchestration...
-
There is no direct way to do "else". The normal way to achieve this in one policy is to have two rules, one which is the "not" of the other. Or, as the previous poster suggested, you can create an intermediate result and check that in another rule. However, this tends to produce logic...
-
How to implement IF-THEN-ELSE condition in one rule. example if name="latha" then status="valid" else status="invalid" or any nested if-the-else.. one more query is i need to take record from sql database table based upon some condition (staus="valid") and implement...
-
We are using the code below in an expression shape to call a BRE policy. We are not getting the expected results in the XML message. The policy works if we use the Call Rule shape. Policy = new Microsoft.RuleEngine.Policy("CBSEAI_TE"); Policy.Execute(NotificationEvent); Policy.Dispose(); Any...