private Callback callback;
private String contentType;
public AjaxResponseRenderer() {
callback = new EncodeAjaxCallback();
try {
InitialContext ic = new InitialContext();
Context ctx = (Context) ic.lookup("java:comp/env");
contentType = (String) ctx.lookup("tobago.ajax.contentType");
} catch (NamingException e) { /*ignore*/ }