right,
one of the common problems i see in code is that people return rxml tags as a result of handling a tag.
eg, doing
return("<true>");
is a waste of resource, one should instead return what <true> would usually evaluate to.
same goes for any other rxml being returned.
i am not sure if it is possible to simply access tag functions by name like:
return id->tags->true();
something like this in caudium and roxen would be convenient.