Asp.net Remote objects:
Any object outside the application domain of the caller application should be considered remote
Remote objects are accessed through Channels ,two existing channels TcpChannel and HttpChannel
Types of .Net remotable objects
Any object outside the application domain of the caller application should be considered remote
Remote objects are accessed through Channels ,two existing channels TcpChannel and HttpChannel
Types of .Net remotable objects
- Single Call=Single Call objects service one and only one request coming in.
- Single Call objects are usually not required to store state information.
- Singleton Objects =Singleton objects are those objects that service multiple clients, and hence share data by storing state information between client invocations
- Client Activated Objects are server-side objects that are activated upon request from
client . When the client submits a request for a server object using a "new" operator, an activation request message is sent to the remote application. The server then creates an instance of the requested class, and returns an ObjRef back to the client application that invoked it
No comments:
Post a Comment