RE: [coldbox:2380] Handlers and Proxy question

Never mind… As soon as I had sent the question, I figured out the answer. An error in the view itself was muddying the waters Everything makes sense now

Just as an idea. Remember that the event context gives you the type of request you receive. So you can do this potentially on the “aboutus” event action:

<cfif event.isProxyRequest()>

<cfset event.renderData(data=renderView(“aboutus”))>

<cfset event.setView(“aboutUs”)>