How to force jqGrid 4.10.1-pre to encode ‘ character always

Free jqgrid uses setting autoencode: true grid definition contains: $grid.jqGrid({ url: '/admin/API/Entity', datatype: "json", editurl:'/admin/Detail/Edit' In inline edit <a character is entered to Nimetus column and data is posted to server in url-encoded format. Request URL:http://localhost:52216/admin/Detail/Edit?_entity=DokG&_dokumnr=135322&_vmnr=0 Request Method:POST Status Code:490 OK Response Headers view source Cache-Control:private, s-maxage=0 Content-Length:122 Content-Type:application/json; charset=utf-8 Date:Mon, 23 Nov 2015 15:31:54 … Read more

ASP.NET Identity OWIN Middleware Google OAuth2 AuthenticationManager SignIn not working

I have created a simple ASP.NET MVC4 web site to test the new OWIN Authentication middleware, I decided to start with Google OAuth2, I have had struggle quite a bit with the configuration but I have managed to have Google to authorize the user, the problem I have right now is that OWIN is not authenticating the user.

SynchronizationContext.Current is null when run on different app domains

I have a Web Application running in one machine and the services in another machine (i.e.both are in different App domains). I have a workflow service in my service layer which gets the Synschronization Context from SynchronizationContext.Current. I get the SynchronizationContext.Current always as null. But If I run both my application and service layer in the same machine (i.e. same appdomain) the SynchronizationContext.Current is AspNetSynchronizationContext and it works fine. Can somebody help me to resolve this to run different app domains.