H,
I have a custom class to get a property that is used in an orchestration, however in our prod environment it's not getting called. It looks like the BRE is getting called and when testing using the BRE composer it exceutes as expected. The same set-up also works on our other enviroments. Any ideas? Many thanks in advance
[Serializable]
public class BREHelper
{
private string SendLocationString;
public string SendLocation
{
get
{
EventLog.WriteEntry("NBCU.BizTalk.PlanningGrid", "Get: " + SendLocationString, EventLogEntryType.Information);
return SendLocationString;
}
set
{
SendLocationString = value;
EventLog.WriteEntry("NBCU.BizTalk.PlanningGrid", "Set: " + SendLocationString, EventLogEntryType.Information);
}
}
}


