I am sometime, a slow dumb witted learner.
I have to have examples, and most importantly something that ties things
to gather step by step, from a code point on view.
I have been looking for a way to put this down for others that have a
hard time figuring things out.
here is an example.
in the /framework/example/webapp/example/WEB-INF/web.xml
I would like to see
<!-- Dispatcher and delegator are two of many parameter that are passed
in context which is a map of parameters search code for examples-->
<!-- Search for runsync( in code for how Dispatcher is used-->
<context-param>
<param-name>localDispatcherName</param-name><param-value>example</param-value>
<description>A unique name used to identify/recognize the local
dispatcher for the Service Engine</description>
</context-param>
<!-- See
http://docs.ofbiz.org/display/OFBTECH/Apache+OFBiz+Technical+Production+Setup+Guide
Database Setup-->
<param-name>entityDelegatorName</param-name><param-value>default</param-value>
<description>The Name of the Entity Delegator to use, defined in
entityengine.xml</description>
</context-param>
I am willing to add what I have learned this way into the example.
Hopefully others will do the same