Diffgram
It is an XML format which is used to identify the current and original versions of data elements.
Generally the Dataset uses the Diffgram format to load and persist its contents, and also used to serialize its contents to transport across a network.
Here the Dataset populates the Diffgram with all necessary information to exactly reform the contents. |
The most widely used web server is the Apache HTTP Server because it is free of cost ,Microsoft IIS(Internet Information Services) is the second most widely used web server.
Apache HTTP Server:
• Apache HTTP Server was developed by Apache Software Foundation , First released in 1995 .
• Apache is also called as free open-source web server(Open source refers to a program or software in which the source code is available to the general public for use )
• it is free software by the Apache Software Foundation .
• Apache is a powerful web-server that handles more than half web sites available on the Internet.
• Apache was Originally designed for Unix servers and now also used for Windows NT .
• Apache is specifically developed to increase throughput (handling more requests in less time slot) and to decrease latency (Total time taken to handle request).
Internet Information Server:
• IIS is called Internet Information Server .It is easy to manage platform for developing and hosting Web applications and services.
• This web server is created by Microsoft specifically for use with Microsoft Windows . So it is limnited to use with Microsoft Windows .
• When local IIS web site is created,there is a default IIS folder InetPub\wwwroot , where the pages and all the folders for our site are stored.
• It is the most used web server after Apache HTTP Server , because of its security,reliability and scalability.
• IIS is not got installed by default when Windows is installed. |
NOTE: This is objective type question, Please click question title for correct answer. |
The process of establishing a Remote Proxy Server object which resides at the client side and act as if it was the server.Which in turn handles the communication between the real server object and client object. This process of monitoring is said to be Marshaling. |
we can do that using WriteXml method.
In C#
’Filling the DataSet
ds.WriteXml(Server.MapPath ("sample.xml" ) )
In VB
//Filling the DataSet
ds.WriteXml(Server.MapPath ("sample.xml" ) ); |
we can do this by using ReadXML method.
DataSet MyDataset= new DataSet ();
MyDataset.ReadXml (Server.MapPath ("sample.xml"));
MyDataGrid.DataSource =MyDataset;
MyDataGrid.DataBind(); |
NOTE: This is objective type question, Please click question title for correct answer. |
|
NOTE: This is objective type question, Please click question title for correct answer. |
One more important difference between SOAP Web services and RESTful Web services is
the REST world?s complete depends on URLs. The contents of the object can be accessed by HTTP GET and to modify the object, you then might use a POST, PUT, or DELETE.
Thanks and Regards
Akiii |
No, REST has no security features. The security feature that you can use is the existing HTTP security features like SSL. On the contrary, SOAP has a lot of security support (but its complex and confusing as there are so many options).
Thanks and Regards
Akiii |
Open Data Protocol(OData) --- OData is a web protocol for querying and updating data. This protocol allows customers to query a datasource over the HTTP protocol and get the result back in formats like JSON, plain XML or Atom, including pagination, ordering or filtering of the data.
OData is being used to expose and access information from a variety of sources including relational databases, file systems, content management systems, traditional Web sites etc.
Thanks and Regards
Akiii |
The XmlReader class is used to read XML data in a fast manner.
It is also used to read the XML data in forward-only, and non-cached manner.
To work with XmlReader class in .NET, you need to import the following namespace:
In C#:
using System.Xml;
In VB:
Imports System.Xml
|
The XmlWriter class is used to write XML to a file,or a stream, or a Textwriter object. This class works in a forward-only, non-cached manner.
You can configure the XmlWriter object up to a large extent.
With this object, you can specify the following things:
1) Such as whether to indent content or not,
2) The amount to indent,
3) What quote character to use in attribute values,
4) Whether or not namespaces are supported. |
XPath stands for XML Path.
It is a language which is used to access different parts of an XML document, such as elements and attributes. |
An XML attribute contains additional information regarding that particular element. The XML attributes use the name-value pair.
For example, the element student has an attribute called id and the value of this attribute is set to s01, as shown in the following code snippet:
<Student ID="s01">
...
</Student> |