-
Windows 10 IoT Core is a kind Windows Operative system, which is some incarnation of Windows 10. It enables us to develop .NET and Windows applications, by using common Visual Studio toolset. Even more interesting is a fact that Windows 10 IoT Core can run on PI2 ( Raspberry ). This enables us to build...
-
If you need to Authenticate your Azure Web App (ASP.NET MVC Application) against WCF Service with a specified Client Certificate (.p12 in my case) you will find out that it is not quite simple as it sounds. There are plenty of samples of how to do it in Internet, but non of them has really worked for...
-
After finally finishing my studies (for now), I am getting my "old life" back again! That means more time for coding, research and of course blogging. As one of my first (small?!) series that I will be writing will be about "How to use D3.js for Server Side Chart Generation in .NET"...
-
This article describes how to integrate a custom authorization system in one ASP.NET application. The idea behind custom authorization is very simple. Imagine your application is using authentication providers like Facebook, Twitter, Azure Active Directory etc. All these providers will provide you an...
-
When working with OWIN pipeline, I often have a requirement to access the pipeline within custom implementation of a filter-attribute. For example, I want to get instance of the OwinContext like: protected override bool IsAuthorized (System.Web.Http.Controllers.HttpActionContext actionContext) ...
-
One of most often my personal issue when working with WebApi is routing. Sometimes I cannot explain myself how often one can repeat same mistake. This is something what is in SOAP based protocols also an issue. If you ever worked on extending of WCF channels you will know what I mean here. So, here is...
-
When working with NUGET in big projects (just a bit bigger than default hello-world) you might run into following issue: Could not load file or assembly ‘…’ The prominent of this error example is : Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken...
-
This post is just for documentation purposes. We have often a requirement to obtain the binding context instance of the DOM element. This is usually the case when you for example subscribe some event. Following sample shows a keyup event as a INPUT element which is a child of some DIV element. The parent...
-
New IE10 Developers Tools provides powerful feature set which every Web developer should daily use. However some commonly used features like Clear Cache and cookies have been moved to different position. So, the new position of these feature(s) is shown on the picture below: Navigate to some page and...
-
When migrating projects form older ASP.NET MVC version (i.e: MVC 4) you may experience some issues. Before you start migration I would highly recommend following article. It very nicely describes how to perform all required steps. Unfortunately the clock of the real world projects ticks in a different...
-
Shared Access Signature ( SAS ) for Service Bus introduces the new authentication and authorization model. With SAS, authentication and authorization can be done without of need to involve Access Control Service which is the default authentication and authorization model when working with Service Bus...
-
Few weeks ago I described in this article how to deal with custom formatting of DateTime within WebApi. Unfortunately this does not work in ASP.NET MVC application. :( In this post I will provide a simple sample which demonstrate how to do this in MVC. ...
-
If you are fan of jQuery mobile and Knockout , you have probably noticed that page transition is a true issue. If you want to understand why, you can try here and here and many, many other. All very nice articles, which obviously explaining some peace of technology which MUST work. To make this...
-
When trying to deploy Windows Azure Web Site you might get following error: Server Error in '/' Application. Could not load file or assembly 'DotNetOpenAuth.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246' or one of its dependencies. The located assembly's...
-
From time to time you will probably have a requirement to simply upload some file to some remote system by using HTTP. Assuming that you are .NET developer you will probably peak HttpClient library which is a client implementation of WebApi . As long your client and WebApi are implemented on the same...