help.net


Musing on .Net

News





hit counters




Open source CMS


Technorati

My blog

Irish blogs

Locations of visitors to this page Get Chitika eMiniMalls

.Net useful

Blogs I read

PocketPC

SQL

Usability

Webtrends licence flaw

Webtrends is one good package to analyze your web applications in all sorts of scenarios. However, recently I got in trouble with their licensing policy.

In different projects, I used to generate dynamically a lot of images coming from a database, using an aspx page, something like:

genimage.aspx?id=2000 (id is the image id).

But with WebTrends this has been a huge issue recently, because their licence works by page view, and of course my neat code was just doing that, creating too much hits on an expensive license.

Thanks to HTTPHandlers, I transformed the .aspx nightmare by clean .gif and .jpg files, intercepted by the handler to get the right image from the database.

I will publish soon my version of the image handler on Developers.ie if someone is interested.

Can someone tell me what .ashx generate exactly at the client side?

 

Posted: Apr 24 2007, 02:55 PM by help.net | with 2 comment(s)
Filed under:

Comments

Alan K'necht said:

I've run into lots of similar problems with WebTrends licensing as well.

Similar problems can happen if you're running up time utilities, internal search engine spiders (set to crawl to frequently), etc. This is something you need to either anticipate and pay for by purchasing a bigger license or by pre-processing your log files to scrub out the offending hits from the access log.

I have a log scrubbing utility available for doing just that. For more info see http://www.knechtology.com/log-scrubber/index.html

# April 26, 2007 8:16 AM