Preventing Copy Pasting URL's In Same Browser Session

2009-09-29 Thread Carlo Camerino
Hi everyone, We have this requirement in which we cannot allow the customer to copy paste the url that's appearing in the address bar into the same browser. For example in a different tab or in a new window. This can easily be done in Wicket Framework since the url has a corresponding page

Re: Preventing Copy Pasting URL's In Same Browser Session

2009-09-29 Thread Carlo Camerino
, 2009 at 1:41 PM, Carlo Camerino carlo.camer...@gmail.comwrote: Hi everyone, We have this requirement in which we cannot allow the customer to copy paste the url that's appearing in the address bar into the same browser. For example in a different tab or in a new window. This can

Re: Preventing Copy Pasting URL's In Same Browser Session

2009-09-30 Thread Carlo Camerino
...@gmail.com wrote: 2009/9/29 Carlo Camerino carlo.camer...@gmail.com: Hi everyone, We have this requirement in which we cannot allow the customer to copy paste the url that's appearing in the address bar into the same browser. For example in a different tab or in a new window. This can easily

Wicket Throwing Out Of Memory Errors When AutomaticMultipleWindowSupport is set to true

2009-09-30 Thread Carlo Camerino
Hi, I'm having problems . I think there is a bug in wicket in which the memory usage zooms up exponentially when i copy and paste a url into a new tab continuously. This only happens when I explicity set automaticmultiplewindowsupport to true. It seems to happen due to multiple page maps for the

Getting Wicket Examples To Work On Latest Liferay Or Glassfish Web Space Server

2009-10-13 Thread Carlo Camerino
Hi, I have successfuly deployed the wicket examples on apache jetspeed 2 with minimal or no configuration altering at all. I would like to try and deploy it on glassfish web space server however i'm encountering a problem in which When I try to add an application coming from liferay, nothing

Re: Getting Wicket Examples To Work On Latest Liferay Or Glassfish Web Space Server

2009-10-13 Thread Carlo Camerino
oops sorry i forgot to mention. i'm trying to make the portlets work by the way. On Tue, Oct 13, 2009 at 3:30 PM, Carlo Camerino carlo.camer...@gmail.com wrote: Hi, I have successfuly deployed the wicket examples on apache jetspeed 2 with minimal or no configuration altering at all. I

Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread Carlo Camerino
Hi, I was wondering what are the most efficient ways to separate different applications into one application? We have this use case in which we need to integrate two different wicket applications and make them appear as if they are running in one platform only. I tried using portlets but it

Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread Carlo Camerino
function will go to this application server, another function will go to this application server. On Wed, Oct 14, 2009 at 11:28 PM, ralf.eichin...@pixotec.de wrote: perhaps have a look on www.devproof.org. it is a portal like wicket application, which hosts different modules (JARs). Quoting Carlo

Re: Session timeout - AJAX-enabled controls

2009-11-19 Thread Carlo Camerino
yes we also have this prob lem For example i use a wicket in dicating ajax button in our logi n page. If thne user doesn t click a link that moves a page he will not be able to k now that the session has i ndeed expired. The screen o ly shows the rotating image but nothing happens. but if i

Re: Session timeout - AJAX-enabled controls

2009-11-22 Thread Carlo Camerino
it was fixed in 1.4.x versions. David Matousek I do not have that problem: if session expires any action the user does triggering a server round trip, AJAX or not, on a protected page redirects me to the login page... Can you post more details? Best, Ernesto 2009/11/20 Carlo

Modal Window Problems On Internet Explorer.

2009-11-30 Thread Carlo Camerino
Hi, I keep on experiencing this when I try to open a modal window in IE6, 7 and 8. I don't know if any of you encountered it from before. Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus It's happeningd on Internet Explorer

Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
Hi, if any of you could help, we have a problem in one of our wicket installations. We have a system that connects to another system. Sometimes the system's reply lasts for more than a minute. Wicket is having problem with regards to the page map being locked. I click for example on a page to

