XML – Syntax

  • Post author:
  • Post category:XML
  • Post comments:0 Comments

In this chapter, we will discuss the simple syntax rules to write an XML document. Following is a complete XML document − <?xml version = "1.0"?> <contact-info> <name>Dinesh choudhary</name> <company>adgob.in</company>…

Continue ReadingXML – Syntax

XML – Overview

  • Post author:
  • Post category:XML
  • Post comments:2 Comments

XML stands for Extensible Markup Language and is a text-based markup language derived from Standard Generalized Markup Language (SGML). This tutorial will teach you the basics of XML. The tutorial is divided into…

Continue ReadingXML – Overview

XML – Elements

  • Post author:
  • Post category:XML
  • Post comments:2 Comments

XML elements can be defined as building blocks of an XML. Elements can behave as containers to hold text, elements, attributes, media objects or all of these. Each XML document contains…

Continue ReadingXML – Elements

SOAP – Examples

  • Post author:
  • Post category:SOAP
  • Post comments:0 Comments

In the example below, a GetQuotation request is sent to a SOAP Server over HTTP. The request has a QuotationName parameter, and a Quotation will be returned in the response. Here is the SOAP…

Continue ReadingSOAP – Examples