posted 21 years ago
Shouldn't be, I've used it on occasion. There are a few dangers though. You have to make sure no character data is printed, including white-space. You also lose your error page, since it makes use of 'out' and you can't have both.
With white-space, you have to join your scriptlets and other JSP tags together so there is no data leaking through. You also have to make sure there is no carriage return at the end. To link tags together, you have to do this:
and not this:
I'm not aware of any vendor specific behaviour here.
Dave