Re: Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
remains unlocked. 2010/1/21 Carlo Camerino carlo.camer...@gmail.com: Hi, if any of you could help, we have a problem in one of our wicket installations. We have a system that connects to another system. Sometimes the system's reply lasts for more than a minute. Wicket is having

Re: Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
of trying to trick framework internals? Ernesto On Thu, Jan 21, 2010 at 11:17 AM, Carlo Camerino carlo.camer...@gmail.comwrote: hi, i believe this is due to the fact that wicket has synchronized page maps for access. do you think it is safe to remove it? what are the precautions

Re: Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
is there anyway that i could just kill the previous thread? On Thu, Jan 21, 2010 at 3:05 AM, Carlo Camerino carlo.camer...@gmail.comwrote: if i can't do this, is there anyway that i could at least increase the timeout of the pagemap to greater than 1 minute? 1 minute would be too little i

Re: Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
feedback... It uses the same approach Jeroen mentioned. Best, Ernesto On Thu, Jan 21, 2010 at 12:21 PM, Jeroen Steenbeeke j.steenbeeke.ml@ gmail.com wrote: If you do it my way, then you don't have to 2010/1/21 Carlo Camerino carlo.camer...@gmail.com: is there anyway that i could just

Re: Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
where do i get this class? AjaxStoppableSelfUpdatingTimer ? On Thu, Jan 21, 2010 at 3:43 AM, Carlo Camerino carlo.camer...@gmail.comwrote: hi, please do. thanks a lot! On Thu, Jan 21, 2010 at 3:38 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Carlo, If you need some code

Re: Page Map Is Locked, Can't Switch Pages When A Transaction Is Ongoing

2010-01-21 Thread Carlo Camerino
use internally. Must have confused it with some basic wicket class. You can use AbstractAjaxTimerBehavior to similar effect. Just override the onTimer method 2010/1/21 Carlo Camerino carlo.camer...@gmail.com: where do i get this class? AjaxStoppableSelfUpdatingTimer ? On Thu, Jan 21

Wicket And Double Form Submission

2009-04-10 Thread Carlo Camerino
Hi, I was just wondering how you guys implement double posting (double form Submission) measures for wicket. I was able to implement client side protection and was wondering if there any way to do it via server side also Is there one like struts token approach that I can use? What is the best

Re: Wicket And Double Form Submission

2009-04-10 Thread Carlo Camerino
Does it work even if i use IndicatingAjaxButton and not the SubmitLink? On Sat, Apr 11, 2009 at 3:10 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Wicket uses redirect by default to avoid double submission.. ** Martin 2009/4/10 Carlo Camerino carlo.camer...@gmail.com: Hi

Re: Wicket And Double Form Submission

2009-04-10 Thread Carlo Camerino
On Sat, Apr 11, 2009 at 3:10 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Wicket uses redirect by default to avoid double submission.. ** Martin 2009/4/10 Carlo Camerino carlo.camer...@gmail.com: Hi, I was just wondering how you guys implement double posting

Page Redirect Question

