RE: Business Logic Service

2012-03-20 Thread ifumust
I'm pretty sure there is an open source biz logic engine...i was once looking for this type of functionality...biztalk does this but pretty expensive and maybe a over-kill. -Original Message- From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Rob

Re: Business Logic Service

2012-03-20 Thread Michael Minutillo
Do it with JSON/XML over HTTP. Most client platforms will have support for this. If you're starting from scratch I'd start with the new ASP.NET WebAPI http://www.asp.net/web-api I've also heard very good things about http://www.servicestack.net/ Don't go the SOAP route unless you really have

Re: Business Logic Service

2012-03-20 Thread DotNet Dude
On Tue, Dec 6, 2011 at 4:44 AM, David Kean david.k...@microsoft.com wrote: Using SOAP (default protocol for Web Services) can be hard to consume by other languages when its produced by .NET (and in general its hard unless you have tools to help you generate code). REST seems to be the way

RE: Business Logic Service

2011-12-05 Thread David Kean
Using SOAP (default protocol for Web Services) can be hard to consume by other languages when its produced by .NET (and in general its hard unless you have tools to help you generate code). REST seems to be the way to go these days, WCF supports it: