Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-26 Thread Vincent Jenks
IDebugSettings.serializeSessionAttributes instead of relying on logger set to debug mode for the session store/action -Igor On 7/10/06, Vincent Jenks [EMAIL PROTECTED] wrote: Beautiful, it all built and it works in the app. Thanks Igor! On 7/10/06, Igor Vaynberg [EMAIL PROTECTED

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-26 Thread Vincent Jenks
[INFO] Final Memory: 1M/2M [INFO] On 7/26/06, Vincent Jenks [EMAIL PROTECTED] wrote: I just downloaded 1.2.1, how do I take advantage of this? I'm hoping I can use 1.2.1 on Glassfish w/o having to custom-build it like I did

[Wicket-user] set static values on DropDownChoice

2006-07-18 Thread Vincent Jenks
This seems like a lame question but I'm struggling again w/ the DropDownChoice control (using 1.2). I simply want to set static values to a DropDownChoice control so they can be drawn out later in the form's input class when it's submitted. I thought I had done this before but can't find that I

[Wicket-user] More examples of sorting?

2006-07-18 Thread Vincent Jenks
Is there something smaller simpler out there I could refer to for sorting? I've glanced at the DataView example a few times and once I start digging in it just seems unwieldly to me. I'm simply trying to sort a List of entities and the getContactsDB() stuff in the examples is a bit complicated

Re: [Wicket-user] More examples of sorting?

2006-07-18 Thread Vincent Jenks
(first, last, getsort().getproperty(), getsort().getcount(); } } if you have more specific questions i will be happy to help you -Igor On 7/18/06, Vincent Jenks [EMAIL PROTECTED] wrote: Is there something smaller simpler out there I could refer to for sorting? I've glanced

Re: [Wicket-user] More examples of sorting?

2006-07-18 Thread Vincent Jenks
-Igor On 7/18/06, Vincent Jenks [EMAIL PROTECTED] wrote: Currently I don't have anything like the ContactsDatabase class in 'examples' - I'm just pulling a list of data and displaying in a ListViewbut it appears now that I'm browsing through I'm going to have to create one

Re: [Wicket-user] More examples of sorting?

2006-07-18 Thread Vincent Jenks
the sort for you. as far as paging it would translate directly to session.setFirstResult(queryparam.getFirst()).setMaxResults( queryparam.getCount()); -Igor On 7/18/06, Vincent Jenks [EMAIL PROTECTED] wrote: Well, I don't have DAOs in this particular project - it's an EJB3 project where

Re: [Wicket-user] More examples of sorting?

2006-07-18 Thread Vincent Jenks
approach can be adapted. My code is not difficult to read if you are at all familiar with DataTable and SortableDataProvider. I'd be happy to answer any questions. /Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vincent Jenks Sent: Tuesday

Re: [Wicket-user] Wicket Hibernate Application Transactions

2006-07-17 Thread Vincent Jenks
I've been successful w/ exactly what Iman is concerned with - keeping objects alive between requests just isn't necessary. With detachable-models, you can request your POJOs - and they effectively become detached (outside of Hibernate session context). You can pass them between pages and persist

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-10 Thread Vincent Jenks
/new-maven-repo-available-with-snapshots-tf1851211.html#a5054042 -Igor On 7/10/06, Vincent Jenks [EMAIL PROTECTED] wrote: No such luck - that didn't work any better. when doing 'mvn install' in the top-level WICKET_1_2 directory I get this error: Downloading: http://repo1.maven.org

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-10 Thread Vincent Jenks
Beautiful, it all built and it works in the app. Thanks Igor! On 7/10/06, Igor Vaynberg [EMAIL PROTECTED] wrote: mvn install -Dmaven.test.skip=true -Igor On 7/10/06, Vincent Jenks [EMAIL PROTECTED] wrote: OK, that definitely helped...but Results : Tests run: 410, Failures: 0

Re: [Wicket-user] LoadableDetachableModel question

