Calling Biztalk Rules Engine Remotely

I want to know if we can call the BRE from custom code (.NET API) remotely? Lets say, The BRE is installed on Biztalk server. And I have an Asp.NET Web Application on a different IIS Server. Can I invoke the BRE from this ASP.NET web application?
[246 byte] By [RameshKandukuri] at [2007-12-25]
# 1
As far as I know, not, it is not possible directly, and even if you could, I'm guessing this would be outside of the uses allowed by the EULA.

That said, I guess you could certainly expose a service from the BizTalk server that wraps your policies and allows you to call them remotely in that way (this could even be a biztalk orchestration that calls the BRE exposed as a web service, for example).

TomasRestrepo at 2007-9-3 > top of Msdn Tech,Architecture,Architecture General...
# 2
Thanks. Thats what I figured.
RameshKandukuri at 2007-9-3 > top of Msdn Tech,Architecture,Architecture General...
# 3

Ik you make a remote service which talks to the BRE it is posible. In this service referense Microsoft.RuleEngine dll.

We implemented this solution in a project, so i can sau it is posible

Riekesh at 2007-9-3 > top of Msdn Tech,Architecture,Architecture General...
# 4

If service is located on web server, Biztalk Framework should be installed on webserver to refer Microsoft.RuleEngine.dll.

VarshaPandey at 2007-9-3 > top of Msdn Tech,Architecture,Architecture General...
# 5
Note that if you do that, you'll need to pay a full BizTalk Server license for that webserver, even if you don't use any of the other features there.
TomasRestrepo at 2007-9-3 > top of Msdn Tech,Architecture,Architecture General...