2009-04-13 Thread Carlo Camerino
Hi I have This Page, This page is handled by my link public UploadFeedBackPageMain() { User user = this.getSessionUser(); if (user.getCommunityType().equalsIgnoreCase(COURIER)) { logger.debug(Directing to upload feedback file.); Courier courier =

Wicket HttpSession Thread Safety

2009-04-20 Thread Carlo Camerino
Hi, I would just like to post an inquiry on how wicket handles httpsession concurrency. When the application usage volume goes way up, it seems that httpsession is problematic. In struts for example, if you use request.getSession() without synchronized access you might encounter problems My

Re: Strange behavior with palette (1.3.4) and IE7

2009-04-22 Thread Carlo Camerino
I think we are also expericning this problem same as yours If you will allow, can I have a copy of your fix for this one? what files did you modify? Thanks Carlo 2009/4/22 Eyal Golan egola...@gmail.com I fixed the annoying thing by overriding the html panel of the palette (which I did

Re: Native memory leak using wicket-1.2.6 / IBM JDK 1.4 / Windows 2003 Server SP1

2009-04-23 Thread Carlo Camerino
did yous witch your aplication to deployment mode. Using development mode in websphere using wicket will cause it to have memory leaks. Even in 1.3.5 we experience it. Try switching to deployment mode and see if helps On Thu, Apr 23, 2009 at 10:20 PM, Martijn Dashorst martijn.dasho...@gmail.com

Re: Native memory leak using wicket-1.2.6 / IBM JDK 1.4 / Windows 2003 Server SP1

2009-04-27 Thread Carlo Camerino
yes you need to set the max heap and min heap. It depends on a 32-bit 4 gig machine usually it's nice to set it to 256 and 1524 to be safe. There have been problems when you set it too high on our previous implementations. i'm not really sure as it's hard to size an application properly. One

Re: Possible to retrieve previous page from PageMap

2009-04-27 Thread Carlo Camerino
Try this I have this method for getting the current page id and version. protected PageIDVersion getCurrentPageIDVersion() { PageIDVersion pageIDVersion = new PageIDVersion(getPageMapEntry().getNumericId(), getCurrentVersionNumber()); return pageIDVersion; } I send it to the

Re: Tools for Managing a Wicket Project

2009-04-29 Thread Carlo Camerino
try mercurial instead of subversion. (we're starting migration to mercurial) We are on our way to migrate there. Hudson is very easy to configure. Try eclipse and maven 2 also. one thing that i'd like to have though is a way to track common custom components. We have developed a lot of common

Wicket Offline Applications

2009-05-01 Thread Carlo Camerino
Hi, Is there any project which has Wicket And Google Gears Integration? Wicket has really done a lot of us in speeding up development time. Coming from a struts we saw the power of Wicket in terms its reusability and i've noticed that wicket already did most of the tasks that we would have to

Re: Wicket Offline Applications

2009-05-01 Thread Carlo Camerino
-based implementation? Wouldn't it be kinda important to make sure the main server knows where everything is, when money is concerned? On Fri, May 1, 2009 at 4:04 AM, Carlo Camerino cmcamer...@gmail.com wrote: Hi, Is there any project which has Wicket And Google Gears Integration

Re: Wicket Offline Applications

2009-05-01 Thread Carlo Camerino
...@carmanconsulting.comwrote: ah, then proceed! :) It's an interesting idea. Don't know how it would work, though. On Fri, May 1, 2009 at 10:31 AM, Carlo Camerino cmcamer...@gmail.com wrote: it's not for the public to use. but rather for people within the banks. internal applications. sometimes

Re: Tools for Managing a Wicket Project

2009-05-01 Thread Carlo Camerino
. Regards, Linda Carlo Camerino wrote: What does sonar do? Where can I get effective java? That's one of our problems actually. When we go on site in clients we have a hard time going to our centralized tools. I have been looking for an offline bugzilla or trac of some sort. Similar

Re: Tools for Managing a Wicket Project

2009-05-01 Thread Carlo Camerino
we used to be bugzilla, mediawiki, continuum statck.we moved to Trac. It was simply amazing with all those plugins. Code Review WIth Trac Is Good. Review Board is also good software but it doesn't suit our programming needs. On Fri, May 1, 2009 at 11:38 PM, Matt Welch matt...@welchkin.net wrote:

Re: Wicket Offline Applications

2009-05-01 Thread Carlo Camerino
us know if you have any success. -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 1, 2009 at 3:04 AM, Carlo Camerino cmcamer...@gmail.com wrote: Hi, Is there any project which has Wicket And Google Gears Integration? Wicket has really done a lot of us

Re: Wicket Offline Applications

2009-05-03 Thread Carlo Camerino
you and tell you something awesome). Or just tell me the name of the bank. I will never become its client :) Carlo Camerino wrote: it's not for the public to use. but rather for people within the banks. internal applications. sometimes central connection is not available. On Fri, May

Re: Wicket Offline Applications

2009-05-03 Thread Carlo Camerino
everything and resolve conflicts in the data... But wicket doesnt really play well for this at all. GWT or just another fat client like air or just java webstart would be better On 03/05/2009, Carlo Camerino cmcamer...@gmail.com wrote: hmm, you have a point here.however, every requirement

Re: Wicket Offline Applications

2009-05-03 Thread Carlo Camerino
for this type of applications for now. btw, it's not that easy to target a larger set of people if you are using Fat Web clients. Just my two cents. bandwidht, cpu considerations, etc... maybe it depends on your geographical location On Sun, May 3, 2009 at 7:27 PM, Carlo Camerino cmcamer...@gmail.com

Re: Lazy Open Session In View with AOP

2009-05-06 Thread Carlo Camerino
spring has implemented itw own opensessioninview filter., i dont' think that you have to crete your own Spring has a class like this which you can declare in your web.xml OpenSessionInViewFilter On Thu, May 7, 2009 at 2:29 AM, Christian Helmbold christian.helmb...@yahoo.de wrote: Hello, I

Re: Out Of Memory with Websphere 6.1 Wicket 1.3.5

2009-05-11 Thread Carlo Camerino
also did you install the websphere fix packs? On Mon, May 11, 2009 at 9:58 PM, Carlo M. Camerino cmcamer...@gmail.com wrote: did you set your application to deployment mode? - Original Message - From: Serge Libotte slibo...@gmail.com To: users@wicket.apache.org Sent: Monday, May 11,

Re: Out Of Memory with Websphere 6.1 Wicket 1.3.5

2009-05-11 Thread Carlo Camerino
-8859-1); Thanks for your help, Serge. 2009/5/11 Carlo Camerino cmcamer...@gmail.com: also did you install the websphere fix packs? On Mon, May 11, 2009 at 9:58 PM, Carlo M. Camerino cmcamer...@gmail.com wrote: did you set your application to deployment mode? - Original Message

