BizTalk Development

The community for BizTalk developers and professionals.
Welcome to BizTalk Development Sign in | Join | Help
in Search

Browse by Tags

All Tags » C# » VB.NET   (RSS)
  • Best Use of &&

    You may have to written code that checks if an object is null before you use it. For example: Rexx.Lexer.RexxCodeStatementList list = null;string name;if (list != null){   if (list.Count > 1) name =list[1].Name;}else{   name = ''-NA-'';} This can be abbreviated into the following code using the && ...
    Posted to Paul Wu on BizTalk Development (Weblog) by Paul Wu on February 17, 2007
  • Registry Access Permission

    If you are logging information to the EventLog and getting an access error, make sure you have the following registry setting: Launch RegEdit and navigate to: \\MyComputer\HKLM\SYSTEM\CurrentControlSet\Services\ Right Click on EventLog and click permissions. Add the service account (application pool ID or BizTalk host ...
    Posted to Paul Wu on BizTalk Development (Weblog) by Paul Wu on November 2, 2006
  • Visual Source Safe Tips - Pinning

    Despite its flaws and bugs, Visual Source Safe continues to be the most popular source control program in the Microsoft realm. Many poeple I talk to are not aware some of its more useful functions such as ''Pinning''. Understanding the use of pinning can be very useful in a multi-developer environment. Use of Pinning: Assume there are 10 ...
    Posted to Paul Wu on BizTalk Development (Weblog) by Paul Wu on November 1, 2006
  • Schema design for Web Service

    When declaring complex types in XML schema definition, I have grown accustomed to suffix the type name with ''_Type''. This allows me to easily distinguish a complex type from a global type when viewing the definition in a graphical design tool such as XML Spy. However, it has unintended consequences when incorporating such schema into a web ...
    Posted to Paul Wu on BizTalk Development (Weblog) by Paul Wu on October 31, 2006
Powered by Community Server, by Telligent Systems