| |
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.
|
25 Articles match "How To","Infrastructure"
| Related DevelopMentor Courses | MORE | | Service-Orientation Today and Tomorrow Training In Deutsch , klicken Sie hier Based on the ranges of topics below, you will be able to take the first steps in the world of Service-Orientation and Cloud Computing with confidence and above all be prepared for future projects: Service-Orientation Cloud and Cloud Computing Identity Management and Claims-Based Identity Windows Communication Foundation (WCF) Windows Workflow Foundation (WF) Azure Services Platform (with Windows Azure and.NET Services) In Deutsch , klicken Sie hier Are you tired of constantly reading about "crisis" and "restrictions"? We have the course for you! DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (UK) Training Write modern web applications that are simpler to unit test with ASP.NET MVC. Use data binding to create rich data driven Silverlight applications Use powerful new security models with Windows Identity Foundation Debug.NET application beyond using Visual Studio breakpoints Come and learn to build robust.NET applications! Learn to write code using new.NET class libraries like PFx. You'll get answers to these questions: What's new in C# 4.0? How do I develop network services with Windows Communication Foundation? Leverage new features of C# 4.0, couldn't? DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (US) Training EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. LINQ : Use LINQ to access objects, XML, and SQL relational data MVC : Learn the how build modern web applications using ASP.NET MVC 3.0 DI/IoC : Use powerful OO design patterns and techniques to build loosely-coupled, testable, and maintainable applications including Dependency Injection (DI), Inversion of Control (IoC), and unit testing. oData : Expose your SQL data sources to rich clients and RIA web applications using WCF Data Services and oData. DevelopMentor Courses - Tuesday, March 1, 2011 |
23 Articles match "How To","Infrastructure"
| The Latest from DevelopMentor | MORE | | A Roundup of MongoDB Management Tools Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. There are many different options to choose depending on your platform and use-cases. Key features : Complete (albeit command-line only) access to MongoDB. So you should take the time to learn it properly. Especially since you’ll need to know most of the features to take advantage of Robomongo above anyway. SQL Server Management Studio ). Michael C. Kennedy's Weblog - Monday, April 22, 2013 Token based Authentication for WCF HTTP/REST Services: Authentication This post shows some of the implementation techniques for adding token and claims based security to HTTP/REST services written with WCF. The framework I am using/building here is not the only possible approach to tackle the problem. Based on customer feedback and requirements the code has gone through several iterations to a point where we think it is ready to handle most of the situations. The framework should be able to handle typical scenarios like username/password based authentication, as well as token based authentication. Disclaimer. Error handling. www.leastprivilege.com - Tuesday, November 15, 2011 Token based Authentication and Claims for Restful Services While there is limited support for WCF WebServiceHost based services (for standard credential types like Windows and Basic), there is no ready to use plumbing for RESTful services that do authentication based on tokens. So it didn’t make sense to bake that into the core feature set of WIF. Here’s how. Instead standard HTTP means are used to transmit credentials and SSL is used to secure the transport and data in transit. HTTP also includes a way to advertise the right credential type back to the client, for this the WWW-Authenticate response header is used. www.leastprivilege.com - Tuesday, November 15, 2011 | -
| The Best from DevelopMentor | MORE | - Building Windows Machines in Amazon EC2
In this article I’m going to give you a simple, step-by-step overview of how to create a Windows 2008 server image in Amazon’s Elastic Cloud Compute (EC2) infrastructure. Now I must admit I’d rather have found a good tutorial on The Internets or … Continue reading → Cloud EC2 Michael C. Kennedy's Weblog - Saturday, January 30, 2010 - Peeling Back the Onion Architecture
MVC (which stands for Model-View-Controller) lends itself to an Agile development methodology where TDD and BDD (Test-Driven and Behavior-Driven Development) are important components. This is a concept known as separation of concerns ( SoC ), which, in addition to testability, provides other benefits, such as greater application longevity and maintainability. The life of an application is extended because loose coupling makes it easer to upgrade or replace components without affecting other parts of the system. To< ProductRepository >().WithConstructorArgument( Tony and Zuzana's World - Saturday, October 8, 2011 - Token based Authentication and Claims for Restful Services
While there is limited support for WCF WebServiceHost based services (for standard credential types like Windows and Basic), there is no ready to use plumbing for RESTful services that do authentication based on tokens. So it didn’t make sense to bake that into the core feature set of WIF. Here’s how. Instead standard HTTP means are used to transmit credentials and SSL is used to secure the transport and data in transit. HTTP also includes a way to advertise the right credential type back to the client, for this the WWW-Authenticate response header is used. www.leastprivilege.com - Tuesday, November 15, 2011 - Global Error Handling in ASP.NET MVC 3 with Ninject
In my last blog post I explained how to decouple infrastructure concerns, such as logging, from the rest of your application using a Dependency Injection container, such as Ninject. In this post I will show you how to implement centralized error handling in an ASP.NET MVC 3 application, so that you can handle exceptions in one place, where you can perform logging as well as display a custom error page. One of the worst things you can do to handle errors is place a try / catch block in every action of every controller. string.Empty; _view = view ?? Tony and Zuzana's World - Friday, October 21, 2011 - A Roundup of MongoDB Management Tools
Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. There are many different options to choose depending on your platform and use-cases. Key features : Complete (albeit command-line only) access to MongoDB. So you should take the time to learn it properly. Especially since you’ll need to know most of the features to take advantage of Robomongo above anyway. SQL Server Management Studio ). - WCF Data Services versus WCF Soap Services
Someone recently asked me this question: When a company that has been using 2 tiers wants to move to n-tier, what are the considerations for choosing WCF and STEs [or Trackable DTOs] vs. WCF Data Services? This is a great question because it relates to a recent re-alignment of what used to be called “ADO.NET Data Services” (code-named Astoria) under the umbrella of Windows Communication Foundation (WCF), as well as the renaming of.NET RIA Services to WCF RIA Services. The resulting XML is used to populate client-side entities, which are change-tracked. Tony and Zuzana's World - Tuesday, April 13, 2010 - Building Windows Machines in Amazon EC2
In this article I'm going to give you a simple, step-by-step overview of how to create a Windows 2008 server image in Amazon's Elastic Cloud Compute (EC2) infrastructure. Feel free to send me any I missed. Personally I just want a simpler way to create virtual machines. We'll have full admin access over remote desktop to our system to install whatever we want. I'm putting Visual Studio 2010 Beta on mine to play around with that software without 'polluting' my real system. Back to the Management Console. Here we go. Launch! Michael C. Kennedy's Weblog - Saturday, January 30, 2010 %>
| | |