Sunil, I guess I can see your question as an exercise in testing the
completeness of the patExecContext implementation. However, some of the
functions in the XPath Builder are just attempts to expose a Java
construct to a user who doesn't know Java. For example, adding an item
to a map object in XPath builder is done by setting Location to
/process_data/map[@id='mapKey'] and Expression to the desired value. In
Java that's just map.put("mapKey", valueObject);On the other hand, XPath
selectors can...