Thursday, July 10, 2008

BizTalk Must Have Documentation

 

Just a small note for some good documentation. I keep forgetting or losing this links. :)

 

For installation, administration and monitoring:

http://www.microsoft.com/downloads/details.aspx?FamilyID=5251f103-329d-4f8d-95b5-64f99f2f6dfc&DisplayLang=en

 

For HardCode Sql Queries:

BizTalkServer2004AdvancedMessageBoxQueries.doc

And just the BizTalk Community Bible:

http://www.codeplex.com/bloggersguide/Release/ProjectReleases.aspx?ReleaseId=14524

Wednesday, June 18, 2008

Teste do Windows Live Writer

Parece que agora a coisa está a começar a mexer.

Na mesma aplicação (leve), temos RSS Reader, Mail, Contactos Newsgroups, Autor de Blog,  Messenger.

Aquilo que gosto (desta fase de teste) é o facto de ser uma aplicação sem leve. Pena é que a funcionalidade de descarregar mails de outras contas seja para pagantes.

Tuesday, February 19, 2008

Reporting Services 2005 uninstall

Remove the trash on your sql server database engine
http://technet.microsoft.com/en-us/library/ms143518.aspx
And then remove the product
http://support.microsoft.com/default.aspx?scid=kb;en-us;290301

Friday, January 11, 2008

Unit Test On Internal Methods DotNet C#

Place this inside the assembly info of the project that you want to test:
//Taken from the Ent. Lib. 2.0 Solution.
[assembly: InternalsVisibleTo("Microsoft.Practices.EnterpriseLibrary.Data.Tests")]

The argument, in this case "Microsoft.Practices.EnterpriseLibrary.Data.Tests", should be the name of the project containing the tests.