Categories
-
Join 1,047 other subscribers
Tags
- .NET Core
- .NET Standard
- Angular
- Apple
- Architecture
- ASP.NET-CORE
- ASP.NET-MVC
- Async
- AWS
- Azure
- BDD
- C#
- CLR
- CQRS
- Dapr
- DDD
- Delegates
- DI
- Docker
- Entity Framework
- Entity Framework
- Event Driven
- Events
- Git
- Kafka
- Linux
- MEF
- Microservices
- MOQ
- MVVM
- N-Tier
- Nano Server
- Nginx
- Nin
- Ninject
- NLog
- NUGET
- OData
- OSS
- PCL
- REST
- RIA Services
- Security
- Silverlight
- SOAP
- SpecFlow
- SSL
- Tools
- Trackable Entities
- TypeScript
- Visual Studio
- VSCode
- WCF
- Web API
- WP7
- WPF
-
Recent Posts
Personal
Technical
Twitter
- Listening to @ahejlsberg never gets old. Here’s a fun stroll down memory lane from Turbo Pascal to Delphi to C# to… twitter.com/i/web/status/1… 4 months ago
- RT @davidfowl: "Blazor / C# is the target language for those without a need to know the technical details of WebAssembly" https://t.co/JYR… 5 months ago
- I would like to share that I am starting a new role as Chief Technology Architect for @Hiltigroup F&P Solutions.… twitter.com/i/web/status/1… 6 months ago
Tag Archives: REST
Remember RIA Services? Trackable Entities Can Fill the Void
Anyone remember WCF RIA Services? It was a great idea: simplify n-tier development with a combination of libraries and tooling. Take something which is inherently difficult, namely data-centric web services consumed by rich clients, and make it easier. Provide a … Continue reading
More Fun with Async ASP.NET Web API Services
My last post made the case for building async services in .NET 4.5 with the Task-based Asynchronous Pattern, or TAP for short. I profiled an ASP.NET Web API service that uses synchronous methods, showing how long-running services with high throughput … Continue reading
Build Async Services with ASP.NET Web API and Entity Framework 6
If you are building web services that interact with a database, chances are they are not written in a scalable fashion. Web services based either on WCF, which supports both SOAP and REST, or on ASP.NET Web API, which exclusively … Continue reading
Building Scalable and Secure WCF Services
The key to building scalable WCF services is to eliminate binding configurations that could result in server affinity. For this reason you should avoid bindings that establish a session with the service, such as NetTcpBinding or WsHttpBinding with secure conversation … Continue reading
Simple WCF SOAP-REST Multi-Project Template
Download the source code for this post. I did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. My other REST and SOAP templates are intended as … Continue reading
WCF SOAP and REST Multi-Project Visual Studio Templates
Download the code for this post. Last year I published a REST Multi-Project Visual Studio Template on the Visual Studio Extensions Gallery, available for download from the Tools-Manage Extensions menu from within Visual Studio 2010. What I like about this … Continue reading
Secure Self-Hosted WCF REST Services with a Custom UserNamePasswordValidator
Download the code for this blog post here. When securing WCF services you’re faced with a choice: Message versus Transport security. Unless you need to conceal messages from an intermediary, your best bet is to stick with transport security and … Continue reading
OData, Where Art Thou?
Gave a talk last night to the Dallas .NET Developer Group on OData and WCF Data Services. I’ll update this post with some info on the topic, but in the meantime you can download the slides and code for the … Continue reading