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 […]
Month: September 2018
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’ “>
SendPort: Error details: Exception from HRESULT: 0x80131942 (on BizTalk Map)
This is a run-time error can occur when you use a map that is XSLT based. It is possible to compile and deploy the project, even when the XSLT is malformed or has errors in it. Try to reproduce in the developer environment with one or both of the following: 1) Open your project in […]