Re: Session Undo

2009-05-12 Thread Carlo Camerino
hi, was just wondering if this is possible if i'm using the current page as a reference to the previous page for the next screen. if i do this will i have errors? thanks On Wed, May 13, 2009 at 12:46 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: it really depends on what you want to

Re: How To Call A Method When Browser Is Closed

2009-05-18 Thread Carlo Camerino
um, sory i didn't get it, what do i have to register, the page itself? what's pinh (sorry) So i create a map and then i create a scheduled thread? So that thread has to constantly poll the map? is there a method in the page that I can use for this? On Mon, May 18, 2009 at 2:30 PM, Igor Vaynberg

TextTemplateHeaderContributor Questions

2009-07-29 Thread Carlo Camerino
Hi everyone, I have some questions regarding TextTemplateHeaderContributor. I can use it properly but I want to use it as a referenced script rather than something that is included in the html page. What i mean is i don't want to see script lang = javascript type = text/javascript

Re: TextTemplateHeaderContributor Questions

2009-07-29 Thread Carlo Camerino
)); This is for 1.3.5. Kind Regard, Frank -Original Message- From: Carlo Camerino [mailto:carlo.camer...@gmail.com] Sent: Wednesday, July 29, 2009 9:08 AM To: users@wicket.apache.org Subject: TextTemplateHeaderContributor Questions Hi everyone, I have some questions regarding

Re: TextTemplateHeaderContributor Questions

2009-07-29 Thread Carlo Camerino
)); This is for 1.3.5. Kind Regard, Frank -Original Message- From: Carlo Camerino [mailto:carlo.camer...@gmail.com] Sent: Wednesday, July 29, 2009 9:08 AM To: users@wicket.apache.org Subject: TextTemplateHeaderContributor Questions Hi everyone, I have some questions regarding

