Whats is the difference between remoting and webservices

Showing Answers 1 - 3 of 3 Answers

Prashanth

  • Sep 6th, 2006
 

Remoting is used for Tight coupled and webservice for disconnected , loosely coupled .

  Was this answer useful?  Yes

Satyendra

  • Sep 18th, 2006
 

what difference b/w cache object and session object

  Was this answer useful?  Yes

brahm

  • Nov 4th, 2008
 


  • ASP.NET based Web services can only be accessed over HTTP. .NET Remoting
    can be used across any protocol.

  • Web services work in a stateless environment where each request results in a
    new object created to service the request. .NET Remoting supports state
    management options and can correlate multiple calls from the same client and
    support callbacks.

  • Web services serialize objects through XML contained in the SOAP messages and
    can thus only handle items that can be fully expressed in XML. .NET Remoting
    relies on the existence of the common language runtime assemblies that contain
    information about data types. This limits the information that must be passed
    about an object and allows objects to be passed by value or by reference.

  • Web services support interoperability across platforms and are good for
    heterogeneous environments. .NET Remoting requires the clients be built using
    .NET, or another framework that supports .NET Remoting, which means a
    homogeneous environment.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions