Prepare your App for Windows Azure! Create a custom Configuration Manager!
Monday, October 18, 2010 in 2010
2 minute read
When you deploy an application to Windowes Azure, your application configuration cannot be changed cause it becomes part of the distributed package. So what can you do if you want to set some dynamic settings (i.e Connection String settings)? First …
SQL Azure Requires Clustered Indexes in all tables
Friday, October 01, 2010 in 2010
Categories:
less than a minute
Recently we performed some test against SQL Azure. We found that our system was throwing an exception cause SQL Azure requires a clustered index in each table (Wanna know why?). So how can you find out what tables are causing the issue? The answer is …
netDumbster another .Net Fake SMTP server based on Dumbster
Thursday, May 06, 2010 in 2010
Categories:
less than a minute
Today I’ve released netDumbster (http://netdumbster.codeplex.com/) netDumbster is a .Net Fake SMTP Server clone of the popular Dumbster (http://quintanasoft.com/dumbster/) netDumbster is based on the API of nDumbster …
NHibernate.Linq Issue when a query is executed having the same alias but with different associations paths
Thursday, May 06, 2010 in 2010
Categories:
less than a minute
When running a query like the following: var query = nhib-Arms.Where(a => a.LeftHand.Thumb.Length == 1 || a.RightHand.Thumb.Length == 1); Thumb alias was always taken as part of the a.LeftHand association path, therefore leading to wrong results. …
Running Apache behind an IIS server. .Net Solution
Tuesday, February 23, 2010 in 2010
Categories:
2 minute read
Yesterday I had the challenge to redirect – rewrite an url from my public IIS7 server to an internal Apache server. For instance a request to http://www.mysite.com/app handled by IIS should be redirected (using a reverse proxy) to ; …