×
Menu
Index

Out tabblad(s)

 

Introduction

Per active Adapter there will be an OUT tab.
 

XML

On the XML part of the OUT tab you can inspect the output XML of your Configuration.
 
Tip!
By right-clicking the rootnode of this XML document you can expand or collapse the nodes and you can copy it to the Windows clipboard or save it as an XML document.
 

Validation

If Validate XML was ON (checked on the In tab), you can check the validation result below the XML document.
 
OUT XML (adapter <name>) is valid. 0 messages.
 
If the XML is ok. Or if it is not valid:
 
OUT XML (adapter <name>) is NOT valid. xx messages.
 
With a link to the errormessages.
 
 
Showing:
 
Using this information you can change the Configuration and make the output valid.
 
If Validate was OFF, this message will show:
 
OUT XML NOT validated.
 
 

Search

With this function you can use XPath to search the  XML document. For example:
 
//PP_BTP
 
Can show you:
 
 
The Search result screen can (like the debugger itself) remain opened. After a doubleclick on a message in the table, the XML document will open at the exact spot of the error.
 
 
Handy XPATH expressions are:
 
//PP_TTOT
 
Show all the values of PP_TTOT regardless of where they are in the document.
 
//PP[PP_MYAAND="O109"]/PP_TTOT
 
Show all the values of PP_TTOT that belong to a PP node containing a PP_MYAAND element that contains the value O109.
 
//Pakket[position()=3]/Onderdeel/PP/PP_TTOT
 
Show the PP_TTOT from the first Onderdeel/PP node in the third Pakket node.
 
For more information about XPath, see: http://www.w3schools.com/xpath