Re: [Wicket-user] Efficient DynamicResource Handling

2007-07-16 Thread Eelco Hillenius
> I agree, you'd probably best start with extending WebResource and then > implement getResourceStream yourself. I'll put an extra note in > DynamicWebResource to explain this. And make a note in Wicket In Action. Thanks! Eelco

Re: [Wicket-user] Efficient DynamicResource Handling

2007-07-16 Thread Eelco Hillenius
> > Is there a way to do this more efficiently? Looking at > DynamicWebResource, > > it looks like perhaps I could just override IResourceStream > > getResourceStream() instead of the getResourceState() method. Any > > problems/gotchas doing that? Is there a more standard/"wicket" way of > doing

Re: [Wicket-user] Efficient DynamicResource Handling

2007-07-16 Thread Igor Vaynberg
On 7/16/07, spencer.c <[EMAIL PROTECTED]> wrote: I have a DynamicWebResource which is going to pull data out of a database. Some of the downloads will end up being quite large (possibly a couple of hundred MB). I have successfully implemented the functionality using DynamicWebResource and exte

[Wicket-user] Efficient DynamicResource Handling

2007-07-16 Thread spencer.c
I have a DynamicWebResource which is going to pull data out of a database. Some of the downloads will end up being quite large (possibly a couple of hundred MB). I have successfully implemented the functionality using DynamicWebResource and extending ResourceState to provided the correct byte ar