- What is a formatter? A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other end.
- Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? Binary over TCP is the most effiecient, SOAP over HTTP is the most interoperable.
- What’s SingleCall activation mode used for? If the server object is instantiated for responding to just one single request, the request should be made in SingleCall mode.
- What’s Singleton activation mode? A single object is instantiated regardless of the number of clients accessing it. Lifetime of this object is determined by lifetime lease.
- How do you define the lease of the object? By implementing ILease interface when writing the class code.
- Can you configure a .NET Remoting object via XML file? Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config.
- How can you automatically generate interface for the remotable object in .NET with Microsoft tools? Use the Soapsuds tool.
Interview Questions .NET Remoting Set-2
Posted by
study
|
Tuesday, 7 June 2011
Popular Posts
-
Technical Interview Questions 1. Which is the best page replacement algorithm and why? 2. What is software life cycle? 3. How much time...
-
Q: What are Checked and UnChecked Exception? A: A checked exception is some subclass of Exception (or Ex...
-
Q: Is next a keyword in Java? A: No, next is not a keyword. Q: ...
-
What is software engineering, anyway? Some basic def...
-
Q: What is the difference between an Interface and an Abstract class? A: An abstract class can have inst...
-
Characters and Strings 7.1: How can I get the numeric (character set) value corresponding to a character, or vice versa? The obvious way is...
-
What is LAN? LAN is a computer network that spans a relatively small area. Most LANs are confined to a single building or group of buildin...
-
C Preprocessor 9.1: How can I use a preprocessor #if expression to tell if a machine is big-endian or little-endian? #ifdef __BIG_ENDIAN ...
0 comments:
Post a Comment