calling a tag from servlet service method
can anybody help me, i need to call jsp tag from a servlet , i was just going through, it seems like i have to provide implementation for pagecontext object and it may be different for different server implementation. is there any other way . or i have to provide implementation for the pagecontext class
[311 byte] By [
feroz_psa] at [2007-10-3 1:18:58]

Nops you need to instantiate the tag object and call the life cycle methods on it - doStart(), doEnd() etc (look at the jsp documentation). But a big warning - tags are container managed objects - instantiating them and calling the attribute setter() methods as well as the life cycle methods may lead to several difficult to debug problems in your application.
ram.