There will probably come a time in every CRM developers life when they have to install a DLL into the GAC. The reason you might want to do this is so you code can access the dll’s and methods without having to have the DLL included with your code. A good example of this […]
November 4, 2011
When you create a Web Service the default Namespace is [WebService(Namespace = "http://tempuri.org/")] I was wondering firstly should I change it and secondly what should I change it to. The default Namespace doesn’t really give you much of an indication or example. The short answer is all Web Services need a unique namespace to distinguish […]
October 28, 2011
If you are a regular follower of my blog you will have no doubt worked out I am doing some development over the last week and have been wrestling with various problems. Today I found one of my columns had special characters such as Newline, carrage return etc and I wanted to remove them. In […]
October 27, 2011
Today I found some functionality which I thought was amazing and will save me loads of time creating some sample XML files to test my webservice with. I had some sample data in database which I wanted to convert into an XML file. My original idea was to use excel to concatenate bits of it […]
October 27, 2011
Today I was creating a class with lots of variables and I was originally using the refactor method to generate getters and setters. In the end I got bored and thought there must be a quicker way. I knew about code snippets but hadn’t really used them To use the code snippet for creating a […]
October 27, 2011
I was trying to figure out some shortcuts in Visual Studio 2010 and then I came across this page and then I find out the visual studio team create a very useful poster, hazaar you can download the poster here, in fact they have posters for all their languages. They are A4 in size and […]
October 24, 2011
A simple problem I came up agaisn’t today, how to create a Global.asax file. This global.asax file is an optional file which handles application level events. I wanted one to set up some variables for my web service (CRM 4) and I wasn’t sure how to add one and I finally worked it out. Go […]
May 24, 2011
I was getting an error today complaining about loading one of the assemblies in my web service. I spent hours adding all sorts of security privildges to the folders in windows and in IIS. initially I had the dll name in my google search, this lead me down completely the wrong path, finally I typed […]
May 18, 2011
A fellow developer was sharing the wealth this week and found that Microsoft have put up a load of new free videos from Pluralsight for ASP.NET Web Forms. You can go to this http://www.asp.net/web-forms Below is a breakdown of the 9 video modules in the ASP.NET Web Forms series: Introduction to ASP.NET (64 minutes) ASP.NET […]
April 4, 2013
6