Я пытаюсь использовать CommonJ с OC4J.Мне нужно написать 'resource-ref-mapping' в orion-web.xml
Если у меня есть такая запись в web.xml:
<resource-ref>
<res-ref-name>tm/PublisherTimerManager</res-ref-name>
<res-type>commonj.timers.TimerManager</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Unshareable</res-sharing-scope>
</resource-ref>
Тогда, если я правильно понимаю, тогда нужно вorion-web.xml:
<resource-ref-mapping name="tm/PublisherTimerManager"
location="tm/PublisherTimerManager">
<lookup-context location="commonj.timers.TimerManager">
<context-attribute name="java.naming.factory.initial"
value="de.myfoo.commonj.timers.FooTimerManagerFactory"/>
</lookup-context>
</resource-ref-mapping>
Я прав?