No Picture
Automations

XML in Navision

In Navision there are 2 ways to handle XMLs. In all versions it is possible to use the automation Microsoft XML and from Navision 4 it is possible to use XML ports. XML ports are […]

No Picture
Development

XML Schemas & DTDs

XML are validated with a DTD or with an XML Schema. Document Type Definition (DTD) defines the legal elements of an XML Document. <!DOCTYPE note SYSTEM “external.dtd”> <root> XML Schema is an XML-based alternativ to […]

No Picture
Development

XML Rules

Following rules must be applied when working with XML: Single, unique root element Matching open/close tags Consistent capitalisation Correctly nested elements (no overlapping elements) Attribute values enclosed in quotes No repeating attributes in an element

No Picture
Development

XML syntax

XML documents must contain a root element. All other elements must be nested within the root element. All elements can have sub (children) elements. Elements with sub elements are also called Nodes.

No Picture
Development

What is XML?

XML stands for eXtensible Markup Language XML is a markup language like HTML XML provides a uniform method for describing and exchanging structured data Describes structure and semantics, not formatting XML focuses on providing information […]