Re: Web sockets - version confusion

2014-11-11 Thread Niranjan Rao
:29 PM, Martin Grigorov wrote: Hi, On Tue, Nov 11, 2014 at 3:02 AM, Niranjan Rao nhr...@gmail.com wrote: Greetings, Document at https://wicket.apache.org/guide/guide/nativewebsockets.html shows maven example. I am assuming that the version in the example is wicket version. However maven

Re: Web sockets - version confusion

2014-11-11 Thread Niranjan Rao
such as tomcat, do I need to include these dependencies in the final WAR file? Regards, Niranjan On 11/11/2014 10:16 AM, Niranjan Rao wrote: Martin, Thanks for the reply. If I understand you correctly I need to do following so that I have JSR 356 compliant code which in theory will be independent

Web sockets - version confusion

2014-11-10 Thread Niranjan Rao
Greetings, Document at https://wicket.apache.org/guide/guide/nativewebsockets.html shows maven example. I am assuming that the version in the example is wicket version. However maven repository search does not show jar files for version 6.18.0 or any versions in 6.* series.

Session serialization and clustering

2014-05-22 Thread Niranjan Rao
Greetings, On wicket 1.5.10 and tomcat 7.0.39 as server. Right now my goal is to maintain the authenticated session when web application is reloaded for some reason as long as session expired. In other words, if we refresh the application, logged in users should not have to login again. I

Re: backspace - when not on focus in field

2014-03-12 Thread Niranjan Rao
On 03/12/2014 09:04 AM, nazeem wrote: I use lot of ajax to replace panels on user clicks so that user can drill down deep in to the page view. When using forms if the focus is not on text field or any form fields. hitting backspace takes the user all the way to the main page. How can i prevent

Re: Generate PDF

2013-12-23 Thread Niranjan Rao
Do you want to use it in wicket application or java application? The link is for csharp based tool and will not work in wicket application. But it looks like they have java API also http://www.rasteredge.com/java-imaging/. Personally we use apache pdf box. We don't create PDF, but we do

Re: wicket wiki down?

2013-06-27 Thread Niranjan Rao
While I agree with searching mailing list or searching web first, from most users perspective, if you google for information before bothering others, you end up on old pages and then links are broken. For example just google wicket framework documentation. First link shows up in google is

Infinite loop for user authentication when running on Apache2 as frontend server.