Re: TextTemplateHeaderContributor Questions

2009-07-29 Thread Carlo Camerino
can't seem to find one in the javadocs, hmmm, i guess it'ss better to put in html so that if values change, the javascript won't be cached. i don't know if its the reason for this. On Wed, Jul 29, 2009 at 10:40 PM, Mathias Nilsson wicket.program...@gmail.com wrote: have you looked at the

How To Kill Previous Page

2009-08-07 Thread Carlo Camerino
Hi, I would like to ask if it's possible to kill the previous page out of the pagestore. I have this requirement in which i have a view screen which can be able to delete or edit an entity. My problem is that when the client copies the url and pastes it back the client can go back to the

Re: How To Kill Previous Page

2009-08-07 Thread Carlo Camerino
what happens when you try to access a page that was taken away from the page map? i'm still looking at though, and probably would need to implement it soon. thanks for the reply On Fri, Aug 7, 2009 at 7:41 PM, Alex Objelean alex_objel...@yahoo.comwrote: getPage().getPageMap().remove(); ?

Help, Problems With Wicket Bookmarkable Page On Sun Web Server Pass Through

2010-06-26 Thread Carlo Camerino
Hi, Need help on this. We currently deployed a wicket application on glassfish. The application's home page is mounted as /login - declared in the application as a mountable bookmarkable page. when i try to access it directly in glassfish http://localhost:8080/application/login i don't have a

Re: Help, Problems With Wicket Bookmarkable Page On Sun Web Server Pass Through

2010-06-26 Thread Carlo Camerino
:37 PM, Carlo Camerino carlo.camer...@gmail.comwrote: Hi, Need help on this. We currently deployed a wicket application on glassfish. The application's home page is mounted as /login - declared in the application as a mountable bookmarkable page. when i try to access it directly in glassfish

How To Add Javascript With An Array Into A Wicket Page

2011-01-22 Thread Carlo Camerino
Hi, I would like to add some javascript which contains an array to my wicket page. it would be rendered on page load What is the best way to dothis? The array here should be coming from java code an is not static.. What is the best way that I could incorporate this into my wicket code?

How Does Wicket Populate Form Components And Other Stuff

2011-04-03 Thread Carlo Camerino
HI, I was just wondering, what mechanism does Wicket uses to get values from Java beans? Is reflection used or does wicket use a library to do this? I had a very slow experience when using Reflection, how does Wicket do it? Thanks Carlo

Re: How Does Wicket Populate Form Components And Other Stuff

2011-04-03 Thread Carlo Camerino
Does wicket use reflection for this purpose? On Sun, Apr 3, 2011 at 8:50 PM, Carlo Camerino carlo.camer...@gmail.comwrote: HI, I was just wondering, what mechanism does Wicket uses to get values from Java beans? Is reflection used or does wicket use a library to do this? I had a very slow

Re: How Does Wicket Populate Form Components And Other Stuff

2011-04-03 Thread Carlo Camerino
, 2011 9:11 AM, Sven Meier s...@meiers.net wrote: Yes, take a look at org.apache.wicket.util.lang.PropertyResolver Sven On 04/03/2011 03:01 PM, Carlo Camerino wrote: Does wicket use reflection for this purpose? On Sun, Apr 3, 2011 at 8:50 PM, Carlo Camerinocarlo.camer...@gmail.com

Questions Regarding Wicket URL Generation

2011-05-11 Thread Carlo Camerino
Hi There, I'm mounting bookmarkable pages in the Wicket Application. For example, mount(index, IndexPage.class); mount(confirmPage, ConfirmPage.class); I'm quite successful when using the following code setResponsePage(IndexPage.class); http://localhost:8080/application/index However, when I