Re: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2013-01-13 Thread Martijn Dashorst
Take a look at qwickie. Works like a charm and is well maintained.

Martijn

On 12 jan. 2013, at 02:01, Paul Bors p...@bors.ws wrote:

 Whoever is still interested in this plugin, I saved a copy of WicketBench
 v0.5.1 as a zip from an older Eclipse installed on my workstation. I wish
 the source code was still around.

 Anyhow, it still kinda works with Eclipse Juno after extracting the zip
 contents to [eclipse root]\plugins\.

 If you want it let me know...

 Dose anyone know where the source code for this plugin are?



 -
 ~ Thank you,
p...@bors.ws
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Eclipse-IDE-Plugin-Wicket-Bench-not-existing-any-more-tp4500503p4655313.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2013-01-13 Thread Paul Bors
I know I use that too, but what I really liked about wicket-bench was the
bottom tabs for the Java resources. The associated HTML files and etc did
not have to be open in a different top tab but they were associated with the
Java page/panel in a list of bottom tabs per Java file.

That saved me so much time as I could use Eclipse to navigate between the
modules that make up the webapp I work on without having to manually open
the explorer to the folder where the associated resources live :)

I know this is not Wicket related, but is there a way to configure Eclipse's
default Java editor to behave as such w/o writing a plugin (I haven't looked
at Eclipse plugins in years).

~ Thank you,
  Paul Bors

-Original Message-
From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] 
Sent: Sunday, January 13, 2013 5:49 AM
To: users@wicket.apache.org
Subject: Re: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

Take a look at qwickie. Works like a charm and is well maintained.

Martijn

On 12 jan. 2013, at 02:01, Paul Bors p...@bors.ws wrote:

 Whoever is still interested in this plugin, I saved a copy of 
 WicketBench
 v0.5.1 as a zip from an older Eclipse installed on my workstation. I 
 wish the source code was still around.

 Anyhow, it still kinda works with Eclipse Juno after extracting the 
 zip contents to [eclipse root]\plugins\.

 If you want it let me know...

 Dose anyone know where the source code for this plugin are?



 -
 ~ Thank you,
p...@bors.ws
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Eclipse-IDE-Plugin-Wicket-B
 ench-not-existing-any-more-tp4500503p4655313.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: ASK: Updating one wicket page's component from other wicket apps

2013-01-13 Thread Noven
My idea is, first the member's apps have to able to call an admin's wicket 
page, than post it using atmosphere to update the component from Admin's page. 

I just don't know what the best practice to achieve calling a wicket page from 
outside wicket apps. 


Any help or suggestion appreciated. Thanks



 From: Noven noven_...@yahoo.com
To: users@wicket.apache.org users@wicket.apache.org 
Sent: Monday, January 14, 2013 5:53 AM
Subject: ASK: Updating one wicket page's component from other wicket apps 
 
Hi all,

Currently, I am developing 2 separated wicket apps, they are an Admin's web and 
a Member's web. Both shared the same database but run in different tomcat 
container.  

My question is how to achieve below use case: 

On member's web: When a member submit a form, the form will send message to 
update a component (e.g. a datatable) on Admins' page. Or in the form's 
onSubmit method, it will call/ send parameter to the Admin's page. Later at the 
Admin's page it will update it's component base on the parameter. 

I read about web service but have not find a good example on how updating a 
wicket page. 

Thanks,
Noven

Re: ASK: Updating one wicket page's component from other wicket apps

2013-01-13 Thread Sebastien
Hi,

Well, if you want your 2 webapps communicates live, maybe you should
consider an application server (JBoss?), JMS for sending the message, an
MDB (message driven bean) to read the message (admin side) and wicket
native socket (or wicket atmosphere) to send the message back to the admin
(and refresh the datatable?)

To be honest, it is not so easy. So maybe you can refine your requirements.
For instance, could the updated information not be stored in the database
(as they already sharing the same DB) instead of sending a message? Then
the admin page could read the DB next time the page refreshes (or using a
AjaxSelfUpdatingTimerBehavior)

Hope this helps (a bit)
Sebastien.

On Mon, Jan 14, 2013 at 12:20 AM, Noven noven_...@yahoo.com wrote:

 My idea is, first the member's apps have to able to call an admin's wicket
 page, than post it using atmosphere to update the component from Admin's
 page.

 I just don't know what the best practice to achieve calling a wicket page
 from outside wicket apps.


 Any help or suggestion appreciated. Thanks


 
  From: Noven noven_...@yahoo.com
 To: users@wicket.apache.org users@wicket.apache.org
 Sent: Monday, January 14, 2013 5:53 AM
 Subject: ASK: Updating one wicket page's component from other wicket apps

 Hi all,

 Currently, I am developing 2 separated wicket apps, they are an Admin's
 web and a Member's web. Both shared the same database but run in different
 tomcat container.

 My question is how to achieve below use case:

 On member's web: When a member submit a form, the form will send message
 to update a component (e.g. a datatable) on Admins' page. Or in the form's
 onSubmit method, it will call/ send parameter to the Admin's page. Later at
 the Admin's page it will update it's component base on the parameter.

 I read about web service but have not find a good example on how updating
 a wicket page.

 Thanks,
 Noven



Re: ASK: Updating one wicket page's component from other wicket apps

