Wicket Problems On Ubuntu

2009-03-17 Thread carloc
urier-management_war.ear/courier-management.war/WEB-INF/classes/com/ccti/carnelian/web/login/LoginPage.html sun.io.MalformedInputException Carloc -- View this message in context: http://www.nabble.com/Wicket-Problems-On-Ubuntu-tp22554217p22554217.html Sent from the Wicket - User mailing list archi

Re: sessionsize of requestlogger

2009-01-12 Thread carloc
ght: false}); })

Re: sessionsize of requestlogger

2009-01-12 Thread carloc
As an added observation, sessionsize of deployment mode is much lower than in development mode. Is there any reason to this? carloc wrote: > > Hi Everyone, > > RequestLogger - > time=103,event=Interface[target:AjaxPagin

sessionsize of requestlogger

2009-01-12 Thread carloc
Hi Everyone, RequestLogger - time=103,event=Interface[target:AjaxPagingNavigationLink(userListForm:userGroupContainer:userGroupCheckGroup:ajaxPagingNavigation:navigation:9:pageLink), page: com.ccti.base.web.usergroup.VedUserGroupPage(2), interface: IBehaviorListener.onRequest],re

Re: Getting Previous Page (Help)

2009-01-11 Thread carloc
he page version. That's what I used to retrieve the previous page? Seems to work since session size remained at 60k Before it would double in the 2nd page. carloc wrote: > > Hi, > > We have this application and each page has a wizard like functionality in > which you fill

Getting Previous Page (Help)

2009-01-11 Thread carloc
Hi, We have this application and each page has a wizard like functionality in which you filll up this page first, and then go to the next page. Each page I have has about 50k used in memory according to the RequestLogger. The current solution I have right now to go to previous page is to pass t

SessionStore and Detachable Models

2008-09-18 Thread carloc
hi everyone, if i use the secondlevelcachesessionstore wicket writes session state into the disk instead of the httpsession right? It is also the one that is used by default. so is it safe for me to not use abstractdetachablemodels and just use compoundpropertymodels since memory is not

Jquery Attached Behaviors Disappearing During Ajax Calls

2008-04-30 Thread carloc
Hi, I'm using JQuery together with Wicket. I have this problem that whenever I update a component through ajax, the behaviors I attached using jquery disappear already. For example I have a textbox which has this $('textbox').click(function() { alert('hello') }) This would work while the textb

Re: Wicket, Hibernate and Models

2008-03-13 Thread carloc
What should I use when I am accessing hibernate? Should I use a ListView or should I use a refreshing view?\ In the api it says to use refreshingview instead of using listview when using database collections what is better to use? carloc wrote: > > Hi everyone, > > I have been re

Wicket, Hibernate and Models

2008-03-13 Thread carloc
Hi everyone, I have been reading wicket in action recently and I have seen pitfalls of hibernate section. I was wondering about the stuff about hibernate and memory leaks due to hibernate proxy objects maintaining a reference to the session with them Am I doing this wrong then? @SpringBean

Wicket Tester And OpenSessionInView

2008-03-02 Thread carloc
Hi , I seem to be getting this Exception when I run integration tests using WicketTester... I use lazy objects through the opensessioninviewfilter. How can I get WicketTester to use this filter? Is there anyway that this could be resolved? org.hibernate.LazyInitializationException: could not

wicket Jquery Weird Behavior

2008-03-02 Thread carloc
Hi guys I've just found this out... When I use the $ function of jquery directly within my page, it's causing my page to be cosntructed twice. I included something like $(function() { $('#leftFrame').css('z-index', 200); }); It's causing my page to reload twice. I was trying to find out what

Re: Markup Reloading

2008-03-02 Thread carloc
> if this is not working for you then something is not properly > configured, eg when you save your .css file your ide does not copy it > out of src folder into classes folder... > > -igor > > > On Sat, Mar 1, 2008 at 9:57 AM, carloc <[EMAIL PROTECTED]> wrote: >> &g

Re: Markup Reloading

2008-03-01 Thread carloc
; > -igor > > > On Sat, Mar 1, 2008 at 9:57 AM, carloc <[EMAIL PROTECTED]> wrote: >> >> Hi Guys, >> >> I've noticed that everytime I want to change something in my markup I >> would >> need to restart >> the server as the c

Markup Reloading

2008-03-01 Thread carloc
Hi Guys, I've noticed that everytime I want to change something in my markup I would need to restart the server as the changes don't take effect immediately. Is there anything I can do to avoid this behavior? I'm trying to adjust my css and i'm spending more time restarting the server... Thanks

Re: ReloadingWicketFilter

2008-02-27 Thread carloc
THanks, I'll try again but I'm getting exceptions maybe I didn't do it correctly yet. Carlo igor.vaynberg wrote: > > it has examples in its javadoc afaik > > -igor > > > On Wed, Feb 27, 2008 at 10:40 AM, carloc <[EMAIL PROTECTED]> wrote: >>

Wicket Tester And Code Output

2008-02-27 Thread carloc
Hi, I'm using Wicket Tester to render my pages, is there a way by which I can see the code that is rendered? For example I have, wicketTester.startPage(new HomePage()); assertRenderedPage(HomePage.class); I want to be able to see the html contents being printed in the console.. like HO

ReloadingWicketFilter

2008-02-27 Thread carloc
Hi everyone, I just would like to ask how I can use the reloadingwicketfilter. I get an exception that the markup file cannot be located everytime i use the reloading wicketfilter thanks -- View this message in context: http://www.nabble.com/ReloadingWicketFilter-tp15719950p15719950.html Sent

Re: Wicket And EasyMock

2008-02-24 Thread carloc
Actually wickettester works fine with a normal button but doesn't work with an indicating ajax button. -- View this message in context: http://www.nabble.com/Wicket-And-EasyMock-tp15666876p15666962.html Sent from the Wicket - User mailing list archive at Nabble.com. ---

Wicket And EasyMock

2008-02-24 Thread carloc
Hi I'm trying to use wicketTester and FormTester together with easymock. I seem to be getting a lot of notserializableexceptions and my form won't submit properly. Is there anything that I should do? ERROR - Objects- Error serializing object class com.ccti.bo.login.LoginPage [

Re: Harnessing Data From Components

2008-02-13 Thread carloc
hortcut getModelObject() on a component. >> Setting data is done in a similar way. >> >> Maurice >> >> >> On Feb 12, 2008 3:11 PM, carloc <[EMAIL PROTECTED]> wrote: >> > >> > hi everyone, >> > >> > I would like to ask how

Wicket Ideal Bandwidth

2008-02-13 Thread carloc
Hi guys, What do you think will be the ideal bandwidth to use when you are using Wicket? Will it work good on a 128kbps connection? what's the beset bandwidth that you could recommend? carlo -- View this message in context: http://www.nabble.com/Wicket-Ideal-Bandwidth-tp15452645p15452645.html

Harnessing Data From Components

2008-02-12 Thread carloc
hi everyone, I would like to ask how I could actually get data from the different components in the wicket examples... For example in the YUI selection or in the RatingPanel... What will my code look like if I have a submit button and I want to know the rating? (e.g. how many stars were pressed)

Re: Page Store And Clustering

2008-02-10 Thread carloc
; > johan > > > > > On Feb 9, 2008 11:49 AM, carloc <[EMAIL PROTECTED]> wrote: > >> >> Hi, >> >> Please correct me if i'm wrong, i've read that there are three types of >> pages stores namely >> HttpSession >&

Page Store And Clustering

2008-02-09 Thread carloc
Hi, Please correct me if i'm wrong, i've read that there are three types of pages stores namely HttpSession Database and DiskStore What type of page store should I use if I am to design my application to be ready for clustering? Will disk store be still safe to use? Thanks Carlo -- View this

Re: Conversion Error Messages

2007-11-22 Thread carloc
with the conversion > type, > such as Long or ZipCode). > > > Martijn > > On Nov 22, 2007 10:18 AM, carloc <[EMAIL PROTECTED]> wrote: > >> >> Hi Guys, >> >> I would like to ask help on something. >> I have a text box which accepts t

Conversion Error Messages

2007-11-22 Thread carloc
Hi Guys, I would like to ask help on something. I have a text box which accepts the field which is supposed to be a double. everytime that a user enters a field that isn't a double the error message 'Field is not a valid double' appears. However I want it to display a different error message this

Re: Applet Question

2007-09-29 Thread carloc
file there. > Then you would change your archive attribute to read: > archive="/applet/imageviewer.jar". > > Craig. > > On 9/27/07, carloc <[EMAIL PROTECTED]> wrote: >> >> Hi Everyone, >> >> I'm trying to load an applet in wicket. >&g

Applet Question

2007-09-27 Thread carloc
Hi Everyone, I'm trying to load an applet in wicket. The code looks like this If I paste this code in my index.html page which is not run by wicket, the code runs properly, however if I try to put it in a wicket page, the code does not run. In the java console of firefox it says that it can

Wicket Dialogs

2007-09-24 Thread carloc
Is there any component in wicket similar to this component? Something like wicket dialogs http://developer.yahoo.com/yui/examples/container/panel_clean.html -- View this message in context: http://www.nabble.com/Wicket-Dialogs-tf4507886.html#a12856206 Sent from the Wicket - User mailing list ar

Re: Button Command Design Pattern

2007-09-23 Thread carloc
great, i'm able to catch most exceptions in one place. thanks igor.vaynberg wrote: > > i wouldnt say it is an antipattern. > > -igor > > > On 9/23/07, carloc <[EMAIL PROTECTED]> wrote: >> >> >> Hi guys I was just wondering if this is an an

Button Command Design Pattern

2007-09-23 Thread carloc
Hi guys I was just wondering if this is an antipattern in wicket. Instead of using anonymous Button classes, I created a Button Command Class which I override. I also created a class which indicates the button that I need. I did this so I can be sure that I will be able to catch all the default ex

Re: Versioning Problems With DataTable, Spring Hibernate

2007-09-22 Thread carloc
I already solved it. I overrided the process() method of the form and caught the exception there. carloc wrote: > > Hi guys, I need clarity on this... > > This is what my detachable model > public CCTIDetachableModel extends Loadable DetachableModel { > > private

Versioning Problems With DataTable, Spring Hibernate

2007-09-19 Thread carloc
Hi guys, I need clarity on this... This is what my detachable model public CCTIDetachableModel extends Loadable DetachableModel { private String id; private Integer version; private Dao dao; public Object load() { MyObject myobj = dao.get(id); if (version == null) { version = myob

Re: Question With Detachable Models

2007-09-15 Thread carloc
Somehow, it seems that transient objects are stored in the session. WHen I try to look at the session in eclipse's debug mode, I can actually see my User object in there even though I marked as transient. I'm not really sure about this behavior though. Kent Tong wrote: > > > Jonathan Locke w

Re: Question With Detachable Models

2007-09-15 Thread carloc
a transient SoftReference and >> take the hit of implementing a load method which reads your object from >> some kind of object storage (or cache). >> >> There is no free lunch. You are ultimately stuck with a tradeoff: either >> use the memory and/or bandwidth O

Question With Detachable Models

2007-09-14 Thread carloc
Hi, I would like to ask this. Are my objects still being stored in the session when I use this kind of query. I don't requery the objects using a detachable model. package com.ccti.web.query; import org.apache.wicket.model.LoadableDetachableModel; public class QueryDetachableModel extends Loa