At work, we just upgraded our machines to Quad Xeon x64 machines with four gigs of ram. NICE..... :) But for some reason the manufacturer loaded 64 bit XP, even though we …
Gemini Webservice interacting with SharePoint Business Data Catalog
At work we use the Gemini Project Issue Tracker every day. We've a very small team, so we're able to get away with the free license for now. Upper management reviews the status of tickets and bugs and …
Continue Reading about Gemini Webservice interacting with SharePoint Business Data Catalog →
Gemini 2.0.5 “The Redirect Loop”
Yesterday while performing some maintenance on our internal Gemini website I ran into an error where the default.aspx page would redirect to the main.aspx page and then the main.aspx page would …
Namespace Aliasing – The using directive
You can easliy alias a namespace in .NET by doing the following: using System;using System.Text;using myXml = System.Xml; // <-- myXml is the alias. Then in the code you can reference it like …
Continue Reading about Namespace Aliasing – The using directive →
Updated: Formatted XML From SQL
In my previous post I showed you how to return XML from the SQL Server Database. To further this topic, you can also format your XML to use Xml elements. This time, we're going to take a list of …
Generate XML in SQL
You can easily generate Xml from a DataTable by using the .WriteXml() method. But you can also bypass this and retrieve the Xml directly SQL Server 2005 by running the following command: …