2006-07-07 Thread Vincent Jenks
I use info() On 7/7/06, Jerry Smith [EMAIL PROTECTED] wrote: Using a typical situation like: IModel myListModel = new LoadableDetachableModel() { protected Object load() { Object result = null; try { result = someServiceOrDao.findSomeListOfObjects(); }

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
, Vincent Jenks [EMAIL PROTECTED] wrote: Alright, I stuck a log4j.properties into my src folder, rebuilt, redeployed - still get the same exception...here's my properties file (copied from wicket-examples): log4j.debug=false log4j.rootLogger=INFO log4j.logger.org=INFO

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
, Vincent Jenks [EMAIL PROTECTED] wrote: I don't know, I would believe that if I weren't able to make a Stateful bean and use it exactly how I did in Wicket, outside of this project. I setup a test project and their stateful/stateless beans work flawlessly when tested against JSP/Servlets

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
of my little test app - I'd be happy to send it along. On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: Well, this was the first app I've ever built w/ EJB technology of *any* version...it's sort of a pilot app for future in-house effortsso far it's worked out great. So, correct me if I'm

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
, Vincent Jenks [EMAIL PROTECTED] wrote: OK, I've created a small test-app in Netbeans where I'm using a Wicket page and have overridden ISessionFactory in the app class to create a session. I have a page where I call the stateful bean, create it and store it in session if it's non-existent

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
serializeable object. On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: OK, I've created a small test-app in Netbeans where I'm using a Wicket page and have overridden ISessionFactory in the app class to create a session. I have a page where I call the stateful bean, create

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
for log4j.properties where glassfish will pick it up. usually it is in war/web-inf/classes -Igor On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: For whatever reason, I'm unable to supress this exception in the storefront application (where I really need it.) I've tried wrapping a try/catch around

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
] wrote: paste your complete log4j.properties file -Igor On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: That's where I put it - nothing changed so you're obviously right...it won't make a difference anyways. Hmm...this is bad...this puts me in a rough spot as I have no idea how

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
own weird logger factory, just like jetty does. -Matej Eelco Hillenius wrote: In fact log4j.logger.wicket=INFO should be enough. Eelco On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: log4j.debug=false log4j.rootLogger=INFO log4j.logger.org=INFO log4j.logger.com=INFO

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
...they're *almost* as good as you guys! :) On 7/6/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Did you try asking around on the glassfish list/ IRC channel (if they have one)? Eelco On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: I have no idea...but I'm lost at this point. I have both

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
that portion of code, and deploy it that way -Igor On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: At 8:30 this morning...it's now 2:30pm here and I was the *last* person to post to this forum at all...which is weird...it's normally pretty busy. http://forums.java.net/jive

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Vincent Jenks
/06, Igor Vaynberg [EMAIL PROTECTED] wrote: naaah use maven2 make the change in the src folder type mvn package and you will have a .jar ready in the target dir -Igor On 7/6/06, Vincent Jenks [EMAIL PROTECTED] wrote: OK, checked it out and I made my changebut bare w/ me...I'm almost

[Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-05 Thread Vincent Jenks
I'm testing an app I just finished and is currently running on JBoss on Sun's Glassfish (SJAS 9.0) to test compatibility and see if it's a viable option going forward w/ our enterprise efforts. I seem to be having an issue w/ storing objects in session. Wicket runs fine until I utilize the

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-05 Thread Vincent Jenks
On 7/5/06, Vincent Jenks [EMAIL PROTECTED] wrote: I'm testing an app I just finished and is currently running on JBoss on Sun's Glassfish (SJAS 9.0) to test compatibility and see if it's a viable option going forward w/ our enterprise efforts. I seem to be having an issue w/ storing

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-05 Thread Vincent Jenks
serialize the same way so when the container does it its not a problem, but when wicket does it it is a problem. -Igor On 7/5/06, Vincent Jenks [EMAIL PROTECTED] wrote: I don't know, I would believe that if I weren't able to make a Stateful bean and use it exactly how I did in Wicket, outside

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-05 Thread Vincent Jenks
-param I added it, rebuilt, redeployed, same exception when using a SFSB. On 7/5/06, Igor Vaynberg [EMAIL PROTECTED] wrote: the stuff in session is only serialized because you have the logger set to debug, if you turn that off it should be fine. -Igor On 7/5/06, Vincent Jenks [EMAIL PROTECTED

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-05 Thread Vincent Jenks
in log4j config that code wont run as it is there mainly to help you find serialization errors, but in this case its hitting a spot that shouldnt usually be a problem. -Igor On 7/5/06, Vincent Jenks [EMAIL PROTECTED] wrote: I'm not entirely sure what you meant by having the logger set

[Wicket-user] @EJB Injection

2006-06-27 Thread Vincent Jenks
In Java EE 5, instead of using JNDI lookups to get a stub to an EJB we'll have the ability to just inject it w/ a simple @EJB annotation. I see that JBoss will support this for Servlets JSP in the near-future...what will be needed to support this in Wicket? Anything at all? There are a couple

Re: [Wicket-user] @EJB Injection

2006-06-27 Thread Vincent Jenks
moved to extensions. -Igor On 6/27/06, Vincent Jenks [EMAIL PROTECTED] wrote: In Java EE 5, instead of using JNDI lookups to get a stub to an EJB we'll have the ability to just inject it w/ a simple @EJB annotation. I see that JBoss will support this for Servlets JSP in the near-future

Re: [Wicket-user] Plan to develop a portal

2006-06-20 Thread Vincent Jenks
. Wouldn't it be a better idea to look at JSR168 portal servers and see how Wicket can be fit in? Janne still has the idea of working on Wicket support for 2.0; maybe you can tickle him a bit ;) Eelco On 6/14/06, Vincent Jenks [EMAIL PROTECTED] wrote: So, I finally completed our first

Re: [Wicket-user] Plan to develop a portal

2006-06-15 Thread Vincent Jenks
to the design, I didn't design either of them and really don't care how they look - we have a designer here that did both of them and takes care of that. Is there something in particular that's not sleek about it? On 6/14/06, Vincent Jenks [EMAIL PROTECTED] wrote: So, I finally completed our first Wicket

Re: [Wicket-user] Plan to develop a portal

2006-06-15 Thread Vincent Jenks
I'm kind of glad we're having this discussion here - it's not really off-topic since I'm still half-wanting to be convinced that I could use Spring in this project :D So, you're saying I don't *have* to wire classes together w/ XML in Spring but I could use

Re: [Wicket-user] Plan to develop a portal

2006-06-15 Thread Vincent Jenks
why would you want to be convinced? :) Because I *am* interested in trying it in a new project but I guess I'm bull-headed and stubborn...and I'm not entirely convinced it's useful enough yet. i dont know, i would use hibernate. it is evolving at a higher velocity then the spec and it has

Re: [Wicket-user] Plan to develop a portal

2006-06-15 Thread Vincent Jenks
point is, its nice to have the option. and there are plenty cases where criteria api is much more readable then hql, not to mention it is much easier to build search queries, etc instead of using a whole lot of nasty string concatenations. where 1=1 look familliar? :) Sure does! :) And

