Construindo tag librarys

Galera, o meu objeto pageContext está vindo nulo!

to usando o tomcat 6.

Código da classe handler:

[code] public int doStartTag() throws JspException {

	try {
		JspWriter input = pageContext.getOut();
		input.println("<input type=\"hidden\" name=\"tsc\" id=\"tsc\" value=\""+getTiquete()+"\" />");
		return SKIP_BODY;
		
	} catch (Exception e) {
		throw new JspException(e);
	}
}[/code]

E o meu tld:

[code]<?xml version="1.0" encoding="ISO-8859-1" ?>

Tiquete library
Tiquete
1.1
tiq
http://www.cabal.com.br/taglib/tiqt

<tag>
	<name>tiquete</name>
	<tag-class>br.com.cabal.SingleSignOn.web.controle.Tiquete</tag-class>
	<body-content>empty</body-content>
</tag>
[/code]

Sávio,

Dica: ao invés de usar o Classic Tag (estou vendo esse “doStartTag()” no seu código), utilize o Simple Tag que é melhor. (PS: A não ser que você tenha um bom motivo para usar o Classic Tag!)

Procure também por Simple Tag no google.