My blog has moved!

Visit http://blog.adamroderick.com/ and update your bookmarks.

Thursday, May 10, 2007

Lots of BizTalk Compiler Errors

So I chased my tail for an hour or so trying to get to the bottom of this problem. All of a sudden, I was getting tons of compiler errors in my orchestrations project. For example, it was asking me if I was missing assembly references because it could not find a variable that was defined in the same orchestration! Weird stuff like that. And no exclamation points on my shapes, no red squiggly lines anywhere. Nothing to tip me off as to what was the problem with the error.

I finally found the following forum post that put me on the right track: http://209.8.76.204:82/BizTalk_Orchestration/rn-207960_My_Biztalk_Compilerquot;s_Gone_Mental_!!.aspx

Turns out I had commented out the following lines in an expression shape:

//currFileLocation = currFileLocation.Replace(@"\\", @"\");
//currFileLocation = currFileLocation.Replace("//", "/");

I have comments all over the place in my expression shapes, but when these lines were commented was when I started getting all those errors. For some reason the compiler was not completely ignoring these lines, although it appears the designer was ignoring them. After deleting the lines, the project built without any problems.

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home