BizTalk Test Map: error btm1044: Input validation error: Could not find schema information for the element ‘http://Namespace/:ElementName.

When doing a test map, you could get dozens or hundreds of the following error: error btm1044: Input validation error: Could not find schema information for the element ‘http://Namespace/:ElementName. Visual Studio Solution Explorer allows you to right-click on a .btm map and specify a property called “TestMap Input Instance”. If you specify a file that […]

BizTalk Misleading Error: HRESULT: 0x80070002 (system cannot find the file specified)

Error text: A message sent to adapter “FILE” on send port “spGwCustomers_Caterpillar_EDI210” with URI “C:\Integrations\EDI1\Customers\xxxx\outbound\210\Test_210_%datetime_bts2000%.TXT” is suspended. Error details: The system cannot find the file specified. (Exception from HRESULT: 0x80070002) Solution The file not found can refer to the map .dll. The error to me is quite misleading, because it implies the directory/filename path listed […]

Missing attribute “test” on a BizTalk Map

Got the mysterious error “Missing attribute test”. Finally, noticed that I had the “t” missing on the keyword “test”: INCORRECT <xsl:if est=”RateAndCharges/@SpecialChargeOrAllowanceCode != ‘ABC’ “> CORRECT <xsl:if test=”RateAndCharges/@SpecialChargeOrAllowanceCode != ‘ABC’ “>