ASP.NET - What is ObjRef object in remoting?

What is ObjRef object in remoting?

- The ObjRef is a serializable object returned by Marshal().
- The ObjeRef knows about location of the remote object, host name, port number, and object name.
- This is serializable because it implements the interface 'Iserializable' and can be marshaled by value.
- It stores all relevant information required to generate a proxy in order to communicate with a remote object.
ASP.NET - Explain the steps of acquiring a proxy object in web services.
Steps of acquiring a proxy object in web services - Client communicates to UDI node to retrieve a list of available web services...
ASP.NET - Explain the steps to create a web services and consume it.
Steps to create and consume a webservice - create a new website by selecting ASP.NET Web Site and giving it a suitable name...
Difference between cache object and application object - ASP.NET
Difference between cache object and application object - Application variable/object stores an Object with a scope of availability...
Post your comment