Re: [Wicket-user] Plan to develop a portal

2006-06-15 Thread Vincent Jenks
Well, on my dev machine (my laptop) it's a single cpu 2ghz, 2gb ram. The production server is a dual 3ghz w/ HT proc w/ 4gb ram. Deploying to production takes about 2-3 secondsit's a blip on the radar. I'll give the phonebook app a test and let you know. On 6/15/06, Igor Vaynberg [EMAIL

Re: [Wicket-user] Developing Wicket Menu Widgets

2006-06-14 Thread Vincent Jenks
I think you might actually have a good point here - it might be nice to have a Wicket Widgets project strictly for custom widgets. It would be a nice way to organize extra widgets. On 6/14/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: I know of Wicket Extensions and Wicket Stuff etc but I look

[Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
So, I finally completed our first Wicket experiment - the infamous storefront I've been blathering about endlessly: http://www.snakeriverfarms.com/ - click the animated gif on the bottom-left of the page. I'm hoping it leads to more Wicket-based projects for me here at work but I've got definite

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
. However, I think it'd be a great project and from what I've seen available in portals out there, Wicket would give me enough leverage to create something really competitive. On 6/14/06, Vincent Jenks [EMAIL PROTECTED] wrote: So, I finally completed our first Wicket experiment - the infamous

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
On 6/14/06, Vincent Jenks [EMAIL PROTECTED] wrote: So, I finally completed our first Wicket experiment - the infamous storefront I've been blathering about endlessly: http://www.snakeriverfarms.com/ - click the animated gif on the bottom-left of the page. I'm hoping

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
go ahead and create a sf.net user (if you dont have one already) and email me the name so i can add you as a committer to wicket-stuff. from there all you have to do is create the project skeleton, check it in, and you are ready to go. I think I already am, actually? I talked to Eelco some

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
agreed, and i might be interested in contributing to this also. but that depends on the stack you choose. i like spring+hibernate because it is more lightweight and can run off jetty and spring provides a better ioc container then ejb3 which might be important for autodiscovery/plugins

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
and for a portal this xml you /will/ want to have configurable at deployment time in order to configure what portlets/services are available to the portal - so even with ejb3 this kind of stuff still has to be in some external config. I was actually thinking about that the other day...you're

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
(or wtf that acronym is) support as well -Igor On 6/14/06, Vincent Jenks [EMAIL PROTECTED] wrote: and for a portal this xml you /will/ want to have configurable at deployment time in order to configure what portlets/services are available to the portal - so even with ejb3 this kind

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
what you are doing xml is minimal even in 1.2.6 -Igor On 6/14/06, Vincent Jenks [EMAIL PROTECTED] wrote: Perhaps it'd be worth developing a container and non-container based version of the project...or something in between. I suppose I'll need to do my homework first! Is Spring 2.x

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
Were should I report bugs ;-) I'll file a report w/ our support staff, stat! *scibbling 'todo' note on palm of hand* Click on Privacy Policy at the bottom and then SRF icon at the top. I get a 404 for the https://secure.abfoodsusa.com/ABCommerce/admin_home Good find! It's not like I can

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
in config files. -Igor On 6/14/06, *Vincent Jenks * [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Coincidentally, I came across this article the other day: http://www.javaworld.com/javaworld/jw-06-2006/jw-0605-obix.html It seems like Obix has a lot of overlap w

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Vincent Jenks
I was wondering this myself actuallyhow can a session be shared between two apps? On 6/14/06, Igor Vaynberg [EMAIL PROTECTED] wrote: take a look at wicket-examples - every example is its own wicket application/servlet and it works like a charm. integration i dont know about, depends on

Re: [Wicket-user] Plan to develop a portal

2006-06-14 Thread Vincent Jenks
the ground running framework that I could begin using quickly...there's a bit of a learning curve there. I meant overkill as in I've found easy-enough ways to solve problems without Spring - so far. Vincent Jenks wrote: Right, right, I understand all of that...but the configuration looks similar

Re: [Wicket-user] EJB3 Lazy Loading (was Seam-like solution for Wicket + EJB3?)

2006-06-01 Thread Vincent Jenks
I think this is exactly how Seam deals w/ the problemwhat I don't understand is then; why would they be pushing it as an enterprise solution for JSF + EJB3? If it wouldn't scale, assuming this is how Seam works, then it would be useless in a high-concurrency environment. Also, JBoss is

Re: [Wicket-user] another dumb model question....

2006-06-01 Thread Vincent Jenks
Vincent Jenks wrote: Excellent, that's perfect. The part I was unsure about was what to pass for the arguement for getObject() Thanks Matej! On 5/31/06, Matej Knopp [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Suppose you have IModel model = new

Re: [Wicket-user] another dumb model question....

2006-06-01 Thread Vincent Jenks
the model - that is whatever component is calling getObject -Igor On 6/1/06, Vincent Jenks [EMAIL PROTECTED] wrote: Agreed, the solution was absurdly simpleI was just entirely unsure what to pass for the argnull seems very counter-intuitive to the framework *user*. On 6/1/06

Re: [Wicket-user] another dumb model question....

2006-06-01 Thread Vincent Jenks
Point takenno biggie. On 6/1/06, Matej Knopp [EMAIL PROTECTED] wrote: But getObject() can't work if you have a property model. It will only work with simple models. -Matej Vincent Jenks wrote: That wasn't my point, really. I'm not saying null doesn't work...I'm just talking purely

Re: [Wicket-user] EJB3 Lazy Loading (was Seam-like solution for Wicket + EJB3?)

2006-06-01 Thread Vincent Jenks
DataBinder project could serve as a starting point there? Eelco On 6/1/06, Vincent Jenks [EMAIL PROTECTED] wrote: I think this is exactly how Seam deals w/ the problemwhat I don't understand is then; why would they be pushing it as an enterprise solution for JSF + EJB3? If it wouldn't

Re: [Wicket-user] RE: combo box displaying choose one

2006-05-31 Thread Vincent Jenks
add(new DropDownChoice(dropdown, model, values) { protected String getDefaultChoice(final Object selected) { return ; //this fixes your problem... } public String getDisplayValue(Object object) {

[Wicket-user] halt and redirect

2006-05-31 Thread Vincent Jenks
How can I simply stop a page from rendering and redirect to another? Say I've got a condition where I've found an object to be null or an unacceptable value and I'd rather send the user to another page w/o rendering the rest of the current page? I thought I was doing that w/ setResponsePage()

Re: [Wicket-user] Seam-like solution for Wicket + EJB3?

2006-05-31 Thread Vincent Jenks
Yes, I've done this w/ Hibernate w/o a problem, it works great when you're manually creating destroying the sessions...but I'm not since I'm using container managed sessions in EJB3. How would this be done since the container controls the session for me? Which, is what I wantI don't want

[Wicket-user] another dumb model question....

2006-05-31 Thread Vincent Jenks
I've got a page where I need to call data from the EntityManger (EJB3) several times in a single pagewhich means I'd need to have several detached-models in the page. Once I put these objects and/or collections of objects into a detachable model, what's the best way to cast them back out to

Re: [Wicket-user] Seam-like solution for Wicket + EJB3?

2006-05-31 Thread Vincent Jenks
on every request. I don't know seam internals either, but can't see a reason why it shouldn't be possible to have long running transaction with wicket. After all, transactions are not web layers responsibility. -MAtej Vincent Jenks wrote: I'm not sure how familiar anyone here is w/ Seam and how

Re: [Wicket-user] another dumb model question....

2006-05-31 Thread Vincent Jenks
ListView(l1, m1) { ... }); IModel m2 = new LoadableDetachableModel() { Object load() { return [load collection 2]; } } add(new ListView(l2, m2) { ... }); } } Matej Vincent Jenks wrote: I've got a page where I need to call data from

Re: [Wicket-user] another dumb model question....

2006-05-31 Thread Vincent Jenks
= (ListItem) model.getObject(null). First time you call getObject the model is attached (list is loaded). Until it's detached, getObject(null) will always return the loaded list. -Matej Vincent Jenks wrote: If I were just displaying the lists in a ListView that'd be fine, however I'm not using

Re: [Wicket-user] Seam-like solution for Wicket + EJB3?

2006-05-31 Thread Vincent Jenks
be done with a simple facade -Igor On 5/31/06, Vincent Jenks [EMAIL PROTECTED] wrote: Easy enough to say, however, I don't know *how* Seam does what it does - I have no idea how to implement something like this. And yes, it's a long-running transaction (I suppose?) Perhaps they're just storing

Re: [Wicket-user] 13 classes where needed for HelloWorld example ?

2006-05-31 Thread Vincent Jenks
Personally, I've found that every example in wicket-examples has always worked flawlessly for me. Each Wicket page has an aptly-named html page that goes with it...which acts as a template for the components you define in the aptly-named class. However, I think you're right, the Hello World

[Wicket-user] need to clarify: detached entities as parameters

2006-05-25 Thread Vincent Jenks
I know we've been over this before but I've got to dredge it up one more time, just to be absolutely sure I'm doing this the best possible way. Say I've got a master/detail setup between two pages. Since I'm using EJB3 which is essentially Hibernate, I need to decide whether or not to detach

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Vincent Jenks
Just in time, sweet! Great work guys! Truly an amazing framework and amazing piece of software - the best! Now, where's that book? ;) - just jokes...it might be nice to have a day off, eh? -v On 5/24/06, middledot [EMAIL PROTECTED] wrote: A big thank you for your exceptional dedication to

Re: [Wicket-user] write an entire tag?

2006-05-23 Thread Vincent Jenks
Igor, I got this all working correctly now, I was just missing one of the controls in the populateEmptyItem method. When we were going back and forth yesterday it didn't dawn on me immediately that the entire hierarchy of components had to be re-created in this method. I've now got it exactly

Re: [Wicket-user] write an entire tag?

2006-05-23 Thread Vincent Jenks
[EMAIL PROTECTED] wrote: yeah, thats the advantage of using panels or fragments - a single top level element, so in populate empty item you just stick an empty panel. anyways, glad to hear you got it working. -Igor On 5/23/06, Vincent Jenks [EMAIL PROTECTED] wrote: Igor, I got this all

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Vincent Jenks
It's pretty ghetto at this point and it's hosted on a dell server in my home-office, so I've been reluctant to take it seriously: http://zambizzi.blogdns.com/ It's built w/ Wicket + EJB3 on JBoss 4.0.4. The cable connection will make it sub-optimal for speed/scalability ;) It's pretty basic

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Vincent Jenks
I worked w/ vs.net 2002/2003 since the day each of them was released, 2002 for a long while before it was final. I actually quite liked it compared to Visual Interdev and the old vs 6.0 stuff. Of course, you're right - It's Windows-centric and doesn't allow the freedom. Once I dove into the

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Vincent Jenks
page, and a human readable parameter to the actual topic). Eelco On 5/23/06, Vincent Jenks [EMAIL PROTECTED] wrote: It's pretty ghetto at this point and it's hosted on a dell server in my home-office, so I've been reluctant to take it seriously: http://zambizzi.blogdns.com/ It's built w

