Scott Van Vliet

Less Talk, More Rock

July 2005 - Posts

Quick Search Engine Safe URL Module Update

I've received several emails regarding some errant debug code that was left in the Search Engine Safe URL HttpModule that I created and published on this blog.  Lines 85 – 88 (found below) of the SesRequestFilter class were written to monitor the response buffer as I was developing this module.

 

FileStream fs = File.OpenWrite(String.Format(@"C:\Temp\seslog-{0}.txt", DateTime.Now.Ticks));

fs.Write(buffer, offset, count);

fs.Flush();

fs.Close();

 

This code should be commented out or completely removed from SesRequestFilter, the project should be recompiled, and all references to the module should be updated with the newly generated assembly.

 

I’ve posted an update to the source distribution to the following location.

 

http://69.2.200.115/downloads/ASP_NET_SES_1_0_2.zip

 

Enjoy!

More Posts