Category Archives: Technical Journal
My first glimpse at OAuth 2.0.
So what is this OAuth? This is what wikipedia says: OAuth is an open standard for authorization, commonly used as a way for Internet users to authorize websites or applications to access their information on other websites but without giving them the passwords.[1] This mechanism is used by companies such as Google, Facebook, Microsoft and… Read More »
Create your own Identity Provider (IP-STS)
In the following example i will show how to build an Identity Provider also called a passive security token service (IP-STS) that issues tokens using WS-Federation. This post builds on work done in a previous post, Create your own active STS. In this article I will show how to create a complete working example of an… Read More »
Identity provider & protocol terms & definitions.
Decoding FedAuth Token
Tracing internal traffic from .NET applications with Fiddler
Today I had an interesting situation. I had the need to see the requests and responses internal to my Asp application. Now normally one can use fiddler to see the requests and response to your application but how does one see http requests that the application might be making internally between itself and other components? After… Read More »
Add security headers to asp.net core
WCF & ORM Concurrency Investigation
Back story Hi, please bear with me on this long blog post. There is lots to explain and the topic is not a easy one. In the last 3 months my team and I struggled with a problem in our SOA solution. We have a business requirement that requires that we need to service 250 concurrent connections… Read More »
Keyset does not exist
The “Keyset does not exist” error occurs when a process is trying to manage the private keys of a certificate but the process does not have permission to do so.
What is new in C# 6
What is new in C# 5
UML class diagram standards
This is a standards document that I drew up for a web services project that my team was working on. You will notice that the diagrams are done at a very high overview level. The document below can be viewed as my personal approach to how I prefered the UML diagrams to be done. Some of… Read More »
The queue does not exist
What does the WCF aspect programming provide?
Integrate Ws-Federation into Asp.Net
A passive STS (IP-STS) is a website that issues a token and uses the browser to direct the flow of the application through redirects. The following example will be integrating a website with a passive STS that issues tokens using the WS-Federation standard. Click here if you wish to see how to create your own passive STS.