Hi guys very simple question for you.. To serve Images is better a web service or a HttpHandler in asp.net c# ?
what is the difference ? Why I should prefer one instead another ?
thanks
|
1
|
Hi guys very simple question for you.. To serve Images is better a web service or a HttpHandler in asp.net c# ? what is the difference ? Why I should prefer one instead another ? thanks |
||
|
|
|
|
I would go with an HttpHandler. Its more efficient because it doesn't go through the normal page request pipeline, and is the earliest point where you have access to request. Phil Haack has a great boilerplate template. |
||
|
|
|
|
Of course IHttpHandler is the way to go. Becuase..
|
||
|
|
|
|
You could use either, from what you've supplied I would use a handler as it's better suited in my opinion for this type of request. Web Services are more about surfacing a series of operations for consumption by a third party, you've chosen to expose content in a particular way (maybe to satisfy some kind of authorisation behaviour), in these cases you're added additional logic to how a request is dealt with i.e. you're handling the request in a custom manner therefore I'd go with a handler. |
||
|
|
|
|
Hi, I would suggest a HttpHandler because it can transfert binary data efficiently. Web service would
This is the c# code for the handler :
And this is the configuration you need to add :
I hope this help you. |
||
|
|