Monday, March 12, 2012

Web Services vs .NET Remoting over HTTP with SOAP

What are the differences between using web services and using .NET
remoting with http transport and soap encoding ?
When dealing with .net to .net communications, particular when the
same company is responsible for both sides of the app (client and
server), what are advantages/divantages of each?
Thanks,
Sam
----
We're hiring! B-Line Medical is sing .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.One advantage of web services is dynamic discovery.
"Samuel R. Neff" <samuelneff@.nomail.com> wrote in message
news:obs373pskiu1mvmtjs7jcnm6m0jml1qp3n@.
4ax.com...
> What are the differences between using web services and using .NET
> remoting with http transport and soap encoding ?
> When dealing with .net to .net communications, particular when the
> same company is responsible for both sides of the app (client and
> server), what are advantages/divantages of each?
> Thanks,
> Sam
> ----
> We're hiring! B-Line Medical is sing .NET
> Developers for exciting positions in medical product
> development in MD/DC. Work with a variety of technologies
> in a relaxed team environment. See ads on Dice.com.
>
"Samuel R. Neff" <samuelneff@.nomail.com> wrote in message
news:obs373pskiu1mvmtjs7jcnm6m0jml1qp3n@.
4ax.com...
> What are the differences between using web services and using .NET
> remoting with http transport and soap encoding ?
> When dealing with .net to .net communications, particular when the
> same company is responsible for both sides of the app (client and
> server), what are advantages/divantages of each?
Web services are meant to be platform-neutral. That means least common
denominator.
With .NET remoting, you can use .NET-specific features like properties,
indexers, and even non-default constructors.
--
John Saunders [MVP]

0 comments:

Post a Comment