Latest answer: System.Runtime.Serialization namespace provides
Serialization in .NET.
The IFormatter interface in the namespace contains Serialize and De-serialize
methods that save and load data of a stream..................
Read answer
Latest answer: An object is stored in a file, a database or
even in the memory. However, data to be transferred over a network needs to be
in a linear form for which serialization and deserialization are
used..................
Read
answer
Latest answer: public static void SerializeBinary( object o,
string file_name)
{
using (FileStream fs = new FileStream(file_name, FileMode.Create))
{.................
Read
answer
Latest answer: CUSTOM SERIALIZATION implementation
public class A: ISerializable.................
Read
answer
Latest answer: SoapFormatter : SOAP formatter will
actually take the field values of an object and store all of that information
in the stream passed..................
Read answer
Latest answer: The first call to a Web Service takes long
because XmlSerializer generate an assembly optimized for each type in
memory..................
Read
answer
More Related Links
Java
web services interview questions
Explain each web service technologies - SOAP, WSDL, UDDI, eBXML and JAX pack.
Explain the technologies included within JAX pack, i.e. JAXP, JAXB, JAXM,
JAX-RPC, JAXR..........
SOAP
interview questions
What is SOAP? What is SOAP? Explain its purpose. Give examples where SOAP is
used. What are Transport methods in SOAP? Explain the role of XML in
SOAP..........
Net web
service
What is .Net Web Service? What is SOAP? What is WSDL? What is UDDI? Why do we
need Web Services? Explain in brief different distributed technologies. Web
services vs. CORBA and DCOM. Advantages of Web Services.................
What is XML Web Server? | Describe the Components that help locate and consume
XML Web Service. | Describe the process of communication between Client and Web
Service. | What are the components published while deploying of Web Service? |
Describe .disco file. | Describe the step to be followed to access web service
by client..........
Define .Net Assembly.
What does an assembly contain?
Define a private assembly and a shared assembly.
What are Satellite Assemblies?
What do you understand by side-by-site execution of assembly?
How do you create a resource-only assembly?
With AJAX, only the necessary data is transferred back and forth between the
client and the web server. This minimizes the network utilization and
processing on the client........
|