2012-01-02 Thread Niranjan Rao
Happy new year folks, I have tomcat server running application war file serving only ajp protocol. Apache2 is configured to serve my application using ajp. This works - sometimes :( So far I have not able to figure out what breaks it or what makes it work and looking for help. The description

Re: Using proxy server

2011-12-27 Thread Niranjan Rao
absolute paths - but they do lack the context information of apache2. Regards, Niranjan On 12/22/2011 05:42 PM, Niranjan Rao wrote: Hi folks, Trying to set up apache2/wicket combo. Wondering if instructions at https://cwiki.apache.org/WICKET/wicket-behind-a-front-end-proxy.html

Using proxy server

2011-12-22 Thread Niranjan Rao
Hi folks, Trying to set up apache2/wicket combo. Wondering if instructions at https://cwiki.apache.org/WICKET/wicket-behind-a-front-end-proxy.html#Wicketbehindafront-endproxy-HowtofixWicketgeneratedlinks are still valid for wicket 1.5. If not does anyone has pointer to new setup of documents?

Getting url for a page

2011-12-19 Thread Niranjan Rao
Hi folks, On wicket 1.5.1 I have a page that calls a JSON service url in different package. For simplicity let's just say, Page resides in page package and services reside in services package. Layout is something as follows page: Page sercices: ServiceA ServiceB Page calls get urlFor

Cleaning resources on session timeout

2011-09-20 Thread Niranjan Rao
Hi folks, Using wicket 1.5. We would like to clean some resources we are holding in the session when session times out. I did read docs and most of the methods like detach/destroy seem to be related to request. Method destory in the session is also a private method. Does wicket fires any

Re: Cleaning resources on session timeout

2011-09-20 Thread Niranjan Rao
Thanks for the help. This sounds like exactly what I wanted. But I can't find this method defined neither in WebApplication nor in the Application class. At least it does not seem to be the method that I can not override. Regards, Niranjan On 09/20/2011 12:16 PM, Dan Retzlaff wrote: I just

What does this syntax say?

2011-07-28 Thread Niranjan Rao
Ok, I admit it - I don't understand this function at all defined in IComponentInheritedModel public W IWrapModelW wrapOnInheritance(Component component) I don't understand meaning of W and IWrapModelW. I know generics generally, but this syntax has been baffling me. Based on what eclipse is

Refreshing the page while running in eclipse

2011-07-26 Thread Niranjan Rao
Hi, Using Wicket 1.5-RC4.2. I have HTML/Java sitting in one of the child packages. When visiting the page in the browser, the markup changes are not reflected unless I restart the application in eclipse. I am using Start class that is generated when wicket code hierarchy is created using maven.

Re: Refreshing the page while running in eclipse

2011-07-26 Thread Niranjan Rao
, 2011, at 2:08 PM, Niranjan Rao wrote: Hi, Using Wicket 1.5-RC4.2. I have HTML/Java sitting in one of the child packages. When visiting the page in the browser, the markup changes are not reflected unless I restart the application in eclipse. I am using Start class

Getting Post DATA

2011-07-22 Thread Niranjan Rao
I am very new user of wicket, so please be gentle with me if this is obvious question or RTFM. I tried searching for docs but no luck. Using Wicket 1.5. I have bunch of pages mounted using mountPage(url, page class). This works fine and pages do get parameters so long as the request is GET. If

Wicket documentation suggestion

2011-07-22 Thread Niranjan Rao
Not sure if this is the right forum to post, but I presume many decision makers are lurking here. When googling for class documentation, google typically shows multiple results. I have caught myself looking at wrong version of docs many times. This is especially useful if there methods that are

Javascript applications

2011-07-21 Thread Niranjan Rao
Hi there, We are evaluating libraries like ExtJs or SmartClient to build the application. This sort of deviates standard wicket paradigm as most of the responses will be in json or xml format and will not need .html file associated with it. Personally I don't like idea of such kind of

Unit testing wicket

2011-07-18 Thread Niranjan Rao
Hi there, Followed instructions to get wicket working with Spring dependency injections. It does work in most of the scenarios. One scenario that is troubling me is unit testing. I have following simple class. So long as I have one unit test in the class, it works fine. If I add more than one

Re: Wicket/Spring/Junit/Maven - Don't understand what's going on.

2011-07-05 Thread Niranjan Rao
Hi folks, As everyone mentioned earlier this is/was not wicket problem. Problem is still not solved, but after lot of println statements, I have concluded that there is something wrong in my spring setup or the way maven/surefire sets up the classpath. The required files do exists at given

Re: Wicket/Spring/Junit/Maven - Don't understand what's going on.

2011-07-04 Thread Niranjan Rao
as you and I'm working with Embedded Derby datasource. Is there any way to come around this issue or am I missing something? *Bruno Borges* www.brunoborges.com.br +55 21 76727099 On Mon, Jul 4, 2011 at 2:26 AM, Niranjan Rao nhr...@gmail.com wrote: Sorry for the delay

Re: Wicket/Spring/Junit/Maven - Don't understand what's going on.

2011-07-03 Thread Niranjan Rao
Sorry for the delay in the response folks and thanks for the help. My gut feeling is also same - differences of classpaths. That's why I actually added println statements in the code to see what classpath code is seeing. I am working on isolated test case that I can send to this DL. Should be

Wicket/Spring/Junit/Maven - Don't understand what's going on.

2011-07-02 Thread Niranjan Rao
Hi, I am a new user of wicket and new member of this list.Actually this is my first post to this mailing list. I am trying to make Wicket/Spring/Junit/Maven combo work. To make life more interesting, I have multi module project and one module (WebApp) depends upon DAL module. I followed the