| |
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.
|
37 Articles match "How To","XML"
| Related DevelopMentor Courses | MORE | | Roll Your Own REST-ful WCF Router Recently I’ve been tasked with building a WCF routing service and faced the choice of whether to go with the built-in router that ships with WCF 4.0 , or to build one from scratch. Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. You can also achieve a more compact data representation with plain old XML (POX) or Javascript Object Notation (JSON), which could result in greater throughput. Download the code for this post here. Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 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 Essential Windows Communication Foundation 4 Training Discover the fundamental tasks of designing and building services & contracts, master error handling, serialization, instance and concurrency management and bend hosting, security, identity management, and reliability to suit your needs. You'll get answers to these questions: How do I design services using contracts? How can I model services in a pure Web style? What's the best way to host and expose services? How do I secure services-based applications? Day 1 Service-based Applications WCF encourages you to write service-based applications. DevelopMentor Courses - Tuesday, March 1, 2011 |
32 Articles match "How To","XML"
| The Latest from DevelopMentor | MORE | | Roll Your Own REST-ful WCF Router Recently I’ve been tasked with building a WCF routing service and faced the choice of whether to go with the built-in router that ships with WCF 4.0 , or to build one from scratch. Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. You can also achieve a more compact data representation with plain old XML (POX) or Javascript Object Notation (JSON), which could result in greater throughput. Download the code for this post here. Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 Client side support with the ASP.NET Web API As long as you can send HTTP GET requests you are good to go and there are very few programming stacks that don’t allow for some form of doing that. Of course just doing an HTTP GET is going to give you some data back and you still have to understand that data but that is an application specific issue. In order to make life even easier the ASP.NET Web API adds some client support in the form of the HttpClient class. 3: var baseUrl = @"[link] ; 4: var xml = XElement.Load(baseUrl); 5: 6: foreach (var product in xml.Descendants( "Product" )). The Problem Solver - Tuesday, March 13, 2012 Client side support with the ASP.NET Web API As long as you can send HTTP GET requests you are good to go and there are very few programming stacks that don’t allow for some form of doing that. Of course just doing an HTTP GET is going to give you some data back and you still have to understand that data but that is an application specific issue. In order to make life even easier the ASP.NET Web API adds some client support in the form of the HttpClient class. 3: var baseUrl = @"[link] ; 4: var xml = XElement.Load(baseUrl); 5: 6: foreach (var product in xml.Descendants( "Product" )). The Problem Solver - Tuesday, March 13, 2012 | -
| The Best from DevelopMentor | MORE | - This Thursday in Bangor, ME: The Dueling BAND Joes - jQuery and SQL XML
I won’t be able to make it, but just to remind everyone else :-). As developers Jeff is somewhat conservative and well thought out in his approach, while Greg tends to "wing it" and doesn't enjoy having to write test plans and documentation. However, instead of their differences making it impossible for them to work together, they see how they provide ideas and tools to each other. They are excited to bring their minds together and show how differences can work in your favor for really neat solutions. The Blomsma Code - Wednesday, October 28, 2009 - Using the WCF Web API in an ASP.NET MVC application
Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. So in this blog post I am going to show how to do the normal thing I Created an ASP.NET MVC 3 app to host the REST service. Just like in this post we can add a reference to the WCF Web API to our project. if (_repo != The Problem Solver - Monday, June 13, 2011 - Commands versus Event Triggers in MVVM
Recently I’ve received some questions from the Simple MVVM Toolkit’s discussion forum on when to use commands versus Blend-style event triggers. For several reasons I tend to favor event triggers over commands in most scenarios, especially for Silverlight applications. ICommand exposes a CanExecuteChanged event which when fired causes a binding to check the CanExecute property. You can easily achieve the same result as CanExecute simply by binding the IsEnabled property of a control to a boolean property on the ViewModel. Enjoy, Tony. Technical MVVM Silverlight Tony and Zuzana's World - Friday, July 22, 2011 - WPF Data Providers
It ships with two out of the box: ObjectDataProvider: allows you to execute binding expressions against an object and it's methods. XmlDataProvider: loads an XML data source and makes it available as a binding source. side note here is that you could write your own custom data provider if you needed to, although if the data is exposed through a.NET object, then the ObjectDataProvider is probably sufficient. However, this is the 21st century and so we want to avoid coding as much as we can and utilize the underlying framework support instead! State, Age, Income. Mark's Blog of Random Thoughts - Wednesday, January 17, 2007 - 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 - On building Restful services
I recently did a few blog posts showing the basics of how to get started with the WCF Web API but before I continue I think it is best to start with the why instead of how. This subject is a bit long for a single blog post so I am going to do a number explaining what REST is, the difference with SOAP and how to build these Restful services using the WCF Web API. lot of people will be familiar with writing SOAP style services but not everyone is quite as familiar with the REST approach so I guess that takes a bit of explanation. Enjoy! The Problem Solver - Tuesday, June 21, 2011 - Roll Your Own REST-ful WCF Router
Recently I’ve been tasked with building a WCF routing service and faced the choice of whether to go with the built-in router that ships with WCF 4.0 , or to build one from scratch. Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. You can also achieve a more compact data representation with plain old XML (POX) or Javascript Object Notation (JSON), which could result in greater throughput. Download the code for this post here. Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 %>
| | |