Cool links Hey guys, here are some cool links of Microsoft .Net great resources. OpenNetCF http://www.opennetcf.org/CategoryView.aspx?category=Home Mono project http://www.mono-project.com/Main_Page (I have tried to download the project but it seems to be big in size) The mono documentation library http://www.go-mono.com/docs/ (great and good for learning) OpenNetCF forums http://www.opennetcf.org/forums/ DotNetNuke http://www.dotnetnuke.com/ Ajax http://ajax.schwarz-interactive.de/csharpsample/default.aspx Microsoft .Net on Wikipédia: http://en.wikipedia.org/wiki/Microsoft_.NET .Net vs J2EE http://java.oreilly.com/news/farley_0800.html Only 4 Gurus a very nice web site http://www.only4gurus.com/v3/download.asp?resource=5187 Enjoy !!!!
Popular posts from this blog
By
Lompo
-
Writing effective adapters for Biztalk Server Introduction Many people, both within Microsoft and in third-party companies, have written successful adapters for Microsoft® BizTalk® Server. This task can be difficult, and this paper is intended to present some of the "tricks of the trade" that these developers have learned, in the hope that these will help others avoid common problems. This document is structured as a set of issues that programmers face when writing adapters, and provides guidelines for resolving these issues. These guidelines can be read in any order, although you may find that reading the whole document first will make the individual guidelines easier to understand. Effective Writing for Adapters Much of the complexity in writing adapters for BizTalk Server is centered on the problems of batched operations and that is what we will look at first. Operations, Messages, Batching, and Transactions Adapters commonly support sending messages to and receiving messa...
By
Lompo
-
Sql Server adapters for Biztalk Server One of the greatest difficulties I found when I started working with BizTalk 2004 was the lack of documentation about the SQL Adapter. In this article, I'm going to demonstrate how we can use this adapter in an Orchestration of BizTalk. The Example To build this example, we're going to use the Northwind database. We're going to simulate a hypothetical situation where we receive an XML message as a file, containing the order number, a customer ID, and the date of the order. In the orchestration, we will use SQL Server to search the additional information about the customer, using the SQL Adapter. Creating the Project We'll start this article by creating a new BizTalk Server project in Visual Studio. In the Visual Studio .NET menu, select the "New Project" option, and for the type of project, select "BizTalk Projects". Select the template "Empty BizTalk Project" and create a project named OrderManager. ...
Comments