Re: [Wicket-user] write an entire tag?

2006-05-22 Thread Vincent Jenks
Yeah, that's what I figured given the example, however that's where my problem lies. The items I'm adding in populateItem in the GridView can't be found, I'm getting the hierarchy problem exception. Here's what I'm doing in the page as an overview: 1. List Product Categories (ListView) 2. for

Re: [Wicket-user] write an entire tag?

2006-05-22 Thread Vincent Jenks
I marked everything w/ bold comments in the reply I just sent regarding the hierarchy problem I'm having. On 5/22/06, Igor Vaynberg [EMAIL PROTECTED] wrote: gridview doesnt take an IModel, it takes an IDataProvider which is like a more specific IModel. what does your detachable model look

Re: [Wicket-user] write an entire tag?

2006-05-22 Thread Vincent Jenks
; } } -Igor On 5/22/06, Vincent Jenks [EMAIL PROTECTED] wrote: Yeah, that's what I figured given the example, however that's where my problem lies. The items I'm adding in populateItem in the GridView can't be found, I'm getting the hierarchy problem exception. Here's what I'm doing

Re: [Wicket-user] write an entire tag?

2006-05-22 Thread Vincent Jenks
} return list; } } -Igor On 5/22/06, Vincent Jenks [EMAIL PROTECTED] wrote: Yeah, that's what I figured given the example, however that's where my problem lies. The items I'm adding in populateItem in the GridView can't be found, I'm getting the hierarchy problem

