Re: Another bug in javaflow?

2004-06-12 Thread Stephan Michels
Am Fr, den 11.06.2004 schrieb Stephan Coboos um 19:06: Hello, please have a look at the following java flow code: ... public class TestFlow extends AbstractContinuable{ private boolean foo= false; public void doTest() throws Exception { while(true) {

Re: Another bug in javaflow?

2004-06-12 Thread Stephan Coboos
Stephan Michels wrote: member variables have the scope of the seesion. Ok. But makes this sense? If I have no continuation I need no member variable. Isn't it better to remove the member vars from the session scope and bind them on the contonuation object? What's the reason to bind member

Re: Another bug in javaflow?

2004-06-12 Thread Vadim Gritsenko
Stephan Coboos wrote: Stephan Michels wrote: member variables have the scope of the seesion. Ok. But makes this sense? If I have no continuation I need no member variable. Isn't it better to remove the member vars from the session scope and bind them on the contonuation object? What's the

Re: Another bug in javaflow?

2004-06-12 Thread Sylvain Wallez
Stephan Coboos wrote: Stephan Michels wrote: member variables have the scope of the seesion. Ok. But makes this sense? If I have no continuation I need no member variable. Isn't it better to remove the member vars from the session scope and bind them on the contonuation object? What's the

Re: JXTG and caching

2004-06-12 Thread Sylvain Wallez
Vadim Gritsenko wrote: Sylvain Wallez wrote: Vadim Gritsenko wrote: Sylvain Wallez wrote: Moreover, you may consider the case of complex pipelines where the actual template depends on the user rights, target browser or whatever else. In that case, the cache information can be different

Problem using JavaFlow and exceptions

2004-06-12 Thread Stephan Coboos
Hello, I'am sorry but I have another problem using JavaFlow. I want to use my own Exceptions in JavaFlow. One Exception contains a long type as parameter. But if so, the flows will not load at startup. Please have a look into my source code example: package foo.bar; import

RequestDataStore and dispose()

2004-06-12 Thread Michal Stochmialek
Hello, [from http://marc.theaimsgroup.com/?l=xml-cocoon-devm=107356613615375w=2] The data, hold by the request data store is auto-released when the request ends. For example, if your data object implements dispose(), then this method is called. Does this fit your needs? OK,