request « wicket « Java Enterprise Q&A





1. Long Running Wicket Ajax Request    stackoverflow.com

I occasionally have some long running AJAX requests in my Wicket application. When this occurs the application is largely unusable as subsequent AJAX requests are queued up to process synchronously ...

2. Retrieving value from Request URL in Wicket    stackoverflow.com

HI, I have a URL which will call a method my method in Java. it looks like this

http://www.example.com/method?value=24
how can i retrieve value 24 and use it in my called method? I ...

3. How to handle XML in body of a post request with a Wicket page    stackoverflow.com

I've tried to set up a page in Wicket (extending org.apache.wicket.markup.html.WebPage) to receive an HTTP post request containing an XML document in the body that is coming from a ...

4. How to make a wicket component that's re-rendered on every AJAX request to a page?    stackoverflow.com

Is there a way to make a Wicket component re-render itself on every AJAX request to a page? (Essentially to do what ajaxRendered=true does in RichFaces.) My application basically consists of the ...

5. Wicket: concurrent Ajax requests limited to one?    stackoverflow.com

Situation In my Wicket application, I have a page which contains two tags. Each time a tab is selected, its content is fetched via Ajax so that every time you ...

6. How to check if a request is GET or POST in Wicket?    stackoverflow.com

Currently I use following way to check if a request is GET or POST in Wicket WebPage:

public DummyPage(PageParameters pageParameters) {
    super(pageParameters);

    final WebRequest wr = ...

7. preserving component state across multiple request cycles    stackoverflow.com

Question about component state management with Apache Wicket 1.4.x I have a bookmarkable, stateful page that contains a form with a set search criteria. The user search for items matching the selected ...

8. How can I request pipeline processors in Apache Wicket?    stackoverflow.com

Is there any way to request pipeline processors in Apache Wicket? Possibly with an open-source framework that integrates with Wicket? I want to check requests before my web pages are rendered.

9. How to avoid FileUploadField reset at the end of the request in wicket    stackoverflow.com

I have a wicket form containing a FileUploadField and some more text fields. When a mandatory field is missing, the validation correctly fails. Then, the file I chose for the upload ...





10. Wicket request mapping    stackoverflow.com

I am trying to map my requests in a special way to achieve a very simple purpose. Say the root website is abc.com and has several users. Each user has a home ...

11. Immediate request after response    stackoverflow.com

First, what I want to achieve:
Let's say I'm doing some stuff in onClick() method of a AjaxLink. I want to give user some feedback with mid-status and continue on doing, ...

12. wicket request handling    forums.oracle.com