SharePoint Tools Galore List
SharePoint toolsuites
Coras workplace suiteSuite with rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...)
Syntergy Provide lots of modules such as replication technologies for...
Codesmith, netTiers and reserved words
Started today using Codesmith tools today after a year or so since the last time that I used this great generation template based tool. I had to generate...
How to run another application or batch file from my Visual C# .NET code
Example 1.Running a command line application, without concern for the results:
private void Run(){ System.Diagnostics.Process.Start(@"C:runFile.bat");}
Example 2.Retrieving the results and waiting until the process stops (running the process synchronously):
private...
Using Sandcastle to Generate Documentation
Sandcastle is Microsoft's documentation compiler. It uses reflection of source assemblies and integrates the XML comments placed in the code by the developer to generate comprehensive MSDN-like documentation. Actually,...
Smaller .NET 6 docker images
Introduction
This post compares different strategies to dockerize a .NET 6 application and how to create a < 100mb docker image to host a .NET 6 asp.net web application. Using...
Add WCF Message Id in every log4net message
I needed to have the WCF message identifier in every log message because I needed to correlate the log messages from a particular WCF call.
The best way to achieve...
Enterprise Library: Criar ligação à base de dados de forma dinâmica
Já alguma vez precisaram, usando o Enterprise Library, de estabelecer uma ligação com um número de base de dados variável e em que a base de dados a ligar...
SharePoint 2007 – Checking if a Workflow Instance is Completed
Introduction
This blog post will show you how to check if a certain workflow instance is completed in a SharePoint list. In this example, let's assume that the default "Documents"...
TWIL: The weird way .NET’s config system parses JSONs
The day is a Friday. We were calmly deploying an app we tested locally to the test environment. The error we had was pointing towards the config files. Off...
Como Serializar um Objecto para XML e Deserializar um XML para Objecto
Serializar um Objecto para String (XML)
StringWriter sw = new StringWriter();
XmlSerializer serializer = new XmlSerializer(typeof(OBJECT));
serializer.Serialize(sw, getAcessoryEquipmentsRequest.SearchCriteria);
strXML = sw.ToString();
Deserializar uma String (XML) para Objecto
StringReader sr = new StringReader(strXML);
XmlSerializer serializer =...