I found this while working on 1.2.6 and checked it out in 1.3 and it's the same. It appears as though Include does not pay attention to the contextpath if it is explicitly set.
Line 162 (In 1.2.6) or line 233 (in 1.3b4) of Include is the following line which as I understands it builds a absolute URL from a relative path from the model: buildUrl.append(req.getContextPath()).append('/').append(url); It's using the request's context path to build the absolute URL, if this is behind a proxy it will fail, I changed my copy to this: buildUrl.append (getApplication().getApplicationSettings().getContextPath()).append('/').append(url); Am I misunderstanding this? Jeremy