Getting started > Configuration | 2005-10-04 00:11:20 v0.90 | |
Jacson, say Jackson, think J-ScanConfiguration |
Download Jacson | Sourceforge Project Summary | Jacson Home | SourceForge Home |
What is Jacson? Getting started Download instructions How to install? Configuration Configuration Basics Sample Configurations How to run it? How it works? Contact How to Contribute? Developer Information Other information |
Jacson configuration is a XML language, therefore one could think a DTD could describe legal input. This is not entirely true, since plugin classes can define their very own XML structure.
Runnable examples are the
For some explanation,
this is the file 01: <?xml version="1.0" encoding="iso-8859-1"?> 02: <!-- 03: Jacson demo. 04: Uses the Head to obtain something similar to UNIX head. 05: --> 06: <application> 07: <se:param se:name="count" se:value="2"/> 08: <jacson> 09: <filter se:this="HeadFilter" count="${count}"/> 10: <eval se:this="LoggingEvaluator"/> 11: <!-- 12: Value printing report strips away all the structur 13: from the output data. Additionally it can do a simple 14: selection on the output: The "section" argument select 15: certain path names. 16: --> 17: <report se:this="ValuePrintingReport"> 18: <section>lines/log/chunk</section> 19: <!-- 20: <test>true</test> 21: --> 22: </report> 23: </jacson> 24: </application>Comments:
| |||
| ||||
top |