The following code:
public Object onActivate(int domainID) {
domain = (Domain)sessionManager.getSession().load(Domain.class, new
Integer(domainID));
return this;
}
leads to:
HTTP ERROR: 500
Render queue error in BeginRender[core/ExceptionReport:renderobject_0]: could
not initialize proxy - no Session
RequestURI=/editdomain
Powered by Jetty://
However, if I add this line:
public Object onActivate(int domainID) {
domain = (Domain)sessionManager.getSession().load(Domain.class, new
Integer(domainID));
System.out.println(domain.getDomainName());
return this;
}
The error does not occur.....
My question is:
1. How do you avoid this error?
2. Why is this a Jetty error and not a Tapestry5 error message? Is this
something I should report as bugreport?
Thanks!
Toby
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]