I’ve been doing some tests to get a token from ADFS (Geneva Server) using Windows Identity Foundation WSTrustClient. In this case we are using the UserNameMixed endpoint that expects a WS-Security UsernameToken (notice the MessageCredentialType.UserName). internal static ClaimsIdentityCollection RequestTokenWithUsernameMixed() { var binding = new WS2007HttpBinding(SecurityMode.TransportWithMessageCredential, false); binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName; binding.Security.Message.EstablishSecurityContext = false; var credentials =... read more
Last week, with Matias Bonaventura, Julian Dominguez and Pablo Constantini, we created a WPF demo application using Prism-v2 that shows both way interaction between different modules of the application and different WPF WebBrowser controls. Below you can find some of the highlights of how this application works. The demo shows interaction between the WPF application... read more
Yesterday, while developing a demo app that uses Prism-v2, WCF services, ASP.NET web application and interaction with WebBrowser controls , I run into a little problem trying to consume the service from a module. I thought could be useful posting about it to save someone a little time. Update: Damian Schenkelman has posted WebBrowser control... read more
Published by Matias Woloski on February 13th, 2009 7:25 am under ASP.Net, Cloud Computing, Federation, Geneva, Identity, LiveID, MVC, PDC08, WCF, azure
Couple of weeks ago Ryan Dunn announced Azure Issue Tracker. From this post: "This sample application is a simple issue tracking service and website that pulls together a couple of the Azure services: SQL Data Services and .NET Access Control Service." I’ve been working with Ryan and other guys at DPE and Southworks to put... read more
Spanish Version On December 11, 2008 we gave a Webcast for Latin American Community with my friend and mentor Johnny Halife about how to develop distributed applications by using Windows HPC Server 2008. The objective of the talk was about to explain the platform that Windows HPC Server 2008 provide us to build distributed applications... read more
One of the things I didn’t like of the WSFederationHttpBinding is that it encapsulates lots of things. In particular, the call against the STS to obtain a SAML token. I wanted to have control over that process. The good news is that the Geneva Framework allow us to do all that in a very... read more
Published by dperez on November 2nd, 2008 3:21 am under WCF
I want to share with you some pieces of code that you can use to achieve a more flexible design on your applications. What you can achieve with this is that your WCF service instances are built taking advantage of Dependency Injection by using the Unity Application Block (from Microsoft P&P). Setting up the sample... read more
Published by on October 30th, 2008 9:46 pm under Ajax, WCF
At one of my first jobs as web developer I worked with a friend, Gustavo Miranda, A.K.A Morph, we used PHP language. We maintained three websites at different datacenters, but the owner was the same (my friend’s uncle). At that time, one day, we had an integration request: one of the websites should show data... read more
Published by on July 16th, 2008 2:21 pm under WCF
I want to share with you something I found very useful. In this post I’ll show how to use the WCF Serializer to serialize and deserialize objects into XML files. I’ve learn that from my coworker Edgardo Rossetto. I’ve wrote in the previous post about WCF, to send an receive messages WCF needs to serialize... read more
Published by on June 30th, 2008 1:52 am under WCF
One of the things I really like about working at Southworks is that you have access to an incredible library where you can learn a lot, this is part of the Southworks’ culture This weekend I started reading Justin Smith’s book “Inside Windows Communication Foundation”. I’ve finished the first part of the book, although I’ve... read more