Hi,<div><br></div><div>I&#39;ve come up with the following code to identify an application&#39;s dispatcher path:</div><div><br></div><div><div><span class="Apple-tab-span" style="white-space:pre">        </span>| requestContext appPath dispatcher |</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>requestContext := self requestContext.</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>dispatcher := requestContext handlers detect: [ :each | each isDispatcher ] ifNone: [ nil ].</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>appPath := dispatcher isNil </div><div><span class="Apple-tab-span" style="white-space:pre">                </span>ifTrue: [ &#39;&#39; ]</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>ifFalse: [ dispatcher handlers keyAtValue: requestContext application ].</div>
</div><div><br></div><div>is there an easier/better way?</div><div><br></div><div>Thanks</div><div><br></div><div>Nick</div>