Hi,
I have moved my blog and I will not be posting here anymore.
Please update your RSS readers.
Pablo
Victor, found a way to disable the GAC shell extension at the windows explorer. You need to create a DWORD entry named DisableCacheViewer with a value of 0x1 at HKEY_LOCAL_MACHINE\SOFTWARE... I found another way to do this: Open command shell window Goto the C:\Windows\assembly path Rename the desktop.ini file to any other name. It is a hidden file that is invoking the namespace extension, so you wiil need to do attrib desktop.ini -h -r -s Pablo ......
There are a new generation of Microsoft Certifications that are aligned with the .Net framework 2.0
So if you already certified, start thinking about taking these new exams.
Pablo
If you ever wanted to know if Remoting is faster than Web Services for example, check this excelent article:
Performance of ASP.NET Web Services, Enterprise Services, and .NET Remoting
Pablo
In .Net 1.0 the support for transactions is located on System.EnterpriseServices namespace. This model has some disadvantages because you have to inherit from the ServiceComponent class and then you have to registers the components in the COM+ Catalog (with regsvcs). Apart from that this model offers local transactions in a specific database. With the avenue of COM+ 1.5 a new feature called Service without Components appeared, with this feature we don’t have to inherit from the ServiceComponent ......