Re: [c3-monitoring] Overview of Servlet-Services

2009-06-15 Thread Reinhard Pötz
Dariusz Łuksza wrote: > On Tue, Jun 9, 2009 at 9:55 AM, Reinhard Pötz wrote: >> IIRC each servlet-service has a special servlet context >> o.a.c.servletservice.ServletServiceContext (cocoon-servlet-service-impl >> module) which contains all necessary information (connections, >> mount-points) but i

Cocoon 2.1.11- Avalon issue using IBM java 6 jvm

2009-06-15 Thread Laurent Medioni
Hello, On a Websphere 7 server we noticed in the logs many occurrences of: "WARN ... [core.manager] ... WebContainer : 4/ExcaliburComponentSelector: Attempted to release a $Proxy32 but its handler could not be located." We have been able to debug the case: ExcaliburComponentSelector is not able t

Re: [cocoon3] Passing parameters with Invocation

2009-06-15 Thread Steven Dolg
Hi, Passing parameters into the sitemap will work when you do it this way: sitemap: invocation: ObjectModel objectModel = new ObjectModel(new HashMap()); objectModel.put("firmaElectronica", "My Parameter Value"); invocation.setObjectModel(objectModel); The stuff under "co