Skip to main content

Posts

Showing posts with the label Microsoft

Microsoft C# - Basics

What is C#? We'll Take this definition from Wiki: Basic Points we should cover up: We would be learning following points in this Post: Writing and Reading from Console Variables, Data Types and Conversions Operators Conditions Passing Values to methods Handling Nullables Arrays, String, Struct and Enums Let's Code: The below Program will help you understand the basics of the above points listed. Go through each region separately and get to know the syntax of C#. We Believe, it's always better to Code and Learn than Read and Learn! If you want theoretical help related the basics, please visit here: C# Basics   Hope this helps to get you to start off with C# Coding! We would be adding more to this soon! And don't forget to visit  Joodle  to compile your codes online. Thanks! 😀

StarterPack: Microsoft BizTalk server

Why we need ? - Integrate large business functions Used when data needs to be transferred from one business unit to other, with in between  transformations as per the business requirements. Wiki defines as - Microsoft BizTalk Server (or simply "BizTalk") enables companies to automate business processes, through the use of adapters which are tailored to communicate with different software systems used in an enterprise.  Initial stages - 2000 release - First version 2013 release - Currently used First as the standard application server of Microsoft but when AppFabric was launched they decided to continue BizTalk as a integration app server. Consists of - 1. Messages - These are in form of XML schema definition standard I.e. XSDs. All the documents are formed in parent child structure as in an XML and stored in BizTalk. 2. Transformation - done using Maps. Maps are implemented in XSLT language I.e.  XSLT (Extensible Stylesheet Language Transfor...