Hello All,
Is it possible to create ResourceResponse in wicket able to work with
ranges request for resource?
i.e.
initially set Accept-Ranges: bytes header
parse Range: bytes=0-1 request header
add correct
Content-Range: bytes 0-1/232469
and
Content-Length: 2
headers based on request
Thanks in
Hi,
your dynamic resource can parse a Range header from the request and send
back a Content-Range header along the requested content. This should work
as with any servlet too.
Let us know how you solved this.
Regards
Sven
--
View this message in context:
Hi,
I think your usage should work. Can you create a quickstart and attach
it to a Jira issue?
Sven
On 06/05/2013 09:27 PM, Bas Gooren wrote:
Hi *,
We've built a platform which hosts dynamic websites. Websites can be
added/updated/removed on demand, and all run on a single wicket
Hello Sven,
Thanks for the response
I was able to implement this:
https://svn.apache.org/repos/asf/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/util/RecordingResourceReference.java
The only issue remains: the following stacktraces while client drops the
current connection and
Hi all,
I implemented a panel having its own AbstractAjaxBehavior.
I provided the callback url to my pagepanel, the ajax request works;
everything seems fine.
Than I implemented an abstract method onSelect() to my panel to let an
implementation do some custom thinks (the onRequest() of my
Hi,
IMHO is would be easier to just extend AbstractResource and catch
ClientAbortException in a custom WriteCallback.
See 13.6 Custom resources in the excellent Wicket free guide [1].
Hope this helps
Sven
[1] http://code.google.com/p/wicket-guide
On 06/07/2013 12:30 PM, Maxim Solodovnik
Thanks!
will try it
On Fri, Jun 7, 2013 at 5:46 PM, Sven Meier s...@meiers.net wrote:
Hi,
IMHO is would be easier to just extend AbstractResource and catch
ClientAbortException in a custom WriteCallback.
See 13.6 Custom resources in the excellent Wicket free guide [1].
Hope this helps
On what JavaScript event is your behavior listening?
Sven
On 06/07/2013 12:38 PM, Patrick Davids wrote:
Hi all,
I implemented a panel having its own AbstractAjaxBehavior.
I provided the callback url to my pagepanel, the ajax request works;
everything seems fine.
Than I implemented an
Hmm... select, but is fired via jquery on client side, and I do the
ajax request by $.ajax(){ url: 'bevahior generated callback url' } on my
own.
(Im working with jquerys autocomplete.)
Patrick
Am 07.06.2013 12:48, schrieb Sven Meier:
On what JavaScript event is your behavior listening?
Relative is not good because resources are served from different application,
just currently both applications are deployed on same tomcat so they have
urls http://localhost:8080/app1 and http://localhost:8080/app2. When smart
wicket renders image src i get something like this:
Put a break point on RequestCycle#execute() and debug what's happening
when you're Javascript is firing.
Sven
On 06/07/2013 01:27 PM, Patrick Davids wrote:
Hmm... select, but is fired via jquery on client side, and I do the
ajax request by $.ajax(){ url: 'bevahior generated callback url' } on
Runs into WicketRuntimeExceptions (but they are catched).
e.g.
org.apache.wicket.WicketRuntimeException: Error attaching this container
for rendering: [Menu [Component id = offices]]
Patrick
Am 07.06.2013 13:33, schrieb Sven Meier:
Put a break point on RequestCycle#execute() and debug what's
Whem I'm using Wicket.Ajax.get(...) to execute my AjaxCall via
JavaScript it works.
Previously I used pure jquery $.ajax(...) and that does not work.
kind regards
Patrick
Am 07.06.2013 14:02, schrieb Patrick Davids:
Runs into WicketRuntimeExceptions (but they are catched).
e.g.
What you're saying is that a client requests the url
http://localhost:8080/app1 and the img src attribute has
app2/image?item-123 but you want it to be
http://localhost:8080/app2/image?item-123 instead?
Why does it make a difference? The relative url will be resolved to
Hi.
I have a simple abstract panel that I display as a cell within an
AjaxFallbackDefaultDataTable. The panel has a label and a WebComponent that
shows an icon (based on passed in css).
The WebComponent has an AjaxEventBehaviour(click) added and whenever the
icon is clicked the handling is
Hi,
For quite a while now, we are seeing a weird behavior with Firefox: as
soon as Wicket does an Ajax call, the tab title is changed to
Connecting... and it doesn't get back to the original page title at
all, even after the Ajax call returned.
Does anybody else see this behavior?
We don't see
Yes that would be great, but src=app2/image?item-123 does not work (image
is not loaded) and after changing it with firebug to
src=http://localhost:8080/app2/image?item-123; works fine. Any ideas why is
that? Any stupid mistake i overlooked? Maybe wicket interprets relative url
as
Hi,
After some digging, it's related to the multipart ajax request via
posting an iframe.
The iframe is removed in the onload of the iframe ( see
https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js#L868
) and it seems to be
Try this:
url.getSegments().add();
url.getSegments().add(site2);
url.getSegments().add(image);
Have a look at the code of Url#isAbsolute(). It checks if the first
segment is empty which is not the case with the code you provided in the
first email.
This behavior of
If you have src=app2/image?item-123 in a resource located in
http://localhost:8080/app1/, it will be resolved as
http://localhost:8080/app1/app2/image?item-123 as you noticed.
Adding / to the beginning should help: src=/app2/image?item-123 should
be resolved as
Hi, I just tried it and it worked! Thanks guys for help, this situation
really surprised me :) On the bright side at least I learned about framework
when solving this little problem of mine as its easy to go inside and check
how it works (im quite new to wicket).
Best regards!
--
View this
Thanks a lot!
It works as expected :)
Maybe you can help me to fix/workaround following issue in mobile Chrome
(Android 4.1.2, SGS2)
When I open the file I got 2 requests
1) has valid session or is able to get
session getAuthenticationStrategy().load()
as a result player is displayed, movie time
I'm trying to figure out
1. How to add class attribute to a link that is clicked.
2. Default homepage class link attribute to be active.
I have look at this forum
http://apache-wicket.1842946.n4.nabble.com/How-to-add-and-remove-css-classes-the-right-way-td1868408.html
thinking it would help but
I see that my issue is that every time I click on the link my Navigationbar
is created again.
Thus having the active private variable always being HomePage. That's why I
the active never changes.
If I created a way for MainMenu to get and set the active page in the top
level Repeater creation
how I capture close windows event from user(from x in the upper right)
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/session-event-tp4659287.html
Sent from the Users forum mailing list archive at Nabble.com.
Created a fix if any one is interested.
I noticed that every time I clicked on my Navbar, the base page would always
reload there for the Panel would always reset and would never know which one
is select.
In my Base Page I was about to do this.getClass() that gives me the current
page loaded and
Hi,
i would like to render a WebPage with flying saucer (PDF generator).
I've created a resource reference and a ByteArrayResource.
But now i need the rendered markup of the page (e.g. HomePage).
So my question is how can i render the markup in my Resource?
Thanks for your support
Per
Should I open a JIRA and should I attach a quickstart to it?
Yes please. And don't forget to add the collected information to it.
Thanks
Sven
On 06/07/2013 05:06 PM, Guillaume Smet wrote:
Hi,
After some digging, it's related to the multipart ajax request via
posting an iframe.
The iframe
Hi,
your solution looks good to me.
Check the Ajax debug window for any problems with the requests. Then put
a breakpoint on your behavior's #onEvent() and check whether is is
triggered.
Sven
On 06/07/2013 04:15 PM, dlock wrote:
Hi.
I have a simple abstract panel that I display as a cell
Found the solution already. I did it that way:
public class FlyingSaucerPdfResource extends ByteArrayResource {
public FlyingSaucerPdfResource() {
super(application/pdf);
}
@Override
protected byte[] getData(Attributes attributes) {
ByteArrayOutputStream os;
30 matches
Mail list logo