|
|
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.
|
63 Articles match "Service","Web"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. How can I create and consume data from the Internet cloud using REST-ful data services? Entity Framework Object Services Although LINQ makes it easier to leverage the ORM capabilities of the framework, underneath the covers the object services layer will do the heavy lifting, both to materialize entities based on queries and to save entity changes. In this course, you learn to: Leverage new features of C# 3.0, Appendices ASP.NET 3.5
DevelopMentor Courses
- Friday, June 12, 2009
Securing J2EE Web Applications
Throughout the course, students learn the best practices for designing, implementing, and deploying secure web services using J2EE. Students who attend Securing J2EE Web Services will leave the course armed with the skills required to recognize actual and potential software vulnerabilities, implement defenses for those vulnerabilities, and test those defenses for sufficiency. This course quickly introduces developers to the most common security vulnerabilities faced by web applications today.
DevelopMentor Courses
- Friday, June 12, 2009
NET Architecture and Design Principles: Building Distributed Applications
Think in terms of layers and tiers Use patterns in your code and across the enterprise Write secure code Use concurrency to build highly available systems Make distributed calls using remoting, web services and Windows Communication Framework Utilize asynchronous communication with message queues Horizontally scale every tier of your system Deploy software across distributed systems Applications that span more than one machine require a deliberate and radically different design approach.NET Architecture and Design presents key concepts in distributed systems. Using C# 3.0's
DevelopMentor Courses
- Friday, June 12, 2009
|
71 Articles match "Service","Web"
|
The Latest from DevelopMentor
|
MORE
|
|
Moving StarterSTS to the (Azure) Cloud
The new version will have a pluggable SettingsProvider with versions for.NET configuration as well as Azure service configuration. The default implementation uses the ASP.NET web cache and can be easily extended to use products like memcached or AppFabric Caching. also include a (very) simple web page that allows working with the relying party provider data. Quite some people asked me about an Azure version of StarterSTS. While I kinda knew what I had to do to make the move, I couldn’t find the time. Until recently. Provider. So I only had to provide new implementations.
www.leastprivilege.com
- Wednesday, August 11, 2010
Thinktecture.IdentityModel: WIF Support for WCF REST Services and OData
The latest drop of Thinktecture.IdentityModel includes plumbing and support for WIF, claims and tokens for WCF REST services and Data Server (aka OData). Features include: generic plumbing for all WebServiceHost derived WCF services. This sample is also included in the codeplex download along a similar sample for plain WCF REST services. Setting up the Data Service. To prove the point I have created a simple WCF Data Service that renders the claims of the current client as an OData set. Calling the Service. support for SAML and SWT tokens. Claims. {.
www.leastprivilege.com
- Wednesday, May 5, 2010
The NoSQL Movement, LINQ, and MongoDB - Oh My!
There is a movement out in the software development world called the "No SQL" movement and it’s taking the web application world by storm. The NoSQL movement is about re-evaluating the constraints and scalability of data storage systems in the light of the way modern web applications generate and consume data. This move towards NoSQL is driven by pressure from two angles in the web application world: Easy-of-use and deployment. And if you are writing a web app, you definitely want that number to grow. Insanity!” Flat files? The converse is, of course, also true.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
RESTful Web Services with WCF Screencast
I recently got the chance to record a screencast discussing REST-oriented web services in WCF. cover building WCF services using REST princples, the WebGet and WebInvoke attributes, working with the SyndicationFeed & Rss20FeedFormatter classes, and configuration-free WCF hosting in IIS. If you're interested in WCF you should definitely check it out because WCF and REST make an awesome combination. WCF-REST-Kennedy-Peepleocity.wmv 35 MB (WMV HD). You can also download the source code of the project built in the screencast. All content copyright Michael C. Kennedy.
-
Using Information Cards in ASMX Web Services
Here's a sample walkthrough for ASMX web services. To transmit the token to the service, I will use a SOAP header. For metadata support, we can now annotate a web method with this header information: [ WebService (Namespace = "urn:leastprivilege" )]. corresponding extension attribute connects this logic with the web method: [ WebMethod ]. This gives the web service method seamless access to incoming claims. As I wrote here - an Information Card token is just a string. public class InfoCardTokenHeader : SoapHeader. {. public string Token; }.
www.leastprivilege.com
- Sunday, March 30, 2008
-
Integrating Simple Web Tokens (SWT) with WCF REST Services using WIF
The Simple Web Token (SWT) is a new & simple token format that was created by Microsoft, Google and others. The Azure platform App Fabric Access Control service e.g. Since I had to do some ACS work recently, I crafted up a simple SWT integration for WCF based REST services (works in ASP.NET as well). See here for specs. uses this token type. Why yet another token type? The downsides are – it is not a widely adopted token format (current spec version is 0.9.5.1) and the lack of asymmetric signatures (e.g. X.509 based). Download here.
www.leastprivilege.com
- Monday, February 8, 2010
-
Paging with the Silverlight RIA services DomainDataSource
Using the declarative DomainDataSource that is part of the upcoming Silverlight 3 RIA services makes it quite easy to work with data. All you need to do is add a DomainDataSource control to the the XAML, point it to the generated DomainContext class (in this case NorthwindContext) and tell it which method to use to load the data from the web service(in this case LoadCustomers). Next add a DataGrid to display the data and you are good to go. Adding paging. Sometimes the lost of data to load can get somewhat large and you might not want to load all data. Enjoy!
The Problem Solver
- Monday, April 27, 2009
-
WCF Data Services versus WCF Soap Services
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 two bottom layers should be quite familiar to anyone who uses WCF, but the diagram could mistakenly lead you to the conclusion that the programming model section is independent of the underlying Service Model and Channel layers. and WCF Data Services 4.0 Sweet.
Tony and Zuzana's World
- Tuesday, April 13, 2010
-
Securing WCF Data Services using WIF
Since WCF Data Services is just a normal WCF service (using the web programming model), all the typical security APIs and extensibility points apply. That said, depending on your scenario you might have to be a little more creative for REST-style services. Here’s a quick walkthrough: Enabling WIF in the Data Service. The easiest way to get WIF wired up is by writing a custom service host factory. Sending a token header to the Data Service. The next step is to send a token to the Data Service. Using the Data Service.
www.leastprivilege.com
- Monday, February 15, 2010
-
Thinktecture Security Token Service Starter Kit
It is built using the Geneva framework Beta 2 bits and is a self contained web site with passive and active endpoints. The other reason is that starter STS is not terribly complex and could be used as a learning tool on how to write custom token services. Some features: active and passive security token service. role provider is used for authorization in the web front-end and to provider role claims. dynamic web UI to allow users to maintain their profile data. I am happy to announce the “Thinktecture STS Starter Kit” sample. You could e.g. tokens. FedUtil.
www.leastprivilege.com
- Monday, May 25, 2009
|
|
|