March 2008 - Posts

BizTalk 2006 And DotNet 3
Friday, March 28, 2008 4:30 AM
I had the joy this week of reinstalling my BizTalk 2006 environment. After 3 days of struggling (getting Creation of Adapter FILE configuration store entries failed errors on the runtime configuration) and applying various fixes for this issue, I finally sat down and analyzed my environment. I noticed that .Net Frameworks 3.0 and 3.5 is the only difference between the new environment and some old environments. After uninstalling all dot net frameworks and reinstalling everything except the .Net 3.0 and 3.5 Frameworks BizTalk is happy again. So why does .Net 3 and 3.5 break BizTalk 2006 (Not R2!).Well, my guess would be that there is some ADO upgrade that is not supported by BTS 2006. This is just my guess, anyone else have a resolution?
Software Architecture - past,present,future
Thursday, March 27, 2008 2:02 AM

Found this nice to read article on MS Skyscrapr site. A very brief overview of architecture, what it is and where it is going.

 http://msdn2.microsoft.com/en-us/skyscrapr/bb426891.aspx

BizTalk Server Operations Guide
Tuesday, March 25, 2008 1:48 AM

Microsoft has just released the BizTalk Server 2006 and R2 Operations guide. The guide is available online from here : http://msdn2.microsoft.com/en-us/library/cc296643.aspx and is also available as PDF,CHM or DOCX. More info can be found at this location:

http://blogs.msdn.com/biztalk_server_team_blog/archive/2008/03/21/biztalk-server-operations-guide-is-pulished-on-msdn.aspx

 

 

 

 

OBA Composition Reference Toolkit
Friday, March 14, 2008 2:12 AM

The 2007 Microsoft Office System is a powerful platform for building role based, collaborative, and analytical applications that extend the reach of Line of Business systems and backend applications to information workers across the organization. These Office Business Applications combine the powerful platform capabilities of the Microsoft Office System with the user familiarity of the Office Clients to surface line of business data, information, and processes to information workers directly within the business productivity tools, interfaces, and devices that they use to execute and complete their business tasks......

 

http://msdn2.microsoft.com/en-us/architecture/cc196391.aspx

Become a grandmaster developer
Friday, March 14, 2008 1:58 AM
Jeff Moser wrote a good, interesting and entertaining article on the differences between experienced and inexperienced programmers, good design vs. bad design etc, etc. Although some parts might be "over my head" (might not be over yours), I still found this a cool read:

 http://www.moserware.com/2008/03/what-does-it-take-to-become-grandmaster.html

Microsoft SQL Data Services
Wednesday, March 12, 2008 2:23 AM

From the official site: 

 "SQL Server Data Services (SSDS) are highly scalable, on-demand data storage and query processing utility services. Built on robust SQL Server database and Windows Server technologies, these services provide high availability, security and support standards-based web interfaces for easy programming and quick provisioning."

 Seems like a very cool concept. For more information go read here:

http://www.microsoft.com/sql/dataservices/default.mspx


 

 

IT vs Business
Wednesday, March 12, 2008 1:48 AM

Too often, there's a wall between a company's information-technology department and everything else. That wall has to go:

http://online.wsj.com/article/SB120467900166211989.html

by riaan | with no comments
Filed under: , ,
LINQ to everything
Tuesday, March 11, 2008 1:08 AM

Found this list of LINQ providers to almost everything.

 

http://blogs.msdn.com/charlie/archive/2008/02/28/link-to-everything-a-list-of-linq-providers.aspx

Singularity
Thursday, March 06, 2008 2:13 AM

Singularity is a research project focused on the construction of dependable systems through innovation in the areas of systems, languages, and tools. The Singularity Research Development Kit (RDK) 1.1 is now available for academic non-commercial use. The official site for Singularity can be found here:

http://research.microsoft.com/os/singularity/

Cleaning up BAM Activity Instances
Wednesday, March 05, 2008 2:07 AM

A good post on Jesus Rodriguez's blog:

http://weblogs.asp.net/gsusx/archive/2008/01/09/cleaning-up-bam-activity-instances.aspx

 

 

by riaan | with no comments
BizTalk Pattern wizard
Wednesday, March 05, 2008 2:00 AM

The BizTalk Pattern Wizard is an extensible tool to help you capture, share, and reuse your orchestration best practices. Very nifty gem:

 

http://www.codeplex.com/PatternWizard

Silverlight Blueprint for SharePoint
Wednesday, March 05, 2008 1:46 AM

The Silverlight Blueprint for SharePoint is source code and guidance for developers describing how to use Microsoft Silverlight and Microsoft SharePoint Products and Technologies together in business applications and Internet Web sites.

http://msdn2.microsoft.com/en-us/sharepoint/cc303301.aspx

by riaan | with no comments
EPOCH to System.DateTime and back again
Tuesday, March 04, 2008 11:12 AM

I think this is an intersting piece of code, should anyone have to do the same convertion I just had to do. Basically I had to struggle with the UNIX Epoch date demon - converting it to and from dotnet. Here is the conversion code. Enjoy:

To System.DateTime:

double epocTime = Convert.ToDouble(stringtoconvert);System.DateTime dateTime = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);

dateTime = dateTime.AddSeconds(epocTime);

string theDate = dateTime.ToShortDateString() + " " + dateTime.ToShortTimeString();

Back to Epoch:

System.DateTime theTimestamp = Convert.ToDateTime(date);

System.TimeSpan span = new System.TimeSpan(System.DateTime.Parse("1/1/1970").Ticks);

System.DateTime time = theTimestamp.Subtract(span);

int epoch = (int)(time.Ticks / 10000000);

 

If anyone has a beter way of doing this, please comment on this post

MS CodeSnippet Library
Tuesday, March 04, 2008 1:21 AM

A code snippet library has just been released by MS. You can search for snippets or even upload your own:

http://code.msdn.microsoft.com/?tapm=A39S11G05

by riaan | with no comments
BizTalk Server 2006 R2 Technical Guides
Monday, March 03, 2008 12:40 AM

Below is a link to Microsoft's techical guides for BTS 2006 R2. All are in poster format and include Database Infrastructure and architecture.

 

http://www.microsoft.com/biztalk/techinfo/guides.mspx

 

 

by riaan | with no comments