Compare Remoting and Webservice

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sekarm
    New Member
    • Mar 2007
    • 26

    Compare Remoting and Webservice

    Dear All,
    what is the difference between Remoting and webservice.want a difference based on concept oriented.

    Thanks & Regards,
    Sekar
  • dip_developer
    Recognized Expert Contributor
    • Aug 2006
    • 648

    #2
    Originally posted by sekarm
    Dear All,
    what is the difference between Remoting and webservice.want a difference based on concept oriented.

    Thanks & Regards,
    Sekar

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

    2.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.

    3.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.

    4.Web services support interoperabilit y 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.

    Comment

    • bharathreddy
      New Member
      • Aug 2006
      • 116

      #3
      Pls go through this web site..

      http://www.developer.c om/net/net/article.php/2201701


      Thanks & Regs
      Bharath Reddy VasiReddy
      eXensys

      Comment

      • alex22
        New Member
        • Oct 2007
        • 3

        #4
        there is another alternative
        www.dotnetremot ing.com
        fast bidirectional remoting

        Comment

        Working...