| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
10 Articles match "Demo"
See all articles with
"Demo"
| The Latest from www.leastprivilege.com | MORE | | Access Control Service: Programmatically Accessing Identity Provider Information and Redirect URLs The next post will have a demo and source code. In my last post I showed you that different redirect URLs trigger different response behaviors in ACS. Where did I actually get these URLs from? The answer is simple – I asked ACS ;). ACS publishes a JSON encoded feed that contains information about all registered identity providers, their display names, logos and URLs. With that information you can easily write a discovery client which, at the very heart, does this: public void GetAsync( string protocol). {. var url = string.Format(. https://{0}.{1}/v2/metadata/IdentityProviders.js?protocol={2}&realm={3}&version=1.0" www.leastprivilege.com - Wednesday, June 22, 2011 Windows Security Videos auf Channel 9 Natürlich kann auch Kerberos aus Managed Code verwendet werden – die abschließende Demo zeigt wie dies funktioniert. Ich habe vor ein paar Wochen mit Lori drei Videos zum Thema Windows Security für Entwickler aufgenommen – die sind nun Online. Der erste Teil beschäftigt sich mit den absoluten Grundlagen der Windows Sicherheit. Was ist ein Konto? Was ist eine SID? Was ist ein Windows Token? Weiterhin wird gezeigt, wie sich diese grundlegenden Windows Einrichtungen über Managed Code anprogrammieren lassen. link]. link]. link]. und noch ein kleines Interview. link]. Viel Spaß ;). www.leastprivilege.com - Wednesday, April 6, 2011 BASTA! Thinktecture ist dieses Mal vollständig vertreten und Christian, Jörg und ich haben ne nagelneue Demo-Anwendung, die wir am Freitag im Workshop zum ersten Mal öffentlich zeigen werden…spannend…. Wir freuen uns alle schon riesig auf die BASTA! nächste Woche in Mainz. Thinktecture Timetable: [link]. www.leastprivilege.com - Friday, September 17, 2010 | | The Best from www.leastprivilege.com | MORE | | How to build a Development/Test/Demo CA They usually expire on the very day where you have to do an important demo. I often need X509 certificates - but I never really became friendly with makecert. So I ended up running Windows Cerificate Services which proved to be an easy to use, robust solution. You can have one at home or carry it around in a VM. Perfect. There are some gotchas you can run into and I refined my configuration over the years. just had to rebuild my Test CA (on Hyper-V) so I thought I'll document the important steps (for self-reference and whoever might be interested). Basic Installation. Backup the CA cert. www.leastprivilege.com - Thursday, August 14, 2008 Thinktecture StarterSTS 1.0 RTW started to work with what’s now called WIF approximately two years ago – and built various security token services for customers, demos and internal use. Wow – I can’t tell you how happy and relieved I am to write this post ;). The idea behind StarterSTS was to have a non-trivial security token service sample that demonstrates the typical tasks of an STS (where it turns out that issuing tokens is by far the smallest part) and at the same time is real world enough to be directly used in specialized situations like development STSes. Today I am announcing StarterSTS 1.0 Now that 1.0 link]. www.leastprivilege.com - Saturday, April 3, 2010 | - Access Control Service: Programmatically Accessing Identity Provider Information and Redirect URLs
The next post will have a demo and source code. In my last post I showed you that different redirect URLs trigger different response behaviors in ACS. Where did I actually get these URLs from? The answer is simple – I asked ACS ;). ACS publishes a JSON encoded feed that contains information about all registered identity providers, their display names, logos and URLs. With that information you can easily write a discovery client which, at the very heart, does this: public void GetAsync( string protocol). {. var url = string.Format(. https://{0}.{1}/v2/metadata/IdentityProviders.js?protocol={2}&realm={3}&version=1.0" www.leastprivilege.com - Wednesday, June 22, 2011 - Windows Security Videos auf Channel 9
Natürlich kann auch Kerberos aus Managed Code verwendet werden – die abschließende Demo zeigt wie dies funktioniert. Ich habe vor ein paar Wochen mit Lori drei Videos zum Thema Windows Security für Entwickler aufgenommen – die sind nun Online. Der erste Teil beschäftigt sich mit den absoluten Grundlagen der Windows Sicherheit. Was ist ein Konto? Was ist eine SID? Was ist ein Windows Token? Weiterhin wird gezeigt, wie sich diese grundlegenden Windows Einrichtungen über Managed Code anprogrammieren lassen. link]. link]. link]. und noch ein kleines Interview. link]. Viel Spaß ;). www.leastprivilege.com - Wednesday, April 6, 2011 - BASTA!
Thinktecture ist dieses Mal vollständig vertreten und Christian, Jörg und ich haben ne nagelneue Demo-Anwendung, die wir am Freitag im Workshop zum ersten Mal öffentlich zeigen werden…spannend…. Wir freuen uns alle schon riesig auf die BASTA! nächste Woche in Mainz. Thinktecture Timetable: [link]. www.leastprivilege.com - Friday, September 17, 2010 - STS? Available!
You can find the source code on Codeplex and a demo website here. In my Post STS? Coming Soon! linked to information about the upcoming framework for writing STSes (and more) from Microsoft. Unfortunately this is not yet available. Along with Barry and David I am very happy to announce SharpSTS - a C# library for developing Information Card security token services. Don't expect a "click setup.exe and everything is fine" installation experience. There is still a lot of work to do. But you can get the complete source code along with installation instructions to play around. Have fun! www.leastprivilege.com - Monday, March 10, 2008 - LINQ to SQL and Security
I don't know how many SQL injection demos I did in my life - and it is still surprising (or shocking rather) how many people don't know about this. It is even more surprising how many people fight for their string concat ad hoc queries and come up with all kind of dodgy excuses why it makes sense to use them. What is wrong with SQL parameters? ;). Recently I played around with LINQ to SQL and think it is a compelling (and time saving) way to do database interactions. Consider this query: var products = from p in context.products. where p.description.StartsWith(_txtSearch.Text). stock]. www.leastprivilege.com - Friday, March 21, 2008 - Software Architect 2008
Most of the demos are online anyways - have a look at my IdentityModel micro-site. Thanks to everyone who attended my IdentityModel talk at Software Architect. You can have all the code I showed you during my talk - just send me a private message or leave a comment. Questions and feedback are more than welcome. Happy identity-ing. www.leastprivilege.com - Friday, June 6, 2008 - UserName Supporting Token & WCF revisited (this time with Geneva)
handlers.AddOrReplace( new SupportingUserNameSecurityTokenHandler ()); // add the issuer name registry (simple for demo purposes). A while back I wrote about UserName supporting tokens in WCF and how they can be handy to create light-weight “delegation” scenarios for middle-tiers. wanted to give the same scenario a try with a Geneva enabled relying party. First of all – there are no basic configuration changes necessary (specifically the SecurityBindingElement – refer to my original post for details). This involves: Specifying an issuer registry for the client’s certificate. Binding =. www.leastprivilege.com - Wednesday, November 26, 2008 %>
149 Articles match "Demo"
See all articles with
"Demo"
| The Latest from DevelopMentor | MORE | | Filtering the data in an #AngularJS ngRepeat element 1: 2: 3: 4: AngularJS Demo. 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element Showing a list of items like in the previous post is nice but if the list is large most users appreciate the possibility to search in it. Turns out that AngularJS has that already build in so it is really simple to do. We are using exactly the same controller as before, all it contains is a list of people. 1: function DemoCtrl($scope) {. 14: ]; 15: }. The Problem Solver - Monday, May 13, 2013 Using repeating elements in #AngularJS The markup to generate the list in the screenshot is also real simple: 1: 2: 3: 4: AngularJS Demo. 1: 2: 3: 4: AngularJS Demo. 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in #AngularJS In the previous posts I showed how to get started with AngularJS and use some of the basic AngularJS directives to data bind. In these examples I uses a really simple single element to bind to. However in lots of business cases you really need to display a list of repeating elements. 14: ]; 15: }. The Problem Solver - Friday, May 10, 2013 The #AngularJS $scope is not the MVC Model The corrected view is now: 1: 2: 3: 4: AngularJS Demo. 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous post I showed how to create and use an MVC Controller in AngularJS to manage the logic of an application. In this post I showed how to use the $scope variable that is passed into the Controller to share data between the Controller and the View. This may lead you to believe that the $scope is the MVC Model used but you would be completely wrong. Now that sounds awfully like a model but it isn’t. 13: *. The Problem Solver - Monday, April 15, 2013 | -
| The Best from DevelopMentor | MORE | - HTML5 slides and demo code
Below is are the links to the slides and demo code from my HTML 5 presentation I did yesterday evening at the DotNed user group meeting hosted by 4DotNet in Meppel. Slides (Dutch language) Code The slides are also on SlideShare here. HTML5 (Dutch) View more presentations from Maurice Beijer Enjoy! www.TheProblemSolver.nl www.dotnetevents.nl.NET ASP.NET Futures DotNed dotnetmag HTML5 The Problem Solver - Friday, October 28, 2011 - HTML5 Presentatie slides en demo
De PowerPoint slides en de demo code van mijn HTML5 presentatie van gisteravond zijn nu beschikbaar. Voor de liefhebbers ook online via SlideShare. HTML5 Overview View more presentations from Maurice Beijer Met dank aan 4DotNet die de sponsor was van deze bijeenkomst. Enjoy! TheProblemSolver DotNetEvents. DotNed dotnetmag HTML5 Modernizr WebSockets WebWorkers ChromeFrame Video The Problem Solver - Friday, January 6, 2012 - How to build a Development/Test/Demo CA
They usually expire on the very day where you have to do an important demo. I often need X509 certificates - but I never really became friendly with makecert. So I ended up running Windows Cerificate Services which proved to be an easy to use, robust solution. You can have one at home or carry it around in a VM. Perfect. There are some gotchas you can run into and I refined my configuration over the years. just had to rebuild my Test CA (on Hyper-V) so I thought I'll document the important steps (for self-reference and whoever might be interested). Basic Installation. Backup the CA cert. www.leastprivilege.com - Thursday, August 14, 2008 - Demos from TechEd EMEA
The demos from DEV 326 – my talk on WCF 4.5 at TechEd EMEA are available here. The session was also recorded and the video is now on Channel9 here.NET;WCF DevelopMentor Courses - Monday, July 2, 2012 - Slides and demos from DevWeek 2013
Watch this space for the demo code as well. I had a great time discussing these topics with everyone at DevWeek 2013. Thanks to all who attended my sessions. Here are the slides: Getting Serious About The Cloud For Developers. 18 Ways Your Brand-New MVC Web Application Can Be Better. Building Rich Forms in ASP.NET MVC. Applied NoSQL in.NET. won’t be able to upload them until I get better internet access back in the US (couple of days). Cheers, @mkennedy. Speaking.NET ASP.NET Cloud Conferences DevelopMentor jQuery LearningLine tips web %>
| | |