[Wicket-user] write an entire tag?

2006-05-21 Thread Vincent Jenks
I'm having an issue trying to display things a certain way. I want to display 3 thumbnails per-row and wrap on the third. In the HTML this is made up of a table tag w/ a single cell. The thumbnails are wrapped in their own table so it's something like this: table wicket:id=masterListView tr

Re: [Wicket-user] write an entire tag?

2006-05-21 Thread Vincent Jenks
in the child table. On 5/21/06, Igor Vaynberg [EMAIL PROTECTED] wrote: why not use a gridview from extensions? it will do the wrapping for you. -Igor On 5/21/06, Vincent Jenks [EMAIL PROTECTED] wrote: I'm having an issue trying to display things a certain way. I want to display 3 thumbnails

[Wicket-user] HTTPS switching

2006-05-17 Thread Vincent Jenks
OK, this discussion has been had before but IRC, it was determined that we could use ExternalLink to switch (which would work for me if it weren't a form.) However, what if I'm using a Button? Could an ExternalButton be rigged up that would somehow submit a form as well? Could I maybe redirect

Re: [Wicket-user] Google Web Toolkit integration ?

2006-05-17 Thread Vincent Jenks
You see Igorwe're not so different...you and I. I agree...and simply because we're building web applications we're likely to be working with web designers and web developers who are well versed in markup CSS and are able to take part of the application maintenance upon themselves. Using a

Re: [Wicket-user] HTTPS switching

2006-05-17 Thread Vincent Jenks
to https then submit the form? Looks safer to me. But if you want you have to control the urlFor of the Form component. Override this to append the https and server part. johan On 5/17/06, Vincent Jenks [EMAIL PROTECTED] wrote: OK, this discussion has been had before but IRC, it was determined

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Vincent Jenks
I don't think so...unless we've both been dropped. I've seen maybe five posts here all day. On 5/15/06, Frank Silbermann [EMAIL PROTECTED] wrote: I received an unusually low number of posts this weekend from the Wicket user group, and none today. Is the mailing list down? If not, have I been

[Wicket-user] validation

2006-05-16 Thread Vincent Jenks
Is there a good breakdown of how to use the validation classes anywhere? I see an example of RequiredValidator in the wiki but none of the others. Since RequiredValidator is depreciated and we need more control anyhow, we're looking at using some of the others. I can get them to *work*

Re: [Wicket-user] Link to Anchor

2006-05-11 Thread Vincent Jenks
+1 - I think that's pretty cool! Couldn't that be done w/ an ExternalLink? AttributeModifier? On 5/11/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Yeah, I like that idea. So, if the contents of the url start with #, we append that to the url... that's the idea, right? What do other people

Re: [Wicket-user] Wicket in action?

2006-05-11 Thread Vincent Jenks
He'll definitely internalize every word. Really absorbing the contents...hyuck hyuck. Alright, I'm done now. On 5/11/06, Eelco Hillenius [EMAIL PROTECTED] wrote: I guess he wants to digest it fully. Eelco On 5/11/06, Nick Heudecker [EMAIL PROTECTED] wrote: Won't that make it hard to read?

Re: [Wicket-user] The other side of Wicket ...

2006-05-05 Thread Vincent Jenks
Of Vincent Jenks Sent: Thursday, May 04, 2006 5:49 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] The other side of Wicket ... Oh yeah, just jokes, .NET is a pretty great technology...though it still requires far more work than the EJB3+Wicket combo. MS's tools are great

