BizTalk Pipeline Component- Careful with static methods

After bulk testing of an interface, we got some weird result from a PL Component. I found this blog post:

BizTalk Pipeline Component- Careful with static variables

Describing more or less the same issues we had. The only difference is the method was static and the variables inside the method non-static. After removing the static from the method the problem did not occur anymore.

Conclusion, non static variables are static in a static method.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.