By Javier Callico on
8/30/2010
This weekend I got the following error message when trying to build a VS 2010 solution that I was able to build without any problems 2 days before:
Error 128 "ResGen.exe" exited with code -532459699.
It was obvious to me that the problem was related to the resource files.
After checking the properties for some of the resource files on my solution I noticed that some of them didn't have a the "Custom Tool" property set.

Setting the value of "Custom Tool" to "GlobalResourceProxyGenerator" allowed me to build my solution again.

If you Google this error, the first link is a Microsoft Connect...
|
By Javier Callico on
8/6/2010
I’ve been working on making callicode.com more friendly to search engines. One of the first things to do when trying to improve you site’s ranking is to make sure that your content is only available from a unique URL otherwise it can be considered duplicate content and your site penalized (more details here and here). Since most websites are configured to work with and without the www prefix you have to decide which one is going to be your site’s main domain and redirect all other requests accordingly preferable using a 301 redirection. I decided that callicode.com was going to be the main domain and started looking for ways to get it done with minimal effort. First I tried to find a possible built in functionality on DotNetNuke,...
|
By Javier Callico on
7/12/2010
This is a follow-up on my previous post.
I wanted to see how the 3 browsers I use the most rank regarding their current support for web standards. I ran the popular Acid3 test on the latest versions available for download of Chrome, Firefox and IE.
These are the results I got.....
|
By Javier Callico on
7/9/2010
I want to start by saying that I’m not Google fan boy and the only Google product I use apart from Chrome is, of course, Google search (I also tried to give Bing a change but couldn’t use it for more than one hour, I guess I’ll have to try again).
I still remember what I said the first time I heard about Google’s new browser: Who needs another browser besides Firefox?
|
By Javier Callico on
7/6/2010
Two days ago I tried to deploy to a production environment a WCF service and got the following error:
System.ServiceModel.EndpointNotFoundException
There was no channel actively listening at 'http://somehostnameIdidntrecognize.local/services/myservice.svc'. This is often caused by an incorrect address URI. Ensure that the address to which the message is sent matches an address on which a service is listening.
|
By Javier Callico on
3/31/2010
I've noticed that some voices in the .Net community are jumping into the NoSQL wagon and trying to get as much people aboard as possible. I see posts regarding NoSQL getting more and more frequent; see here and here for example.
I have the following confession to make:
|
By Javier Callico on
3/29/2010
|
By Javier Callico on
3/24/2010
For the last two weeks I've had the opportunity to work on a project which uses Entity Framework (EF) ver. 1.0. For more than a year I've been reading complains, reviews and comparisons regarding EF but finally after using it I have my own opinion:
- It's not a mature solution.
- Definitely falls short when compared to other products in the same category, like NHibernate for example.
- It's not as bad as some people want to make it appear.
- Can help some teams deliver small projects on time, especially if the developers have no experience on the use of O/R mapping tools or if like in the project I was working on, most of the business logic was implemented on the database side.
|
By Javier Callico on
3/11/2010
There are plenty of good Dependency Injection Container implementations out there. The selection of an IoC container is not only defined by the developer's preference, which can swing the vote big time since most developers swear by their favorite container, but also of other factors like standards in the organization, the usage of another product which already supports, or favors, a given IoC implementation, etc.
The usage of an IoC container should always be abstracted, making the process of switching between implementations fairly simple, or at least, the refactoring needed to accomplish this task will be minimal compared to the one needed if you were using references to a specific container all over your codebase.
|
By Javier Callico on
2/5/2010
I'm not a fan of meta posting but this information was so valuable to me that I wanted to keep track of it on my blog just in case something happens to the original article.
If you are one of the unlucky few (I would like to think there are no many of us) still using Visual Source Safe in 2010, then I bet that you've needed to get a version of your project at a given point in time. It happened to me today again and instead of setting with the "Sorry, SS doesn't support that" I set up to find a solution.
I found an old post by Brennan Stehling with the exact instructions to get a point in time snapshot using Visual Source Safe or using Brennan words: Get by date.
|