Posted by igormoochnick on 10/25/2009
On the recent project we’ve put in place a messaging platform. Apparently my engineers had a vague understanding what that is. To save you the same trouble I’ve gathered a bunch of interesting resources that can help you get up to date:
Open source Service Bus implementations
nServiceBus
MassTransit
WCF (misc)
Posted in Messaging, REST, Service Bus, WCF | Leave a Comment »
Posted by igormoochnick on 08/18/2009
Check out this great article about how the DinnerNow.net application was ported to Windows Azure – Article.
Don’t forget to listen to the DotNetRocks #471 podcast about this whole process.
Posted in Azure, Tutorials | Leave a Comment »
Posted by igormoochnick on 07/27/2009
Many times I’ve been asked to provide a set of Web Services interfaces where both JSON and XML clients can communicate with the server. Primarily it’s done for a set of reasons:
- XML is very convenient to use for inter-service communication.
- JSON is great for AJAX (web) clients. It’s perfect for GWT too.
In the recent project we’ve been using XStream for all serialization aspects and, since it can serialize both to XML and JSON, it was plugged into Jersey as a provider too. Following you can see XML and JSON providers implemented using XStream library.
XML Provider (annotated to be a default provider, it’ll be used if no Content-Type or Accept headers provided):
Read the rest of this entry »
Posted in GWT, JSON, Java, Jersey, REST, Tutorials, XML, XStream | 1 Comment »