Prevent a fragment from rendering the outer tag

2012-05-12 Thread Thomas Singer
I have following markup: ... div wicket:id=page h1.../h2 p.../p div wicket:id=info /div h2Foo/h2 /div div wicket:id=fragment-1 h2Bar/h2 ul.../ul /div ... When adding fragment-1 (instance of Fragment) to page, it renders using Wicket 1.4.* as: ... div

Re: Apache Wicket 1.4.20 is released

2012-03-12 Thread Thomas Singer
Just curious: how long do you plan to support Wicket 1.4? Tom On 12.03.2012 09:06, Martin Grigorov wrote: This is the twentieth maintenance release of the Wicket 1.4.x series. This release brings 17 bug fixes and improvements. Git tag: release/wicket-1.4.20 Changelog:

Wicket 1.4 - 1.5: IMarkupSettings.setMarkupParserFactory

2012-02-07 Thread Thomas Singer
We have following code in our WebApplication's init method: final IMarkupSettings markupSettings = getMarkupSettings(); markupSettings.setMarkupParserFactory(new IMarkupParserFactory() { public MarkupParser newMarkupParser(MarkupResourceStream resource) { final MarkupParser parser =

Wicket 1.4 - 1.5: AbstractMarkupFilter.nextTag

2012-02-07 Thread Thomas Singer
Wicket 1.4 code: final class FooFilter extends AbstractMarkupFilter { public MarkupElement nextTag() throws ParseException { ComponentTag tag = (ComponentTag)getParent().nextTag(); ... } } Should I replace it with final class FooFilter extends AbstractMarkupFilter { protected

Wicket 1.4 - 1.5: RequestParameters, IBookmarkablePageRequestTarget

2012-02-07 Thread Thomas Singer
Following Wicket 1.4 code: final RequestParameters parameters = new RequestParameters(); parameters.setParameters(new HashMap()); String path = ... parameters.setPath(path); final IRequestTarget requestTarget = RequestCycle.get().getProcessor()

Re: Wicket 1.4 - 1.5: RequestParameters, IBookmarkablePageRequestTarget

2012-02-07 Thread Thomas Singer
the migration guide to simplify the task for their users. Tom On 07.02.2012 11:44, Martin Grigorov wrote: On Tue, Feb 7, 2012 at 12:39 PM, Thomas Singer wic...@regnis.de wrote: Following Wicket 1.4 code: final RequestParameters parameters = new RequestParameters(); parameters.setParameters(new

Re: Wicket 1.4 - 1.5: RequestParameters, IBookmarkablePageRequestTarget

2012-02-07 Thread Thomas Singer
And it wont get any better until people like you improve it with their findings... The wiki is community based. I may add my information to this wiki page, but then a competent person has to review and correct it. Or should I just add the missing/changed classes/methods stubs to the wiki to

Re: Wicket 1.4 - 1.5: RequestParameters, IBookmarkablePageRequestTarget

2012-02-07 Thread Thomas Singer
actually want to achieve. Martijn On Tue, Feb 7, 2012 at 11:39 AM, Thomas Singer wic...@regnis.de wrote: Following Wicket 1.4 code: final RequestParameters parameters = new RequestParameters(); parameters.setParameters(new HashMap()); String path = ... parameters.setPath(path); final

Wicket 1.4 - 1.5: WebMarkupContainerWithAssociatedMarkup

2012-02-07 Thread Thomas Singer
The migration guide mentions WebMarkupContainerWithAssociatedMarkup in the section TabbedPanel, but there is not such class in Wicket 1.5 any more. Tom - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Wicket 1.4 - 1.5: WebMarkupContainerWithAssociatedMarkup

2012-02-07 Thread Thomas Singer
We subclassed WebMarkupContainerWithAssociatedMarkup and used it as Component. Neither of your suggested IMarkupSourcingStrategy implementations is a Component. What should I do? Thanks in advance. Tom On 07.02.2012 13:26, Martijn Dashorst wrote: On Tue, Feb 7, 2012 at 1:18 PM, Thomas Singer

Re: Wicket 1.4 - 1.5: RequestParameters, IBookmarkablePageRequestTarget

2012-02-07 Thread Thomas Singer
().getRootRequestMapper().mapRequest(request); if(handler instanceof IPageClassRequestHandler) { return ((IPageClassRequestHandler)handler).getPageClass(); } Martijn On Tue, Feb 7, 2012 at 1:08 PM, Thomas Singer wic...@regnis.de wrote: Thank you for the hints. Our code should return the page class which

Re: Wicket 1.4 - 1.5: WebMarkupContainerWithAssociatedMarkup

2012-02-07 Thread Thomas Singer
#newMarkupSourcingStrategy() to return the proper IMarkupSourcingStrategy. On 07/02/2012 10:46 AM, Thomas Singer wrote: We subclassed WebMarkupContainerWithAssociatedMarkup and used it as Component. Neither of your suggested IMarkupSourcingStrategy implementations is a Component. What should I do? Thanks

Re: Wicket 1.4 - 1.5: RequestParameters, IBookmarkablePageRequestTarget

2012-02-07 Thread Thomas Singer
The String path is from a business object. Tom On 07.02.2012 17:48, Martijn Dashorst wrote: On Tue, Feb 7, 2012 at 4:57 PM, Thomas Singer wic...@regnis.de wrote: IRequestHandler handler = Application.get().getRootRequestMapper().mapRequest(request); Requires a Request instance, but I just

Wicket 1.4 - 1.5: MarkupContainer.getMarkupStream()

2012-02-06 Thread Thomas Singer
I need help for converting our application from Wicket 1.4 to 1.5. We have following code: MarkupContainer container = ... ... MarkupStream markupStream = container.getMarkupStream(); if (markupStream == null) { return null; } Class tagMarkupClass = markupStream.atTag()

Wicket 1.4 - 1.5: RequestCycle.urlFor

2012-02-06 Thread Thomas Singer
According to https://cwiki.apache.org/WICKET/migration-to-wicket-15.html org.apache.wicket.RequestCycle.urlFor has been renamed to org.apache.wicket.request.cycle.RequestCycle.renderUrlFor but there is no such method renderUrlFor. Tom

Re: Wicket 1.4 - 1.5: RequestCycle.urlFor

2012-02-06 Thread Thomas Singer
Unfortunately, a new parameter for PageParameters was added. Is passing null the same as in 1.4? Tom On 06.02.2012 18:29, vineet semwal wrote: RequestCycle#urlFor still exists,that needs to be corrected.. On Mon, Feb 6, 2012 at 10:44 PM, Thomas Singer wic...@regnis.de wrote: According

Re: Wicket 1.4 - 1.5: MarkupContainer.getMarkupStream()

2012-02-06 Thread Thomas Singer
Does nobody have an idea? This code prevents me from making progress in converting our application to Wicket 1.5. Tom On 06.02.2012 18:06, Thomas Singer wrote: I need help for converting our application from Wicket 1.4 to 1.5. We have following code: MarkupContainer container

Re: Wicket 1.4 - 1.5: MarkupContainer.getMarkupStream()

2012-02-06 Thread Thomas Singer
? Runtime exception? Can you be more specific? On Mon, Feb 6, 2012 at 11:14 PM, Thomas Singer wic...@regnis.de wrote: Does nobody have an idea? This code prevents me from making progress in converting our application to Wicket 1.5. Tom

Re: Force DownloadLink

2010-10-31 Thread Thomas Singer
meta http-equiv=refresh content=1; URL=/download/link/ ? On 31.10.2010 03:07, d2marcelo wrote: Hello, how to force the DownloadLink to start downloading a file without the user clicking on it? I'm trying to do dowload.onClick(); from a setWindowClosedCallback but it won't start.

Re: Scripting language

2010-09-01 Thread Thomas Singer
Just curious: what makes you think that using a scripting language makes you more productive than using Java? Do you mean productivity in the first two days or in the long run? Tom On 01.09.2010 13:10, james yong wrote: Hi all, Can anyone recommends a scripting language that can be used

SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create them locally in our development environment (to test whether we have avoided them)? Thanks in advance, Tom

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
: doesnt the message of that exception tell you which object class is the problem? On Wed, Aug 11, 2010 at 09:24, Thomas Singer wic...@regnis.de wrote: Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
to that object so you should be able to track it down quite easily On Wed, Aug 11, 2010 at 09:55, Thomas Singer wic...@regnis.de wrote: doesnt the message of that exception tell you which object class is the problem? It does, but I don't want to make the logged class serializable

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
I want to know how I can generate this exception in my development environment. It is nasty to test on the production system. Tom On 11.08.2010 10:53, Johan Compagner wrote: why not? if you know which page it was and which component/model that holds that none serializable class then you

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
really need to be in the same state. On Wed, Aug 11, 2010 at 13:24, Thomas Singer wic...@regnis.de wrote: I want to know how I can generate this exception in my development environment. It is nasty to test on the production system. Tom

Re: autolink not work ?

2010-02-26 Thread Thomas Singer
We've made Wicket convert all links automatically (even those starting with ..) without the need for wicket:link. If somebody is interested, please let me know. Tom On 26.02.2010 09:46, Martijn Dashorst wrote: wicket:link doesn't work for ../ paths. Use bookmarkablepagelinks instead.

Re: Open source Wicket blog

2009-10-14 Thread Thomas Singer
Hi Daniel, We are currently using Pebble which has the advantage of storing the blog content in plain text files. But its development seems to have stalled, so I'm searching an alternative. Using a blog tool which uses Wicket would be of much interest to me, because we use Wicket for our website

InvalidUrlException - how to show 404 page

2009-10-02 Thread Thomas Singer
As I have reported a couple of weeks ago (but can't find the message any more for a follow-up), Wicket shows an ugly internal-error page if one somehow modified the stateful URLs, e.g. http://localhost:8080/?wicket:interface=:8 Following exception is logged:

Re: InvalidUrlException - how to show 404 page

2009-10-02 Thread Thomas Singer
requestCycle) and throw the mentioned exception. Works find just like this in our webapp cheers, Jonas On Fri, Oct 2, 2009 at 10:22 AM, Thomas Singer wic...@regnis.de wrote: As I have reported a couple of weeks ago (but can't find the message any more for a follow-up), Wicket shows an ugly

Re: Internal error parsing wicket:interface = :6

2009-08-19 Thread Thomas Singer
InternalErrorPage.. InvalidUrlException was introduced in wicket-1.4.0 in order to handle situation when user tweaks the url making it unusable... you can treat this exception somehow different by redirecting to some page or displaying an error message. Alex Objelean Thomas Singer-4 wrote

SVN URL for Wicket 1.4.0 sources?

2009-08-04 Thread Thomas Singer
We include the Wicket sources using an SVN external. I now wanted to update from the latest Wicket 1.3.* release (http://svn.apache.org/repos/asf/wicket/tags/wicket-1.3.6) to 1.4.0, but could not find a corresponding tag or branch. The latest one to find is for wicket-1.4-rc5. Where can I find it?

Re: SVN URL for Wicket 1.4.0 sources?

2009-08-04 Thread Thomas Singer
Thank you. Tom Martijn Dashorst wrote: fixed - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Wicket and Tomcat: Error deploying configuration descriptor ROOT.xml

2009-08-04 Thread Thomas Singer
When I launch our wicket application in Tomcat 5.5.27 I'm getting following output in the IDEA console: cmd /c C:\apache-tomcat-5.5.27\bin\catalina.bat run Using CATALINA_BASE: C:\Dokumente und Einstellungen\tom\.IntelliJIdea8x\system\tomcat\tomcat_Unnamed_websitecaa32f44 Using

Re: Wicket and Tomcat: Error deploying configuration descriptor ROOT.xml

2009-08-04 Thread Thomas Singer
, please see the SLF4J site (http://www.slf4j.org/) for more information. Hence I assumed, that commons-logging-1.1.jar is NOT required. I'm confused. Tom Thomas Singer wrote: When I launch our wicket application in Tomcat 5.5.27 I'm getting following output in the IDEA console: cmd

Re: [OFF TOPIC] Java desktop applications

2009-06-12 Thread Thomas Singer
Yes, this is indeed very funny. People think, that making a good (desktop) user interface is just about making the right choice of the used architecture or GUI builder. That's plain wrong. You also can't automatically make good looking and behaving web applications, just because you know how html

FileUploadField: prefill file to upload?

2009-05-12 Thread Thomas Singer
We want to have an easy way to report bugs of our client-side application through our wicket-driven website and thought to pass the encoded file path of the file to upload in the URL to the bug-report-page which will be opened in a browser by user request, so the user does not have to pick the

Re: FileUploadField: prefill file to upload?

2009-05-12 Thread Thomas Singer
Thanks. :( Tom Igor Vaynberg wrote: maybe there are some javascript hacks, but usually browsers forbid it for the fear of security concerns. -igor On Tue, May 12, 2009 at 11:24 AM, Thomas Singer wic...@regnis.de wrote: We want to have an easy way to report bugs of our client-side

Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-30 Thread Thomas Singer
We had similar problems and by changing Connector port=80/ to Connector port=80 URIEncoding=UTF-8/ in the tomcat/conf/server.xml fixed the problem. Tom Johan Compagner wrote: Did you configure tomcat correctly for utf 8? Search this list for the right settings On 30/01/2009, Philipp

Re: [OT] Wicket Like framework for desktop applications?

2009-01-29 Thread Thomas Singer
already saw or tried. But that's just *me* opinion. -- Best regards, Thomas Singer _ syntevo GmbH http://www.syntevo.com Martijn Dashorst wrote: On Wed, Jan 28, 2009 at 2:39 PM, Piller Sébastien pi...@hmcrecord.ch wrote: far easier than web dev Nope. almost no compatibility

Re: WicketNotSerializableException

2009-01-20 Thread Thomas Singer
the same in prod and dev? -igor On Mon, Jan 19, 2009 at 11:29 AM, Thomas Singer wic...@regnis.de wrote: The stacktrace is following (using Wicket 1.3.5): at org.apache.wicket.util.io.SerializableChecker.check(SerializableChecker.java:342

Re: WicketNotSerializableException

2009-01-20 Thread Thomas Singer
. Tom Igor Vaynberg wrote: On Tue, Jan 20, 2009 at 11:39 AM, Thomas Singer wic...@regnis.de wrote: the checker is always used When exactly? as you can see from the stack - when wicket tries to save the page to the diskstore. the checker should tell you exactly what field of what class

WicketNotSerializableException

2009-01-19 Thread Thomas Singer
On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance, Tom - To unsubscribe, e-mail:

Re: WicketNotSerializableException

2009-01-19 Thread Thomas Singer
) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) Tom Igor Vaynberg wrote: what does the stacktrace look like? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting

Re: Highlight some words in the markup content

2008-10-16 Thread Thomas Singer
the request cycle and request cycle has metadata facility, so -igor On Wed, Oct 15, 2008 at 10:07 AM, Thomas Singer [EMAIL PROTECTED] wrote: Thanks. But how the filter should know about the request which contains the information about what to highlight? -- Cheers, Tom Igor Vaynberg wrote

Re: Highlight some words in the markup content

2008-10-15 Thread Thomas Singer
(false); Martijn On Wed, Oct 15, 2008 at 3:56 PM, Thomas Singer [EMAIL PROTECTED] wrote: We are using Wicket as base for our website (www.syntevo.com). We have a simple search feature on the website, but want to extend it like it is known to work in forums: the searched words should be highlighted

Re: Highlight some words in the markup content

2008-10-15 Thread Thomas Singer
Thanks. But how the filter should know about the request which contains the information about what to highlight? -- Cheers, Tom Igor Vaynberg wrote: iresponsefilter -igor On Wed, Oct 15, 2008 at 8:22 AM, Thomas Singer [EMAIL PROTECTED] wrote: OK, this looks trivial, but were should I

Format double value in TextField

2008-09-08 Thread Thomas Singer
I'm using RequiredTextFields with Double.TYPE as content type. When I add a new business object, the default double values show up as 0. Where should I add a DecimalFormat to show, for example, 0. instead? -- Cheers, Tom

Re: [announce] Wicket in Action e-book has been published!

2008-08-19 Thread Thomas Singer
Just curious: why don't you make the full e-book available for free and charge only for the paper version? This works fine with the German Java book Java ist auch eine Insel and many others from the same publisher: http://www.galileocomputing.de/openbook/javainsel7/ -- Cheers, Tom Martijn

Re: [announce] Wicket in Action e-book has been published!

2008-08-19 Thread Thomas Singer
have a rough idea about how much effort writing a book takes, because I wrote a 100-pages diploma thesis, an article in the German Java Magazin and we always have to maintain our help. No question, writing a book in a well understandable style is hard work. -- Cheers, Tom Thomas Singer wrote

Re: How to catch all 404s (Page Not Found) and reroute to a Page or strategy

2008-07-17 Thread Thomas Singer
Please see my thread with a similar problem: http://www.nabble.com/Slighly-OT%3A-error-page-in-Tomcat-with-Wicket-to18231002.html -- Cheers, Tom Chris Lintz wrote: Hi all, I want to catch all page not found (404s) and simply grab the path that caused the 404 and reroute the request to a

Change mounted URL - redirect to new one

2008-07-04 Thread Thomas Singer
Hi, We are using Wicket for our web*site* and want to change the URL of a mounted page. Is there an elegant way in Wicket to redirect from /old-path to /new-path or should we better do that the hard way with a URL rewriting filter? -- Thanks in advance, Tom

Re: Slighly OT: error page in Tomcat with Wicket

2008-07-02 Thread Thomas Singer
Thank you! That did it. -- Tom Igor Vaynberg wrote: i think in the filter mapping you will need to add dispatcherREQUEST/dispatcher dispatcherERROR/dispatcher -igor On Tue, Jul 1, 2008 at 11:17 PM, Thomas Singer [EMAIL PROTECTED] wrote: I'm using Tomcat 5.5.26 with Wicket 1.3.4

Re: [vote] Release 1.4 with only generics and stop support for 1.3

2008-03-17 Thread Thomas Singer
+1 Martijn Dashorst wrote: This thread is for voting only. Use the [discuss] thread for voicing your opinion or asking questions. This makes counting the votes much easier. The discussion on our development list makes it clear that a lot of folks are anxious for generified models. Most users

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
.. It's a little abstract to use a profiler as it will not give you a clear idea as everything originates in class[] int[] etc... regards Nino Thomas Singer wrote: Be sure to checkout the wiki for gotchas and tips: http://cwiki.apache.org/WICKET/wicket-and-jmeter.html http

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
Well, our application class (derived from org.apache.wicket.protocol.http.WebApplication) occurs near the top of the list when sorting by retained size, but our code does not contain dynamic elements. For me it looks strange, that there exist 3 instances of our application class (we don't

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
of the OOME. Shouldn't that help to find out the problematic instance(s)? Tom Nino Saturnino Martinez Vazquez Wael wrote: Thomas Singer wrote: You can try to see if its any page in particular that causes this. Or of its something general... Also you need to watch out for objects that just keep

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
I've did some further investigation and the largest objects seem to be the settings from org.apache.wicket.Application, particular the markupCache. Tom Thomas Singer wrote: Well, our application class (derived from org.apache.wicket.protocol.http.WebApplication) occurs near the top

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
We have two wicket applications running. The MarkupCache for syntevo.com is more than 40MB large (retained size in YourKit), the other much less frequently used 630kB. Tom Igor Vaynberg wrote: how big is it? its just a cache of markup files -igor

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
also have some own AutoLinkResolver.AbstractAutolinkResolverDelegate. Tom Igor Vaynberg wrote: hrm, that seems high (unless you have that many .html files). do you guys have some nonstandard resource finders/markup providers? -igor On Fri, Feb 22, 2008 at 10:16 AM, Thomas Singer [EMAIL

Re: OutOfMemoryError

2008-02-22 Thread Thomas Singer
like IResourceStreamProvider IMarkupResourceStreamProvider IMarkupCacheKeyProvider stuff like that? there has to be a reason why the cache is growing...or is it hovering around 40 megs? -igor On Fri, Feb 22, 2008 at 10:36 AM, Thomas Singer [EMAIL PROTECTED] wrote: hrm, that seems high (unless

OutOfMemoryError

2008-02-21 Thread Thomas Singer
or instance count. -- Best regards, Thomas Singer _ SyntEvo GmbH www.syntevo.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: OutOfMemoryError

2008-02-21 Thread Thomas Singer
and the most used objects appear to come from Wicket (char[], byte[], String, class[], HashMap$Entry, XMLTag, ValueMap, ComponentTag, RawMarkup, HashMap$EntrySet, int[], short[] just to name the largest). -- Best regards, Thomas Singer _ SyntEvo GmbH www.syntevo.com

OutOfMemoryError

2008-01-25 Thread Thomas Singer
Our Wicket-1.3.0-based website running on Tomcat 5.5.23 regularly dies after approx. 2 weeks with an OutOfMemoryError. Please excuse my ignorance, but we don't have any experience in profiling/stress testing web applications. What particular steps we could do to detect memory leaks? Thanks in

Re: Adding breadcrumbs

2008-01-12 Thread Thomas Singer
Breadcrumbs should not list the history, but the hierarchy of the pages. See http://www.useit.com/alertbox/breadcrumbs.html Tom Eelco Hillenius wrote: Hello Alan, yes, I know that example. But as I wrote I'm not using Panels but Pages. And I don't understand that example very well anyway.

Re: Streaming a huge ZIP file

2007-12-11 Thread Thomas Singer
IIRC, DownloadLink and Igor's anonymous class will lock the session, so if you have one downloading over a very slow connection, other users will get a timeout. Cheers, Tom Igor Vaynberg wrote: getrequestcycle().setrequesttarget(new irequesttarget() { respond(response r) { outputstream

Re: Get libs without installing Maven?

2007-10-26 Thread Thomas Singer
org.apache.portals.bridges.util.ServletPortletSessionProxy. Tom Eelco Hillenius wrote: For core Wicket, you only need slf4j (and maybe log4j if you want to use that) and the servlet API (the latter just to compile your project). Eelco On 10/25/07, Thomas Singer [EMAIL PROTECTED] wrote: I only can find the wicket jars, but were

Re: Get libs without installing Maven?

2007-10-26 Thread Thomas Singer
Thanks, Nino. I don't want Maven to manage my project, I just want to get the libraries which are required for building and running wicket... Tom Nino Saturnino Martinez Vazquez Wael wrote: mini maven guide... install maven place yourself in a folder and write: mvn archetype:create

Re: Get libs without installing Maven?

2007-10-26 Thread Thomas Singer
Thanks, Eelco, the portals-bridges-common-1.0.3.jar was the key. Tom Eelco Hillenius wrote: commons-collections-2.1.jar commons-logging-1.0.4.jar junit.jar log4j-1.2.13.jar portlet-api-1.0.jar slf4j-api-1.4.0.jar slf4j-log4j12-1.4.0.jar But the checked out code does not compile. It requires

Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
I'm currently trying to update from 1.4beta2 to 1.4beta4 by changing the revision of our project's wicket-external (http://svn.apache.org/repos/asf/wicket/trunk/jdk-1.4/wicket/src/main/java). Unfortunately it does not build any more because it seems to require a new library. Where can I

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
No possibility? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
Maybe I'm blind, but I could not find the jars for Wicket 1.3.0beta4 (the version number in the initial posting was wrong), I just could find versions up to 1.2.6: http://repo1.maven.org/maven2/wicket/wicket/ Tom - To

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
contains binaries and sources. http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4 Frank On 10/25/07, Thomas Singer [EMAIL PROTECTED] wrote: I'm currently trying to update from 1.4beta2 to 1.4beta4 by changing the revision of our project's wicket-external (http://svn.apache.org/repos/asf/wicket

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
I only can find the wicket jars, but were are the required libraries? Should I pick the out of the pom myself or is there a more user-friendly way? Tom - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: And The Fastest Growing Web Framework Is...

2007-09-06 Thread Thomas Singer
Well, such charts do not make me fear to placed the bet on the wrong horse. I've taken a look at a large number of frameworks and found Wicket to be the best one for our purposes. This cannot be changed by such charts, but only by JSF being better than Wicket. In Germany, the best sold car is

Re: Session.get() from non-Wicket-Filter/Servlet and the RequestCycle

2007-09-01 Thread Thomas Singer
to first hit something in wicket itself. So that the wicket filter/servlet request did make one. Else it will always be empty. johan On 8/31/07, Thomas Singer [EMAIL PROTECTED] wrote: OK, let's look at the sources of WicketSessionFilter. According to my understanding: init() method: - the filterName

Re: Session.get() from non-Wicket-Filter/Servlet and the RequestCycle

2007-09-01 Thread Thomas Singer
Thanks, I will take a look at the example. Tom Eelco Hillenius wrote: This creates following question for me: - Where the httpSession attribute with the sessionKey is set? Using the default session store implementations, this is done in HttpSessionStore#setAttribute.

Re: Session.get() from non-Wicket-Filter/Servlet and the RequestCycle

2007-09-01 Thread Thomas Singer
Ah, that's the secret missing link. I then suggest to have a method getSessionKey(String wicketFilterName) which is used by the normal WicketFilter to read/write and the WicketSessionFilter to read the WebSession. Thanks, Eelco! -- Cheers, Tom Eelco Hillenius wrote: No, my confusion is

Re: Session.get() from non-Wicket-Filter/Servlet and the RequestCycle

2007-08-31 Thread Thomas Singer
custom filter/servlet you can obtain wicket session using just Session.get(). -Matej On 8/31/07, Thomas Singer [EMAIL PROTECTED] wrote: What is the preferred way of obtaining a WebSession from a non-Wicket-Filter/Servlet. I've taken a look at WicketSessionFilter, but this one requires a filterName

Re: Session.get() from non-Wicket-Filter/Servlet and the RequestCycle

2007-08-31 Thread Thomas Singer
Did you read my first mail in this thread? How does the WebSession reference comes into the HttpSession? That's what I don't understand for now. Tom Johan Compagner wrote: look at the source :) On 8/31/07, Thomas Singer [EMAIL PROTECTED] wrote: Matej and Johan, thanks for your feed-back

Re: Session.get() from non-Wicket-Filter/Servlet and the RequestCycle

2007-08-31 Thread Thomas Singer
On 8/31/07, Thomas Singer [EMAIL PROTECTED] wrote: Did you read my first mail in this thread? How does the WebSession reference comes into the HttpSession? That's what I don't understand for now. Tom Johan Compagner wrote: look at the source :) On 8/31/07, Thomas Singer [EMAIL PROTECTED] wrote

Re: DownloadLink hanging

2007-08-28 Thread Thomas Singer
if you are selling downloads this is obviously not going to work for you. -igor On 8/27/07, Thomas Singer [EMAIL PROTECTED] wrote: What do you think about passing the file as constructor parameter in the FileResourceReference to avoid the security hole (passing the file name as request parameter

Re: DownloadLink hanging

2007-08-27 Thread Thomas Singer
Isn't fixing bugs the task of the Wicket developers? We don't have a problem ordering support, but I could not find information where to get it. -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Igor Vaynberg wrote

Re: DownloadLink hanging

2007-08-27 Thread Thomas Singer
told me (I haven't verified), that he stopped the download and this also blocked Wicket. He had to restart Tomcat! -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Eelco Hillenius wrote: On 8/27/07, Thomas Singer [EMAIL PROTECTED

Re: DownloadLink hanging

2007-08-27 Thread Thomas Singer
a timeout or blocking when downloading a larger file. -- Cheers, Tom Matej Knopp wrote: On 8/27/07, Thomas Singer [EMAIL PROTECTED] wrote: Your best bet on getting quick support is to fix it yourself and send in a patch. Well, if that would be possible, I would have done that or worked around

Feed-back for trunk

2007-08-27 Thread Thomas Singer
I've switched from 1.3beta2 to trunk. 1) The QueryStringUrlCodingStrategy now adds trailing slashes and breaks our application (instead of /index.html now /index.html/ is used). 2) An Border now always seems to return a markup stream - this broke our class derived from

Re: Feed-back for trunk

2007-08-27 Thread Thomas Singer
3) We'd added fragments to a border - that broke as well... Tom - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: DownloadLink hanging

2007-08-26 Thread Thomas Singer
BTW, as long as this issue is not fixed, we can't take our Wicket-based website online. This is a show-stopper bug for us. :( -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Thomas Singer wrote: Done: https://issues.apache.org/jira

Re: DownloadLink hanging

2007-08-24 Thread Thomas Singer
Done: https://issues.apache.org/jira/browse/WICKET-878 Tom Igor Vaynberg wrote: yep -igor On 8/23/07, Thomas Singer [EMAIL PROTECTED] wrote: Should I report a bug in JIRA? -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Igor

Re: DownloadLink hanging

2007-08-23 Thread Thomas Singer
) { return null; } final File file = session.getFileToDownload(); if (file == null) { return null; } return new MyFileResourceStream(file); } -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Igor

Re: DownloadLink hanging

2007-08-23 Thread Thomas Singer
Should I report a bug in JIRA? -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Igor Vaynberg wrote: hm, this looks like an old bug. johan didnt we fix this a while ago? -igor On 8/23/07, Thomas Singer [EMAIL PROTECTED] wrote

Re: DownloadLink hanging

2007-08-21 Thread Thomas Singer
-check and redirects internally to a hidden location which then is send to the client by Tomcat when the right flag is set? Thanks in advance. -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Igor Vaynberg wrote: On 8/21/07, Thomas

DownloadLink hanging

2007-08-20 Thread Thomas Singer
-technology at a different server running in the same version of Tomcat. Is this a known problem? How to work around? -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com