not the last of his kind
Posts tagged c#
System.Net.WebException: An exception occurred during a WebClient request
Apr 26th
When using either WebClient or HttpWebRequest to download file from a remote location, sometimes I got the following exception:
System.Net.WebException: An exception occurred during a WebClient request
For some reasons, IIS (the Web server) may deny to serve a request that doesn’t specify the user-agent property in the request header. So, although it’s not really obvious, this can be solved pretty easily by specifying the particular user-agent property. You can set it to anything, it doesn’t matter as long as it exists.
For example, here how you provide the property using WebClient:
using (var wc = new WebClient()) { wc.Credentials = CredentialCache.DefaultCredentials; wc.Headers.Add(HttpRequestHeader.UserAgent, "anything"); wc.DownloadFile(fileUrlToDownload, fileNameToSafe); }
And, here how to do it with HttpWebRequest:
var req = (HttpWebRequest)HttpWebRequest.Create(fileUrlToDownload); req.Credentials = CredentialCache.DefaultCredentials; req.UserAgent = "anything"; var resp = (HttpWebResponse)req.GetResponse(); using (var stream = resp.GetResponseStream()) { using (var fstream = new FileStream(fileNameToSafe) { var buffer = new byte[8192]; var maxCount = buffer.Length; int count; while ((count = stream.Read(buffer, 0, maxCount)) > 0) fstream.Write(buffer, 0, count); } } resp.Close();
You may also notice that downloading a file using WebClient is much simpler than using HttpWebRequest. The later, however, gives you much more control.
A singleton base class to implement the singleton pattern in C#
Mar 2nd
The singleton design pattern is one of the most controversial pattern. Some people even call it anti-pattern, evil, or stupid. I won’t go into the debate now, but I just want to share something for those who need to use singletons.
Although it is one of the easiest pattern to understand, it is also very easy to code it poorly, leading to unexpected side effects such as poor performance or being not thread-safe.
Jon Skeet has written a very good article describing different implementations of the singleton pattern in C#. He gives a nice example on how you can write a singleton code that is thread-safe and lazy-instantiating. The code is less than 20 lines and you can use it as a template for your singletons.
Since in some projects I have created several singleton objects, it started to get repetitive. Therefore I decided to write a base class based on this pattern as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | using System; using System.Globalization; using System.Reflection; public abstract class SingletonBase<t> where T : class { /// <summary> /// A protected constructor which is accessible only to the sub classes. /// </summary> protected SingletonBase() { } /// <summary> /// Gets the singleton instance of this class. /// </summary> public static T Instance { get { return SingletonFactory.Instance; } } /// <summary> /// The singleton class factory to create the singleton instance. /// </summary> class SingletonFactory { // Explicit static constructor to tell C# compiler // not to mark type as beforefieldinit static SingletonFactory() { } // Prevent the compiler from generating a default constructor. SingletonFactory() { } internal static readonly T Instance = GetInstance(); static T GetInstance() { var theType = typeof(T); T inst; try { inst = (T)theType .InvokeMember(theType.Name, BindingFlags.CreateInstance | BindingFlags.Instance | BindingFlags.NonPublic, null, null, null, CultureInfo.InvariantCulture); } catch (MissingMethodException ex) { throw new TypeLoadException(string.Format( CultureInfo.CurrentCulture, "The type '{0}' must have a private constructor to " + "be used in the Singleton pattern.", theType.FullName) , ex); } return inst; } } } |
For an example of usage, we will create a singleton class that generates a sequence number:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | // Must seal the class so no sub-classes can be defined. public sealed class SequenceGeneratorSingleton : SingletonBase<sequenceGeneratorSingleton> { // Must have a private constructor so no instance can be created externally. SequenceGeneratorSingleton() { _number = 0; } private int _number; public int GetSequenceNumber() { return _number++; } } |
Then, a console application will call the sequence generator class:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | class Program { static void Main(string[] args) { Console.WriteLine("Sequence: " + SequenceGeneratorSingleton.Instance .GetSequenceNumber().ToString()); // Print "Sequence: 0" Console.WriteLine("Sequence: " + SequenceGeneratorSingleton.Instance .GetSequenceNumber().ToString()); // Print "Sequence: 1" Console.WriteLine("Sequence: " + SequenceGeneratorSingleton.Instance .GetSequenceNumber().ToString()); // Print "Sequence: 2" } } |
To recap, in order to create a singleton class using the singleton base class, you need to do the following:
- Define a sealed class which derives fromĀ
SingletonBase<T>, where T is the class name you are defining. It ensures that you cannot create subclasses from this singleton class. - Define a single parameterless private constructor inside the class. It ensures that no instances of this class can be created externally.
- Access the class’ singleton instance and public members by calling theĀ
Instanceproperty.
I have also included the code in LiquidSilver, which you can view or download from the repository.
Refreshing the LINQ to SQL DataContext by Clearing the Cache
Feb 8th
LINQ to SQL DataContext can sometimes be difficult to deal with. Especially when combined with the use of stored procedures. For example, there is a case where I want to delete multiple records with a stored procedure rather than using the LINQ to SQL API for performance reason. After executing the stored procedure, the DataContext is not aware of the changes and still thinks that the entities are still there because the DataContext caches them. Hence, when I try to add another record using the same key, the DataContext throws an exception with the following message:
Cannot add an entity with a key that is already in use.
Logically, I want to refresh the DataContext memory so it will recheck the database. The provided DataContext.Refresh() method requires the original entity set to be sent which can be a problem. I don’t want to query the DataContext for the entities for performance reason, hence the stored procedure is used in the first place. So I have to find another way to refresh the DataContext or clear the cache without relying on the original entity set.
There is no official way to do it, but I stumbled on this blog post telling that there is a DataContext method called ClearCache() that can be used for that purpose. Unfortunately that method has internal modifier so you cannot call it from your code. But with a bit of reflection magic you can borrow the hidden power as follows:
context.GetType().InvokeMember( "ClearCache", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, context, null);
After invoking the ClearCache() method, I can now successfully add new entities to the DataContext by reusing the keys from the deleted records.
Recent Comments