2013-01-13 Thread Noven
Hi Sebastien,

Thank you for your quick reply before :)

Jboss, JMS, MDB are such a new thing for me. I heard them before but just never 
use it in real apps.
I'm considering AjaxSelfUpdatingTimerBehaviour like you've suggested while 
waiting for others reply to this topic. 

Noven




 From: Sebastien seb...@gmail.com
To: users@wicket.apache.org; Noven noven_...@yahoo.com 
Sent: Monday, January 14, 2013 6:24 AM
Subject: Re: ASK: Updating one wicket page's component from other wicket apps
 

Hi,

Well, if you want your 2 webapps communicates live, maybe 
you should consider an application server (JBoss?), JMS for sending the 
message, an MDB (message driven bean) to read the message (admin side) 
and wicket native socket (or wicket atmosphere) to send the message back
 to the admin (and refresh the datatable?)

To be honest, it is 
not so easy. So maybe you can refine your requirements. For instance, 
could the updated information not be stored in the database (as they 
already sharing the same DB) instead of sending a message? Then the 
admin page could read the DB next time the page refreshes (or using a 
AjaxSelfUpdatingTimerBehavior)

Hope this helps (a bit)
Sebastien.


On Mon, Jan 14, 2013 at 12:20 AM, Noven noven_...@yahoo.com wrote:

My idea is, first the member's apps have to able to call an admin's wicket 
page, than post it using atmosphere to update the component from Admin's page.

I just don't know what the best practice to achieve calling a wicket page from 
outside wicket apps.


Any help or suggestion appreciated. Thanks




 From: Noven noven_...@yahoo.com
To: users@wicket.apache.org users@wicket.apache.org
Sent: Monday, January 14, 2013 5:53 AM
Subject: ASK: Updating one wicket page's component from other wicket apps


Hi all,

Currently, I am developing 2 separated wicket apps, they are an Admin's web 
and a Member's web. Both shared the same database but run in different tomcat 
container. 

My question is how to achieve below use case:

On member's web: When a member submit a form, the form will send message to 
update a component (e.g. a datatable) on Admins' page. Or in the form's 
onSubmit method, it will call/ send parameter to the Admin's page. Later at 
the Admin's page it will update it's component base on the parameter.

I read about web service but have not find a good example on how updating a 
wicket page.

Thanks,
Noven

Problem with Wicket distribution

2013-01-13 Thread e . spyrop . w
Hi all,

I cannot find anything in the distribution servers' wicket folder, except 
the KEYS file.

Only one mirror in Pakistan, which has not been updated for several days, 
still holds the wicket files.

Has something gone wrong?

Best Regards
Elias


Re: Problem with Wicket distribution

2013-01-13 Thread Jeremy Thomerson
Have you tried the links on this page?

http://wicket.apache.org/start/download.html


On Sat, Jan 12, 2013 at 11:41 PM, e.spyro...@teamconcepts.gr wrote:

 Hi all,

 I cannot find anything in the distribution servers' wicket folder, except
 the KEYS file.

 Only one mirror in Pakistan, which has not been updated for several days,
 still holds the wicket files.

 Has something gone wrong?

 Best Regards
 Elias




-- 
Jeremy Thomerson
http://wickettraining.com
*Need a CMS for Wicket?  Use Brix! http://brixcms.org*


Re: Problem with Wicket distribution

2013-01-13 Thread e . spyrop . w
Thanks,

I did, and then followed the links to the entire mirror list. The 
distribution is not there.

Later, I read a hint in the developers' mailing list and it seems that 
Apache Infrastructure have changed the distribution procedure, so it may 
be a problem there.

Fortunately, I found it in the archives - 
http://archive.apache.org/dist/wicket/


Jeremy Thomerson jer...@wickettraining.com wrote on 14/01/2013 06:03:08 
AM:

 Jeremy Thomerson jer...@wickettraining.com 
 14/01/2013 06:03 AM
 
 Please respond to
 users@wicket.apache.org
 
 To
 
 users@wicket.apache.org users@wicket.apache.org, 
 
 cc
 
 Subject
 
 Re: Problem with Wicket distribution
 
 Have you tried the links on this page?
 
 http://wicket.apache.org/start/download.html
 
 
 On Sat, Jan 12, 2013 at 11:41 PM, e.spyro...@teamconcepts.gr wrote:
 
  Hi all,
 
  I cannot find anything in the distribution servers' wicket folder, 
except
  the KEYS file.
 
  Only one mirror in Pakistan, which has not been updated for several 
days,
  still holds the wicket files.
 
  Has something gone wrong?
 
  Best Regards
  Elias
 
 
 
 
 -- 
 Jeremy Thomerson
 http://wickettraining.com
 *Need a CMS for Wicket?  Use Brix! http://brixcms.org*


Ajax request stopped because of precondition check

2013-01-13 Thread Oliver Krohne
Hi,

I am using jquery ui menu widget and AjaxLink for the menu items. The click 
event fails because of a precondition error:
Ajax request stopped because of precondition check, url: 
./publisher?1-1.IBehaviorListener.0-publisher-outerSplitter-left-publisher


I saw similar issues in the archive but the solutions seems not match my issue.

Any idea how I can nail down the problem?

This is with wicket 6.4.0 and jQuery 1.8.23.

Thanks,
Oliver