Re: [Wicket-user] Re: The other side of Wicket ...

2006-05-05 Thread Vincent Jenks
Please don't get the impression that I'm entirely without complaints with my Wicket learning experience. One thing I found particularly awkward was how models work in some of the form widgets, i.e. DropDownChoice, ListMultipleChoice, etc. This is where I found the Wicket learning curve was

Re: [Wicket-user] Re: The other side of Wicket ...

2006-05-05 Thread Vincent Jenks
have built it this fast (or learned this fast) without your help. So, thanks! On 5/5/06, Eelco Hillenius [EMAIL PROTECTED] wrote: On 5/5/06, Vincent Jenks [EMAIL PROTECTED] wrote: Please don't get the impression that I'm entirely without complaints with my Wicket learning experience. Hurry

Re: [Wicket-user] Re: The other side of Wicket ...

2006-05-05 Thread Vincent Jenks
I've never built an app in Swing in my life...so I can't relate. I'm guessing you'll have lots of users/developers like me going forward who are in the same boat. The basic concepts of using a model to populate and access items in List-bound widgets is very easy to understand...it's when I had

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
familiar with. I couldn't gather from your example how this would be done, either. Thanks for the help!On 5/2/06, Philip A. Chapman [EMAIL PROTECTED] wrote: How was it? Do I need to make any edits to make it easier to understand? On Mon, 2006-05-01 at 11:28 -0600, Vincent Jenks wrote

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
.-Igorhope this clears it up some more. On 5/5/06, Vincent Jenks [EMAIL PROTECTED] wrote: Hi Philip,Thanks so much for the sample code and wiki entry...it makes a lot of sense, however, it is a little bit of overkill for the app I built. You gave me a bazooka to take to a gun-fight! Really, what it co

