| |
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 "Application","Sample"
| Related DevelopMentor Courses | MORE | | Use Common Instance Factory to Abstract Away the Dependency Injection Container while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. This promises the architect’s nirvana of loose coupling , because the GreetingService is abstracted away from the implementation of IGreetingRepository, which allows you to switch from one persistence stack to another without affecting parts of the application which depend on it. So it was time to look at switching to another container for the application I was writing. DevelopMentor Courses - Wednesday, May 23, 2012 Concepts and Architecture of the STL An understanding of the applications and limitations of STL allocators. Participants will gain: An understanding of the architecture behind the STL, including its core components and concepts. Usage guidelines that explain how to avoid subtle STL correctness and performance traps. Format: Lecture and question/answer. There are no hands-on exercises, but participants are welcome to use their computers to experiment with the course material as it is presented. C++'s Standard Template Library (STL) is uniquely powerful and extensible, and it facilitates the creation of very efficient code. DevelopMentor Courses - Tuesday, March 1, 2011 Effective STL Programming Training An understanding of the applications and limitations of STL allocators. Associative Containers: Why comparison functions should always return false for equal values Issues involved in in-place modification of set and multiset elements Why sorted vectors can be superior to sets and maps for lookup-intensive applications. Participants will gain: Insights into the behavior of sequence, associative, contiguous-memory, and node-based containers, including new containers specified in TR1. Knowledge of techniques to use both containers and algorithms most efficiently. DevelopMentor Courses - Tuesday, March 1, 2011 |
90 Articles match "Application","Sample"
| The Latest from DevelopMentor | MORE | | Understanding Text Encoding in ASP.NET MVC (ASP.NET MVC Foundations Series) In order to demonstrate these concepts, I created a working sample app here: [link]. You can download the code from the sample as well. Three ways to encode or avoid encoding HTML data in ASP.NET MVC applications. This article covers the various ways in which you might handle text encoding in ASP.NET MVC. For example, if you were writing a forum web app, you should absolutely be paranoid about what your users are typing into your site. You need to be very careful about how you redisplay their input. On the other hand, they may write: <script src=”[link]. data). Michael C. Kennedy's Weblog - Monday, October 15, 2012 Download My Web Apps Have HotKeys Too Sample App To encourage more developers to add hotkeys to their web applications, I created a jQuery plugin called jQuery.hotKeyMap.js and a sample application. I recently blogged about how web apps have hotkeys too. just added a download link for the source code: WebAppsHaveHotKeysTooSample-MichaelKennedy-v1.zip. It’s an ASP.NET MVC 3 web app. Hope you find it useful! Cheers, @mkennedy. Filed under: jQuery Tagged: NET , ASP.NET , MVC , Open Source , Plugins , web. jQuery.NET ASP.NET MVC Open Source Plugins web Michael C. Kennedy's Weblog - Thursday, August 30, 2012 Decouple WCF Services from their DI Container with Common Instance Factory In my last blog post I introduced the Common Instance Factory , which I built as an alternative to Common Service Locator to reduce coupling between an application and a Dependency Injection (DI) container. If you are careful to register your types early in the startup of your application and avoid referencing the DI container from within your types (which is where the service location ant-pattern rears its ugly head), then selecting a DI container and sticking with it might be perfectly appropriate. null ) { disposable.Dispose(); } } } } }. Enjoy. Technical DI WCF DevelopMentor Courses - Saturday, May 26, 2012 | -
| The Best from DevelopMentor | MORE | - Access Control Service: Walkthrough Videos of Web Application, SOAP, REST and Silverlight Integration
Over the weekend I worked a little more on my ACS2 sample. This video does a quick walkthrough of the solution and shows the web application part. The sample app also exposes a WCF SOAP service. The Silverlight Client shows ho to sign in to the application using a registered identity provider (including web identities) and using the resulting SWT token to call our REST service. This is designed to be a desktop (OOB) client application (thanks to Jörg for the UI magic). Have fun ;). Part 1 – Overview. watch. Part 2 – SOAP Service and Client. watch. watch. www.leastprivilege.com - Tuesday, May 24, 2011 - Access Control Service v2: Registering Web Identities in your Applications [code]
The relevant parts in the sample are: Configuration. This kicks automatically in, whenever authorization fails in the application (e.g. Registered users will have claims that come from the application domain, the claims of unregistered users come directly from ACS and get passed through. This effectively replaces the ACS claims with application defined claims without requiring the user to re-signin. All pages that should be only reachable by registered users check for a special application defined claim that only registered users have. Claims.Add(. www.leastprivilege.com - Saturday, May 21, 2011 - Access Control Service v2: Registering Web Identities in your Applications [concepts]
also see two different “mind sets” when it comes to application design using the above identity types: Enterprise identities – often the fact that a client can present a token from a trusted identity provider means he is a legitimate user of the application. Web identities – the fact that a user can authenticate with Google et al does not necessarily mean he is a legitimate (or registered) user of an application. Many people use the IsAuthenticated property on IIdentity to make security decisions in their applications (or deny user=”?” in ASP.NET terms). Guilty ;). www.leastprivilege.com - Saturday, May 21, 2011 - Download My Web Apps Have HotKeys Too Sample App
To encourage more developers to add hotkeys to their web applications, I created a jQuery plugin called jQuery.hotKeyMap.js and a sample application. I recently blogged about how web apps have hotkeys too. just added a download link for the source code: WebAppsHaveHotKeysTooSample-MichaelKennedy-v1.zip. It’s an ASP.NET MVC 3 web app. Hope you find it useful! Cheers, @mkennedy. Filed under: jQuery Tagged: NET , ASP.NET , MVC , Open Source , Plugins , web. jQuery.NET ASP.NET MVC Open Source Plugins web Michael C. Kennedy's Weblog - Thursday, August 30, 2012 - Turbo charge your applications with AppFabric caching
Below are links to the PowerPoint sheets and the sample I used for my webinar yesterday evening. PowerPoint Sample Enjoy! The session itself was recorded and will be available soon, link to follow. www.TheProblemSolver.nl www.dotnetevents.nl.NET WCF webcast ASP.NET VS2010 AppFabric Azure The Problem Solver - Friday, February 25, 2011 - Simple MVVM Toolkit Improvements: Documentation, Features, Sample Apps
I’ve released a new version of my Simple MVVM Toolkit for Silverlight that has improved documentation, a bunch of new features and additional sample applications. And many of those other toolkits are woefully lacking in the way of documentation and code samples. My toolkit is also targeted to Silverlight applications (although I plan to add Windows Phone support shortly), because Microsoft has positioned Silverlight as it primary platform for business application development. Sample applications with step-by-step instructions. Tony and Zuzana's World - Sunday, January 23, 2011 - Building rich HTML 5 clients using REST services
You can download the slide from my session on Building rich HTML 5 clients using REST services here and the sample application using the WCF Web API here. The slides are also available on SlideShare. Enjoy! www.TheProblemSolver.nl www.dotnetevents.nl.NET WCF webcast ASP.NET REST dotnetmag HTML5 The Problem Solver - Wednesday, October 26, 2011 %>
| | |