This post demonstrates how to convert a file to InputStreamReader.
Java – Compare XML files using XMLUnit
Here, we’ll be using XMLUnit from www.xmlunit.org in a Maven project.
How to read XML Document using the XML Parser extension in PHP
With XML Parser, you use callback functions to deal with specific events such as when the start or end of an XML element is encountered. These functions are registered using API functions made available for the XML Parser extension and are triggered or executed when a specific event is encountered. Also, you can only read XML with this extension.
How to make a tab selected by default in Pimefaces
This article demonstrates how make any tab selected or activated by default.
How to Trace Program Flow using Log4j2
Do you not hate it to log method with “entry” and “exit” texts? Should you use “start” or “entry”? This article demonstrates how to use Log4j2 API to perform flow tracing without the need to provide texts.
Simple PHP SOAP Client Example
Background This article demonstrates how to create an SOAP client using PHP and consume a SOAP-based web service [wp_ad_camp_1] Hardware Environment n/a Software Environment Windows 7 Professional SP1 PHP 5.5.9 / Zend Engine v2.5.0 Find a free Web Service Online
IBM Tivoli Netcool/Portal – Basic XML Programming
IBM Tivoli Netcool/Portal – Basic XML Programming
MySQL Output Format – XML and HTML Data
MySQL Output Format
CGI with Tomcat 7
We can run CGI scripts in Tomcat. This post is about using Tomcat to run a CGI script written in PERL. Software Requirements (used for this post) Apache Tomcat 7.0.11 JDK 1.6 update 21 Perl 5.12 (ActivePerl-5.12.2.1202) Windows XP SP3
Write XML Tags using Closure in Rust – No Element End Tags
Did you miss writing out an XML element end tag in your Rust codes? There is a convenient way to avoid this in Rust using Closure.