Re: [Wicket-user] Re: The other side of Wicket ...

2006-05-05 Thread Vincent Jenks
Yes...and I'm repeating myself here Igorbut that'll be fantastic. On 5/5/06, Igor Vaynberg [EMAIL PROTECTED] wrote: but its still confusing as hell to have a constructor like DropDownChoice(String, IModel, IModel) it just plain sucks generics will make it much better

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
}}then you register this as a shared resource and get a resource reference. then when you want to build a url for an image you do thisResourceReference imageResource=... String url="">hope this clears it up some more.-Igorhope this clears it up some more. On 5/5/06, Vincent Jenks [

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
in the DB...they won't change often so I can cache them. I'm running short on time and starting to bite my nails! :D On 5/5/06, Igor Vaynberg [EMAIL PROTECTED] wrote: hmmis the static location accessible from the web?!?!?!?-Igor On 5/5/06, Vincent Jenks [EMAIL PROTECTED] wrote:I guess I'm still

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
WebMarkupContainer(img);img.add(new SimpleAttributeModifier(src, url);or encapsulate this whole thing into a reusable component so you can just do add(new StoredImage(img, imagenum));-IgorOn 5/5/06, Vincent Jenks [EMAIL PROTECTED] wrote:Obviously not...or we wouldn't be having this conversation

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
* see how a lot of that would be useful...so I may go back and do some refactoring now to take advantage of some of the ideas.Anyhow, it looks great and I really appreciate the help Philip Igor! On 5/5/06, Vincent Jenks [EMAIL PROTECTED] wrote: Once I do, is this something that should be added

Re: [Wicket-user] Image upload

2006-05-05 Thread Vincent Jenks
, Vincent Jenks [EMAIL PROTECTED] wrote:Once I do, is this something that should be added to Wicket? Using the uploader for what I'm doing, which I'd imagine would be fairly common, sort of sucks w/o the other half of itthe ability to call those images from non-web folders. On 5/5/06, Igor

Re: [Wicket-user] The other side of Wicket ...

2006-05-04 Thread Vincent Jenks
I am just wondering how other frameworks handle this problem and why it seems more difficult in Wicket? Would Wicket fit in well as a Web presentation layer for an application using EJB3 (including JPA)? i believe Vincent is working with ejb3 so maybe he can tell you about his experience. i

Re: [Wicket-user] The other side of Wicket ...

2006-05-04 Thread Vincent Jenks
I don't hear great things about Struts! My experience w/ Java/J2EE/Java EE before wicket was Servlets+JSP+Hibernate (and JDBC), and I've only been doing Java for about a year. I had made a living off of Microsoft technologies for years prior to that, specifically C# and the .NET framework. I

Re: [Wicket-user] The other side of Wicket ...

2006-05-04 Thread Vincent Jenks
it...not to mention all of the strange issues I had heard of w/ JSF 1.1. .NET has it's place...but now that EJB3 is a finalized spec...I doubt it can keep up w/ Java EE 5 and beyond in a one-on-one comparison. On 5/4/06, Eelco Hillenius [EMAIL PROTECTED] wrote: On 5/4/06, Vincent Jenks [EMAIL PROTECTED] wrote

Re: [Wicket-user] Image upload

2006-05-02 Thread Vincent Jenks
] wrote: How was it? Do I need to make any edits to make it easier to understand? On Mon, 2006-05-01 at 11:28 -0600, Vincent Jenks wrote: I'll read through this, thanks a ton! On 5/1/06, Philip A. Chapman [EMAIL PROTECTED] wrote: Sorry for the delay, but I

Re: [Wicket-user] Wicket book

2006-05-01 Thread Vincent Jenks
Yes, the developers are *insanely* helpful and patient. ;) Without this list I'm not sure I would have been able to use Wicket for long, to be perfectly honest. On 5/1/06, Timo Stamm [EMAIL PROTECTED] wrote: Rivka Shisman schrieb: A good book with examples and recipes is quite necessary :-)

  1   2   3   >