39,996 reputation
53875
bio website byterot.blogspot.com
location United Kingdom
age 44
visits member for 2 years, 8 months
seen 3 hours ago
stats profile views 2,964

"For when I am weak then I am strong"


Solution Architect, computer vision enthusiast (published a few papers, demo here) and ex-medical doctor. Working mainly as a middleware specialist with interests from CLR level details and protocols up to UI level (WPF and HTML+jquery).

Love to be able to help...

My one liner: "My washing machine will talk REST+JSON in 5 years..." [I said this back in 2010] and recently added " using server side JavaScript - perhaps node.js"


Follow me on twitter: @aliostad


16h
comment Does WebApi's async context trickle down to libraries using TaskParallel?
not saying that. I am saying that multi-threading on server is not great. You need to be careful.
21h
comment Does WebApi's async context trickle down to libraries using TaskParallel?
Using Parallel.For on the Web API host is not a good practice - unless the process could take minutes, in which case better use other options. It will steal the same threads used by ASP.NET hence can cause thread starvation.
Feb
20
comment ProtocolViolationException Load testing web service (GET action with content-body)
@LeeGrissom JSONP is not necessarily restful. Also browser cannot send content with GET so you have to use the URL for sending querystring parameters.
Feb
19
comment DotnetOpenAuth RefreshAuthorization blocked 403 Forbidden (12202)
What did you set the callback URL in your OAuth settings?
Feb
19
comment What other HTTP methods besides POST, PUT, DELETE, GET
@DarinDimitrov again not true. INSERT -> POST and UPDATE -> PUT.
Feb
19
comment What other HTTP methods besides POST, PUT, DELETE, GET
that is not technically true. PUT and DELETE also modify some state on the server.
Feb
4
comment Output caching for an ApiController (MVC4 Web API)
@NoelAbrahams studying the ASP.NET Web API codebase my friend :) Is not documented as far I am aware.
Feb
4
comment Should I create multiple controllers or a single controller with multiple actions to handle more detailed responses?
@DarrelMiller but it maintains the resource hierarchy.
Feb
4
comment Should I create multiple controllers or a single controller with multiple actions to handle more detailed responses?
@DarrelMiller you are right :)
Jan
31
comment Converting RPC style web service operation to a REST service
@AbhijeetPatel well I am talking what I have got from the REST community. So this is the current practice.
Jan
28
comment ASP.NET Web Api: Delegate after Request
@user437899 see my update.
Jan
24
comment Secure way of persisting an auth token in a single page js application
Hi, did you look at ThinkTecture Identity? It has whole host of options.
Jan
12
comment Property Injection into Web API's `System.Web.Http.Filters.ActionFilterAttribute`
@drogon what is not clear? As I said you need to implement IFilterProvider which I have done for you. Then you need to register. Injection will be done by your DI framework - whatever it is - since this factory uses that.
Jan
3
comment Where to store external DLL files?
@Tyler no. You will call PM> Update-Package in NuGet console.
Dec
30
comment HttpClient crawling results in memory leak
Thanks. collections are high with my code too. I already checked to make sure it is collecting. GC.Collect() is bad anyway and should not touch production other than really exceptional cases (e.g. when hosting CLR in another unmanaged app)
Dec
29
comment HttpClient crawling results in memory leak
@DarrelMiller code is not optimised as I said. Code for CyberInsekt is a lot better and does not throw exception but keeps growing in memory.
Dec
29
comment HttpClient crawling results in memory leak
@DarrelMiller That could be the finalizers kicking in - although in my case I saw up to 1GB memory usage. Gen 2 limit I think is around 20MB, if I remember correctly - in any case I am sure GC has collected. Profiler actually does not point to HttpClient or handler.
Dec
28
comment HttpClient crawling results in memory leak
@usr I just limit the number of requests waiting and check it every second. If I don't this will create 1000s of tasks.
Dec
25
comment c# create xml from byte array
@firefox1986 no need to. stackoverflow.com/a/234257/440502
Dec
21
comment Property injection in to Web Api controller using Autofac
what is implementation of RegisterApiControllers()?