What is a formatter?
Answers were Sorted based on User's Feedback
Answer / rajeshree
A formatter is used to determine the serialization format
for objectobjects. All formatters expose an interface
called the IFormatter interface. Two formatters inherit
from the IFormatter interface and are provided as part of
the .NET framework. These are the Binary formatter and the
SOAP formatter.
The Binary Formatter
The Binary formatter provides binary encoding for compact
serialization either for storage or for socket-based
network streams. The BinaryFormatter class is generally not
appropriate when data is meant to be passed through a
firewall.
The SOAP Formatter
The SOAP formatter provides formatting that can be used to
enable objects to be serialized using the SOAP protocol.
The Soap Formatter class is primarily used for
serialization through firewalls or among diverse systems.
Other Formatters
The .NET framework also includes the abstract FORMATTERS
class that can be used as a base class for custom
formatters. This class inherits from the IFormatter
interface.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bindu sarika
Formatter is an object that encodes and serializes data
into messages at one end and decodes and deserializes
messages into data at the other end.
| Is This Answer Correct ? | 2 Yes | 2 No |
Can you have two files with the same file name in GAC?
What are the situations you will use singleton architecture in remoting ?
Explain threading types?
Can you configure a .NET Remoting object via XML file?
Difference between web services & remoting?
Explain marshalling and its types in .net remoting
What security measures exist for .NET Remoting in System.Runtime.Remoting?
Hello, I want to connect a system in LAN and i want to access that.When ever i am moving a mouse in my desktop the similar thing have to happend in the another system in which i have connected. I need coding for this in c# and .NET . any one please help me.It is very urgent to me Advance thanks. my email id:manojkumarchallagundla@gmail.com
Name the distributed systems available apart from .net remoting?
Which one is better WebService and Remoting ?
What is the difference between .Net Remoting and Web Services ?
When do we use delegates in your remoting applications?