FIX: You receive an "An exception occurred" error message when you use a .NET class in the Business Rule Composer (885448)
The information in this article applies to:
- Microsoft BizTalk Server 2004 Standard Edition
- Microsoft BizTalk Server 2004 Partner Edition
- Microsoft BizTalk Server 2004 Enterprise Edition
- Microsoft BizTalk Server 2004 Developer Edition
SYMPTOMSIn Microsoft BizTalk Server 2004, when you test a policy
that calls a method in a .NET class in the Business Rule Composer or in BizTalk
Orchestration Designer, you may receive an error message that is similar to the
following error message: An exception occurred when
invoking class member
MyNamespace.MyClass.MyMethod
in assembly MyNamespace,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=060d33ae94d9c706. Object type cannot
be converted to target type CAUSEThis problem occurs when the method that you are calling
contains a parameter that is an enumeration. The following is an
example of an Add method of a .NET class that produces this error message when the
method is called from inside the Business Rule Composer or from inside the
BizTalk Orchestration Designer. using System;
using System.Collections;
using System.IO;
using System.Xml;
using Microsoft.RuleEngine;
namespace MyNamespace
{
/// <summary>
/// Summary description for MyClass.
/// </summary>
[Serializable]
public class MyClass
{
public enum MyEnum
{
first,
second
};
ArrayList myAL;
public MyClass()
{
myAL = new ArrayList();
}
public int Add(string myString, MyEnum myEnum)
{
myAL.Add(myString);
return 1;
}
public int Add(string myString)
{
myAL.Add(myString);
return 1;
}
}
.....
} RESOLUTIONService pack information
To resolve this problem, obtain the latest service pack for Microsoft BizTalk Server 2004. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
888751 How to obtain the latest BizTalk Server 2004 service pack
Hotfix informationPrerequisites No prerequisites are required. Restart requirement You do not have to restart your computer after you apply this
hotfix. Hotfix replacement informationThis hotfix does not replace any other hotfixes. File information The English version of this hotfix has the file
attributes (or later file attributes) that are listed in the following table.
The dates and times for these files are listed in coordinated universal time
(UTC). When you view the file information, it is converted to local time. To
find the difference between UTC and local time, use the Time
Zone tab in the Date and Time tool in Control Panel.
Date Time Version Size File name
--------------------------------------------------------------
17-Sep-2004 16:46 3.0.5343.0 708,608 Microsoft.ruleengine.dll
STATUSMicrosoft
has confirmed that this is a problem in the Microsoft products that are listed
in the "Applies to" section.
This problem was corrected in BizTalk Server 2004 Service Pack 1.
Modification Type: | Minor | Last Reviewed: | 6/1/2006 |
---|
Keywords: | kbBizTalk2004sp1fix kbfix kbBug kbprb kbHotfixServer kbQFE KB885448 kbAudDeveloper kbAudITPRO |
---|
|