Re: wicketstuff-push examples working across browsers

2011-10-28 Thread Soheb Mahmood
--- Original Message - From: "Martin Grigorov" To: users@wicket.apache.org Sent: Thursday, 27 October, 2011 3:01:54 PM Subject: Re: wicketstuff-push examples working across browsers On Thu, Oct 27, 2011 at 3:58 PM, Soheb Mahmood wrote: > I just read my email again and I sounded really ru

Re: wicketstuff-push examples working across browsers

2011-10-27 Thread Sebastian
the email (it's not what I actually meant to say), and I really do appreciate your hard work and effort towards wicketstuff (as I have seen on git). Soheb - Original Message - From: "Sebastian" To: users@wicket.apache.org Sent: Wednesday, 26 October, 2011 5:21:52 PM Subject:

Re: wicketstuff-push examples working across browsers

2011-10-27 Thread Martin Grigorov
? Maybe it already works on IE... > > Soheb > > - Original Message - > From: "Sebastian" > To: users@wicket.apache.org > Sent: Wednesday, 26 October, 2011 5:21:52 PM > Subject: Re: wicketstuff-push examples working across browsers > > hi, > > co

Re: wicketstuff-push examples working across browsers

2011-10-27 Thread Soheb Mahmood
not what I actually meant to say), and I really do appreciate your hard work and effort towards wicketstuff (as I have seen on git). Soheb - Original Message - From: "Sebastian" To: users@wicket.apache.org Sent: Wednesday, 26 October, 2011 5:21:52 PM Subject: Re: wicketstuf

Re: wicketstuff-push examples working across browsers

2011-10-27 Thread Soheb Mahmood
: Wednesday, 26 October, 2011 5:21:52 PM Subject: Re: wicketstuff-push examples working across browsers hi, cometd had a bug that affects websocket support in conjunction with chrome browsers. It is fixed in the latest 1.4.0RC1 release of cometd. We incorporated the changes (and fixed some o

Re: wicketstuff-push examples working across browsers

2011-10-26 Thread Sebastian
hi, cometd had a bug that affects websocket support in conjunction with chrome browsers. It is fixed in the latest 1.4.0RC1 release of cometd. We incorporated the changes (and fixed some other issues) in wicketstuff trunk. thus they will be available with the wicketstuff 1.5.2 release. Regar

wicketstuff-push examples working across browsers

2011-10-26 Thread Soheb Mahmood
Hello everyone, I'm planning to use wicketstuff-core in an actual production environment, and to be more specific, I'm planning to use push-cometd. I'm currently using wicketstuff version 1.4.14 to match the current version of Wicket we are using in production. I got the example to run, and on

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-21 Thread vineet semwal
just tested on a quickstart,works well .. thanks for the fix ! On Fri, Oct 21, 2011 at 6:23 PM, Sebastian wrote: > hi, > > we fixed it in trunk now. please give it a try. > > regards, > > seb > > On 12.10.2011 11:18, vineet semwal wrote: >> >> thank you martin ! >> >>  herald ,i have opened a is

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-21 Thread Sebastian
hi, we fixed it in trunk now. please give it a try. regards, seb On 12.10.2011 11:18, vineet semwal wrote: thank you martin ! herald ,i have opened a issue for you https://github.com/wicketstuff/core/issues/66 thank you ! On Wed, Oct 12, 2011 at 2:19 PM, Martin Grigorov wrote: On Wed, O

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-12 Thread vineet semwal
thank you martin ! herald ,i have opened a issue for you https://github.com/wicketstuff/core/issues/66 thank you ! On Wed, Oct 12, 2011 at 2:19 PM, Martin Grigorov wrote: > On Wed, Oct 12, 2011 at 11:13 AM, vineet semwal > wrote: >> there is no need for the api change,its a bug and i think wic

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-12 Thread Martin Grigorov
On Wed, Oct 12, 2011 at 11:13 AM, vineet semwal wrote: > there is no need for the api change,its a bug and i think wicket-stuff > push developers will make that change there in > uninstallNode(component,node) ,they might be busy .. they should be notified add an issue in GitHub > > On Wed, Oct 12,

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-12 Thread vineet semwal
there is no need for the api change,its a bug and i think wicket-stuff push developers will make that change there in uninstallNode(component,node) ,they might be busy .. On Wed, Oct 12, 2011 at 12:50 PM, Harald Wellmann wrote: > I'm currently doing timer.stop() in my application code before call

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-12 Thread Harald Wellmann
I'm currently doing timer.stop() in my application code before calling uninstallNode(), but that requires copying code from the private method TimerPushService._findPushBehavior(). So it seems the API could do with a couple of extensions for this case... Best regards, Harald 2011/10/11 vineet sem

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-11 Thread vineet semwal
i think its better to do timerpushbehavior.stop() instead of component.remove(behavior) inside uninstallNode(component,node) but it might require other changes too .. On Tue, Oct 11, 2011 at 9:25 PM, Harald Wellmann wrote: > I'm experimenting with wicketstuff-push-timer, and I wonder if

[wicketstuff-push] How to disconnect cleanly?

2011-10-11 Thread Harald Wellmann
I'm experimenting with wicketstuff-push-timer, and I wonder if there's a way to cleanly uninstall a node. Use case: The server pushes a number of progress events during a long running action. When the action is finished, no more events will be sent, so there is no point for the

Re: wicketstuff-push Documentation?

2011-07-05 Thread jbrookover
sense than anything else I've read - so, thanks! As I explore, I'll see about adding some JavaDoc for the newbs. Jake -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicketstuff-push-Documentation-tp3644319p3645846.html Sent from t

Re: wicketstuff-push Documentation?

2011-07-04 Thread Sebastian
using IPushService.publish(, ). Regards, Seb On 04.07.2011 20:48, jbrookover wrote: Hey all, Just explored the wicketstuff-push examples. Everything works great. The only problem is that I'm overwhelmed with the code. I'm new to "pushing;" I had no idea what Comet was

Re: wicketstuff-push Documentation?

2011-07-04 Thread Martin Grigorov
https://github.com/wicketstuff/core/wiki/Push On Mon, Jul 4, 2011 at 8:48 PM, jbrookover wrote: > Hey all, > > Just explored the wicketstuff-push examples.  Everything works great. > > The only problem is that I'm overwhelmed with the code.  I'm new to > "pushi

wicketstuff-push Documentation?

2011-07-04 Thread jbrookover
Hey all, Just explored the wicketstuff-push examples. Everything works great. The only problem is that I'm overwhelmed with the code. I'm new to "pushing;" I had no idea what Comet was before yesterday. I understand the fundamentals of AjaxTimerBehavior polling, but push

Re: regarding wicketstuff push

2011-06-24 Thread vineet semwal
wrote: >> >> hellos ! >> >> i was just looking at wicketstuff push and i saw a lot of changes in >> api and other improvements are done ,thanks for all that ! :) >> as very new to the new push, could not understand the below channel >> creation ca

Re: regarding wicketstuff push

2011-06-23 Thread Sebastian
hi vineet, you are right. this is probably a left over from the refactoring we did. I just fixed it on github. regards, seb On 23.06.2011 22:58, vineet semwal wrote: hellos ! i was just looking at wicketstuff push and i saw a lot of changes in api and other improvements are done ,thanks

regarding wicketstuff push

2011-06-23 Thread vineet semwal
hellos ! i was just looking at wicketstuff push and i saw a lot of changes in api and other improvements are done ,thanks for all that ! :) as very new to the new push, could not understand the below channel creation call.. public IPushChannel createChannel(final EventType event,final

WicketStuff Push Changes.

2010-08-23 Thread Rodolfo Hansen
There are a couple of significant changes in the wicketstuff-push found at: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jdk-1.6-parent/push-parent It is more tightly integrated to Wicket and the new javascript comet code. It no longer depends on any

wicketstuff-push

2010-07-31 Thread Takeo Hosomi
I'm interested in implementing an authentication feature with wicketstuff-push (1.4.9.2), and it works with slight modifications. I share what I did. I basically implements written at http://cometd.org/documentation/howtos/authentication. What I change is two methods. (1) CometdAbstractBeh

[wicketstuff-push] NPE when CometdService.initBayeux()

2010-07-21 Thread smallufo
Hi , I am trying Wicketstuff-push with a small chat program , but encounter this problem : org.apache.wicket.WicketRuntimeException: Method onFormSubmitted of interface org.apache.wicket.markup.html.form.IFormSubmitListener targeted at component [MarkupContainer [Component id = sayForm]] threw an

Re: Wicketstuff Push Assistance request

2010-07-20 Thread Rodolfo Hansen
ess someone else can also join. > I also invest in html5 (svn .../wicket-stuff/trunk/wicket15-html5-parent) > ;-) > > 2010/7/20 Rodolfo Hansen > > > Hi all, > > > > Anyone willing to lend me a hand on the wicketstuff-push project? > > > > I have

Re: Wicketstuff Push Assistance request

2010-07-20 Thread Martin Grigorov
Rodolfo Hansen > Hi all, > > Anyone willing to lend me a hand on the wicketstuff-push project? > > I have some pretty good ideas, but can't find the time to implement > them. > > If anyone is intere

Wicketstuff Push Assistance request

2010-07-20 Thread Rodolfo Hansen
Hi all, Anyone willing to lend me a hand on the wicketstuff-push project? I have some pretty good ideas, but can't find the time to implement them. If anyone is interested please write me directly. - To unsubscribe, e

Upgrade wicketstuff-push to Cometd2

2010-06-28 Thread Martin Grigorov
Hi, Last weekend I felt a bit bored and I decided to take a look at one of the cool wicketstuff projects that I had on my list for quite some time - wicketstuff-core/push-parent. Few minutes later I decided to upgrade it to Cometd version 2.0.0.RC1 because this is how I understand how the things w

Re: wicketstuff-push causing WicketRuntimeException component not found on Page

2010-06-25 Thread david_
t; I have a Listener object with a Map in it containing > > > > org.apache.wicket.Component objects that need to be updated every > time > > > the > > > > onChange(); method is called. For example caused by another user's > > >

Re: wicketstuff-push causing WicketRuntimeException component not found on Page

2010-06-25 Thread Rodolfo Hansen
arkup.html.AjaxLink objects. > > > Sometimes if I click on the one of the links, I get a > > WicketRuntimeException > > > telling me that the Link is not found on the Page. > > > > > > Any suggestions? > > > > > > > > > > -

Re: wicketstuff-push causing WicketRuntimeException component not found on Page

2010-06-24 Thread david_
hat need to be updated every time > the > > onChange(); method is called. For example caused by another user's > actions. > > This works perfectly with wicketstuff-push. > > > > The org.apache.wicket.Component objects that need to be updated, have > > org.apache.

Re: wicketstuff-push causing WicketRuntimeException component not found on Page

2010-06-24 Thread Rodolfo Hansen
ample caused by another user's actions. > This works perfectly with wicketstuff-push. > > The org.apache.wicket.Component objects that need to be updated, have > org.apache.wicket.ajax.markup.html.AjaxLink objects. > Sometimes if I click on the one of the links, I get a WicketRuntimeE

wicketstuff-push causing WicketRuntimeException component not found on Page

2010-06-23 Thread David Meulemans
Hi I have a Listener object with a Map in it containing org.apache.wicket.Component objects that need to be updated every time the onChange(); method is called. For example caused by another user's actions. This works perfectly with wicketstuff-push. The org.apache.wicket.Component objects

Use wicketstuff-push and still have proper session timeout?

2010-06-07 Thread Early Morning
Hi All, We're currently using the wicketstuff-push project for notifications and the like. I added a TimerChannelService to our main Application class, and added a ChannelListener in our BasePage (using the user's username as the channel). However, the problem now is that the session n

Re: strange ClassCastException in wicketstuff-push

2010-06-06 Thread Ingo Adler
Solved. It was a class loading problem - IntelliJ in combination with Jetty. WebAppContext context = new WebAppContext(); ... context.setParentLoaderPriority(true); // -> Solution Ingo On 04.06.2010 00:52, Ingo Adler wrote: > Hi, > > I'm trying to use wicketstuff-push i

strange ClassCastException in wicketstuff-push

2010-06-03 Thread Ingo Adler
Hi, I'm trying to use wicketstuff-push in my project. I'm always getting a ClassCastException in the wicketstuff-push sources, which I can't explain: java.lang.ClassCastException: org.mortbay.cometd.continuation.ContinuationBayeux cannot be cast to org.cometd

Re: Wicketstuff-Push without Dojo?

2010-03-09 Thread Richard Wilkinson
>From what I have read, the cometd implementation used by wicketstuff-push should work with any servlet 3 spec container (for example the in development tomcat 7) as well as jetty 6+, however I have only tried with jetty 6. Using atmosphere allows it to work on any container (even tomca

Re: Wicketstuff-Push without Dojo?

2010-03-08 Thread MattyDE
Wow thanks for your contribution. Iam not very used to use Patches on SVN-Directories. But i'll try my best to understand how it works ;) Iam looking for a possibility to run wicketstuff-push without a Jetty instance to. Prefered Tomcat... Thanks! richardjohnwilkinson wrote: > &g

Re: Wicketstuff-Push without Dojo?

2010-03-08 Thread Rodolfo Hansen
stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/push-parent > > - > Regards - Richard Wilkinson > Developer, > jWeekend: OO & Java Technologies - Development and Training > http://jWeekend.com > > On 8 March 2010 14:37, Richard Wilkinson > wrot

Re: Wicketstuff-Push without Dojo?

2010-03-08 Thread Martin Grigorov
On Mon, 2010-03-08 at 14:37 +, Richard Wilkinson wrote: > Hi, > > We have been working on the wicketstuff-push project offline; so far > we have modified the code to run using jQuery (using wiQuery [1]) with > the latest version of the cometd javascript, and fixed a few bug

Re: Wicketstuff-Push without Dojo?

2010-03-08 Thread Richard Wilkinson
Hi, We have been working on the wicketstuff-push project offline; so far we have modified the code to run using jQuery (using wiQuery [1]) with the latest version of the cometd javascript, and fixed a few bugs / made some improvements. For example the current code wasn't as efficient as it

Wicketstuff-Push without Dojo?

2010-03-08 Thread Martin U
Hi Folks, i need some COMETD or something equal implemention in my web-application. So i found wickestuff-push. But as far as is see, it users dojo to do the client-side magic. I dont want to blow up my application more as it still is ;) so i want ask for an wicket + comet workaround with jQuery

Re: wicketstuff-push and component replacing

2010-02-03 Thread vineet semwal
I understand you made some changes, from where can I get them. > > Originally I used this for source: > > http://wicketstuff.org/maven/repository/org/wicketstuff/push/1.4.1/ > > > > > > > > > but I don't see any changes there. > > > > I agree o

Re: wicketstuff-push and component replacing

2010-02-03 Thread Rodolfo Hansen
derstand you made some changes, from where can I get them. > Originally I used this for source: > http://wicketstuff.org/maven/repository/org/wicketstuff/push/1.4.1/ > > > but I don't see any changes there. > > I agree on part that push service is complicated. > I cou

Re: wicketstuff-push and component replacing

2010-02-03 Thread Roland4444
Thank you for replying. As I understand you made some changes, from where can I get them. Originally I used this for source: http://wicketstuff.org/maven/repository/org/wicketstuff/push/1.4.1/ but I don't see any changes there. I agree on part that push service is complicated. I coul

Re: wicketstuff-push and component replacing

2010-01-26 Thread Rodolfo Hansen
t; >> I'm currently developing wicket based application, which displays alarms >> on map and allows their modification. >> New alarms are sent to server through soap service and map with few other >> components on page for all browser clients needs to be refresh

Re: wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2010-01-26 Thread Rodolfo Hansen
Regarding remove listeners: > > >> > > >> Most browsers fail to report the remove event. > > >> Only firefox reports removal immediately, all other browsers depend on > > the > > >> timeout for a comet reconnect to notice and fire the remove even

Re: wicketstuff-push and component replacing

2010-01-26 Thread Rodolfo Hansen
New alarms are sent to server through soap service and map with few other > components on page for all browser clients needs to be refreshed. > > I'm using wicketstuff-push for the push service implementation. > org.wicketstuff.push.timer.TimerPushService to be clear. > > &g

wicketstuff-push and component replacing

2010-01-22 Thread Roland Vares
Hello, I'm currently developing wicket based application, which displays alarms on map and allows their modification. New alarms are sent to server through soap service and map with few other components on page for all browser clients needs to be refreshed. I'm using wicketstuff-pu

Re: wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2010-01-18 Thread vineet semwal
; Only firefox reports removal immediately, all other browsers depend on > the > >> timeout for a comet reconnect to notice and fire the remove event; you > may > >> need to lower the timeout for the cometd connections. > >> > >> > >> Also,can i install m

Re: wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2010-01-18 Thread Rodolfo Hansen
no problem, can you write a quickstart >> with your use cases, so I can flesh any bugs out? >> >> >> On Thu, Dec 24, 2009 at 10:03 AM, vineet semwal >> wrote: >> >> > Hellos, >> > recently i started using wicketstuff push ,i have few doubts a

Re: wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2010-01-15 Thread vineet semwal
you write a quickstart > with your use cases, so I can flesh any bugs out? > > > On Thu, Dec 24, 2009 at 10:03 AM, vineet semwal > wrote: > > > Hellos, > > recently i started using wicketstuff push ,i have few doubts as following > > .. > > i have a sit

Re: wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2009-12-26 Thread Rodolfo Hansen
install more than one channel listener on a component? Never tried it, but there should be no problem, can you write a quickstart with your use cases, so I can flesh any bugs out? On Thu, Dec 24, 2009 at 10:03 AM, vineet semwal wrote: > Hellos, > recently i started using wicketstuff push ,i ha

Re: wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2009-12-24 Thread vineet semwal
regarding first doubt, i can't seem to catch the event in page 1 if i publish a event in page 2, On Thu, Dec 24, 2009 at 7:33 PM, vineet semwal wrote: > Hellos, > recently i started using wicketstuff push ,i have few doubts as following > .. > i have a situation where i need t

wicketstuff push, publishing event in a page2 and component installed with channel listener in page1

2009-12-24 Thread vineet semwal
Hellos, recently i started using wicketstuff push ,i have few doubts as following .. i have a situation where i need to publish a event in page 2 and add the channel listener in page 1 . for eg. a sign out event published in page 2 which i do using a remove listener. Also,can i install more than

Re: wicketstuff-push question

2009-10-08 Thread Rodolfo Hansen
Can you prepare an example? There are a few things I have to iron out in that code... I recently published a couple of changes to On Thu, Oct 8, 2009 at 2:39 AM, Daniel Dominik Holúbek wrote: > hello everybody, > has anyone here any experience with wicketstuff-push? > i am trying to

wicketstuff-push question

2009-10-07 Thread Daniel Dominik Holúbek
hello everybody, has anyone here any experience with wicketstuff-push? i am trying to use it in my app, but it behaves somewhat strangely. when i call cometdService.publish(event) method from form's onSubmit method, it works like a charm. but when i call it from another method - for ex

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-07-16 Thread Rodolfo Hansen
: > > > >> > >> Hi Rodolfo, > >> I'm trying to deploy the wicketstuff-push example on a Glassfish server > >> V3, > >> but without success. > >> Can you give some information about how to use your wicketstuff-push > >> implement

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-07-16 Thread freak182
lfo, >> I'm trying to deploy the wicketstuff-push example on a Glassfish server >> V3, >> but without success. >> Can you give some information about how to use your wicketstuff-push >> implementation outside Jetty? > > > For Glassfish there are a c

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-07-13 Thread freak182
. i just replace the files that contains metadatakey class that use generics. :) And i tested and it work. ;)) Thanks a lot. Cheers. Rodolfo Hansen wrote: > > Hi, > > You have two options: > >1. use a previous version of wicketstuff-push, >2. or help out with

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-07-13 Thread Rodolfo Hansen
Hi, You have two options: 1. use a previous version of wicketstuff-push, 2. or help out with branching the current code back to 1.3.x Right now, the code requres java 1.5, so if your proyect requires java 1.4 then I recomend using a previous version. the old wicket 1.3, java 1.4 branch

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-07-13 Thread freak182
wrote: > > On Mon, Apr 20, 2009 at 6:26 AM, pmarrone wrote: > >> >> Hi Rodolfo, >> I'm trying to deploy the wicketstuff-push example on a Glassfish server >> V3, >> but without success. >> Can you give some information about how to use you

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-04-20 Thread Rodolfo Hansen
On Mon, Apr 20, 2009 at 6:26 AM, pmarrone wrote: > > Hi Rodolfo, > I'm trying to deploy the wicketstuff-push example on a Glassfish server V3, > but without success. > Can you give some information about how to use your wicketstuff-push > implementation outside Jetty? Fo

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-04-20 Thread pmarrone
Hi Rodolfo, I'm trying to deploy the wicketstuff-push example on a Glassfish server V3, but without success. Can you give some information about how to use your wicketstuff-push implementation outside Jetty? I know that Glassfish has support for cometd, so it should be possible. I propo

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2009-01-02 Thread Rodolfo Hansen
it? > > > > On Sat, Dec 27, 2008 at 3:31 PM, Jeremy Thomerson < > > jer...@wickettraining.com > > > wrote: > > > > > Rodolfo - why is there still a wicketstuff-push folder in trunk [1]? I > > > didn't notice until today when a user ask

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-31 Thread Jeremy Thomerson
it? > > On Sat, Dec 27, 2008 at 3:31 PM, Jeremy Thomerson < > jer...@wickettraining.com > > wrote: > > > Rodolfo - why is there still a wicketstuff-push folder in trunk [1]? I > > didn't notice until today when a user asked a question about it. > > &

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-31 Thread Rodolfo Hansen
Sorry, was away. Um, I don't know where to put the old one. Basically the old code still works with Java 1.4 and wicket 1.3, where would the best place to put it be? just drop it? On Sat, Dec 27, 2008 at 3:31 PM, Jeremy Thomerson wrote: > Rodolfo - why is there still a wicketstuff-pus

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-27 Thread Jeremy Thomerson
Rodolfo - why is there still a wicketstuff-push folder in trunk [1]? I didn't notice until today when a user asked a question about it. Was it an oversight, or is it something different? Just Curious and Confused, Jeremy Thomerson http://www.wickettraining.com On Tue, Dec 9, 2008 at 6:

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-12 Thread Rodolfo Hansen
ents... > >>> > >>> So its better to separate those concerns and have push with its own > >>> mindset, > >>> no? > >>> > >>> > >>> On Tue, Dec 9, 2008 at 9:40 AM, Michael Sparer > >>> wrote: > >>

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-12 Thread Michael Sparer
h to web clients... >>> >>> So its better to separate those concerns and have push with its own >>> mindset, >>> no? >>> >>> >>> On Tue, Dec 9, 2008 at 9:40 AM, Michael Sparer >>> wrote: >>> >>>> >>>> Rod

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-11 Thread Peter Ertl
ecided to stick with your initial idea ;-) did you at least have a look at the cometd stuff in the new wicketstuff-dojo-1.1. project? I'm still against the idea to split up wicketstuff-push completely from the dojo project, but we had the discussion before without result ... regards, Michae

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-11 Thread Michael Sparer
t the cometd stuff in the new >> wicketstuff-dojo-1.1. project? I'm still against the idea to split up >> wicketstuff-push completely from the dojo project, but we had the >> discussion >> before without result ... >> >> regards, >> Michael >> >

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-11 Thread Rodolfo Hansen
still against the idea to split up > wicketstuff-push completely from the dojo project, but we had the > discussion > before without result ... > > regards, > Michael > > > Rodolfo Hansen-2 wrote: > > > > Hi, a new version of wicketstuff-push was moved to the w

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-09 Thread Michael Sparer
Rodolfo, so you finally decided to stick with your initial idea ;-) did you at least have a look at the cometd stuff in the new wicketstuff-dojo-1.1. project? I'm still against the idea to split up wicketstuff-push completely from the dojo project, but we had the discussion before wi

[Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-09 Thread Rodolfo Hansen
Hi, a new version of wicketstuff-push was moved to the wicketstuff-core group of projects, as push-parent (as was specified in the wiki) A couple of new things were done: It is no longer compatible with java 1.4, is built for wicket 1.4 and requires jetty 6.1.14. The dependencies on dojo have

Re: wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-21 Thread Stefan Fußenegger
lso included in the > wicketstuff-dojo-1.1 project then. Then it's your turn to give > recommendations, improvements and, most important, help to get the same > functionality working for 1.1. > > as for the corrupted push project: rodolfo made some changes, so I don't > kn

Re: wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-18 Thread Rodolfo Hansen
Ok, sorry about the mistake (eclipse didn't see some files missing), it is now fixed in the current trunk. On Wed, Nov 12, 2008 at 8:53 AM, Julien Graglia <[EMAIL PROTECTED]>wrote: > Le samedi 08 novembre 2008 à 08:56 -0400, Rodolfo Hansen a écrit : > > I'm currently us

Re: wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-12 Thread Julien Graglia
Le samedi 08 novembre 2008 à 08:56 -0400, Rodolfo Hansen a écrit : > I'm currently using wicketstuff-push on a small app I have. > The only bug I am aware of is related to the RemoveListener. > > What exactly is the issue you are having? I have some javascript errors with th

Re: wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-08 Thread Rodolfo Hansen
I'm currently using wicketstuff-push on a small app I have. The only bug I am aware of is related to the RemoveListener. What exactly is the issue you are having? On Thu, Nov 6, 2008 at 4:17 AM, Julien Graglia <[EMAIL PROTECTED]>wrote: > Hi, > I have read some posts (1) that

Re: wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-06 Thread Michael Sparer
unctionality working for 1.1. as for the corrupted push project: rodolfo made some changes, so I don't know what's going on there. A version of wicketstuff-push before rodolfo started with the makeover is available as a branch. Just check out wicketstuff's branches, if you can'

wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-06 Thread Julien Graglia
Hi, I have read some posts (1) that seems to say that wicketstuff-push will be replaced by a new wicketstuff-dojo-1.1 artifact. The post says that this artifact is in a private SVN repo, but will be available "shortly".. Do you have any informations about that? I need to do reverse

Re: wicketstuff-push

2008-07-17 Thread freak182
------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/wicketstuff-push-tp18260308p18504561.html Sent from t

Re: wicketstuff-push

2008-07-17 Thread Julien Graglia
Le mercredi 16 juillet 2008 à 18:47 -0700, freak182 a écrit : > Hello, > I successfully implement wicket-push in our wicket application...i just used > the example in the wicket-stuff...with the default configuration...i just > checked out and run it...then customized for our needs... With wicket

Re: wicketstuff-push

2008-07-16 Thread freak182
;> >> ago >> >> and it is functional: >> >> >> >> >> http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push/ >> >> >> http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push-ex

Re: wicketstuff-push

2008-07-15 Thread Julien Graglia
> > Le jeudi 03 juillet 2008 à 16:28 +0200, Frank Bille a écrit : > >> As far as I know it only lives in subversion. I tried it myself a month > >> ago > >> and it is functional: > >> > >> http://wicket-stuff.svn.sourceforge.net/svnroot/wick

Re: wicketstuff-push

2008-07-03 Thread freak182
as I know it only lives in subversion. I tried it myself a month >> ago >> and it is functional: >> >> http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push/ >> http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wickets

Re: wicketstuff-push

2008-07-03 Thread Julien Graglia
Le jeudi 03 juillet 2008 à 16:28 +0200, Frank Bille a écrit : > As far as I know it only lives in subversion. I tried it myself a month ago > and it is functional: > > http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push/ > http://wicket-stuff.svn.

Re: wicketstuff-push

2008-07-03 Thread Frank Bille
As far as I know it only lives in subversion. I tried it myself a month ago and it is functional: http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push/ http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push-examples/ On Thu, Jul 3, 2008

wicketstuff-push

2008-07-03 Thread Julien Graglia
Hi, I'am looking for a way to do reverse ajax (or cometd) in Wicket. I have search the Wicket website, examples, and google and the only thing I found was some mail archives talking about a maven artifact called "wicketstuff-push", a

wicketstuff-push-examples compilation error

2008-04-04 Thread Enrique Rodriguez
Hi, Wicket users, I thought I'd examine wicketstuff-push, since I could use push on a project. After a fresh check-out of wicketstuff-push, wicketstuff-push-examples, and wicket-stuff-dojo, I found that wicketstuff-push-examples wouldn't compile. Keep in mind I just starting looki

Re: wicketstuff push and sharing an IChannelService

2007-11-08 Thread Michael Sparer
D]> wrote: >> >> >> Salut Xavier, > > > Hallo Michael, > > I was wondering if I could/should commit the changes I made to wicketstuff >> push to the svn. In brief, this is what I did: >> >> 1. Extended the CometdDefaultBehaviorTemplate.js with the

Re: wicketstuff push and sharing an IChannelService

2007-11-08 Thread Xavier Hanin
On 11/6/07, Michael Sparer <[EMAIL PROTECTED]> wrote: > > > Salut Xavier, Hallo Michael, I was wondering if I could/should commit the changes I made to wicketstuff > push to the svn. In brief, this is what I did: > > 1. Extended the CometdDefaultBehaviorTemplate.

Re: wicketstuff push and sharing an IChannelService

2007-11-06 Thread Michael Sparer
Salut Xavier, I was wondering if I could/should commit the changes I made to wicketstuff push to the svn. In brief, this is what I did: 1. Extended the CometdDefaultBehaviorTemplate.js with the following if clause var doRoundTrip = "true"; if(prop == "script") {

Re: wicketstuff push and sharing an IChannelService

2007-10-25 Thread Xavier Hanin
On 10/25/07, Michael Sparer <[EMAIL PROTECTED]> wrote: > > > Hi Xavier, > > thanks for your effort but please don't take too much time investigating > my > issues :-) > > I'm using wicket 1.3.0-beta3 and wicketstuff push... well since it doesn't >

Re: wicketstuff push and sharing an IChannelService

2007-10-25 Thread Michael Sparer
Hi Xavier, thanks for your effort but please don't take too much time investigating my issues :-) I'm using wicket 1.3.0-beta3 and wicketstuff push... well since it doesn't show the svn version numbers the version of monday this week. Yesterday I had a more thorough look into

Re: wicketstuff push and sharing an IChannelService

2007-10-24 Thread Xavier Hanin
hould work for both, but I haven't tested. Can I ask which version of wicket and wicketstuff-push you're using, and also which implementation of IChannelService? If you want to investigate in the code, the core of the fix relies on the redirect and setRedirectId in TimerChannelBehavior.

Re: wicketstuff push and sharing an IChannelService

2007-10-24 Thread Michael Sparer
ght. I've just lost >> sight of it. But I got another question: how stable is the >> wicketstuff-push >> project or what sections are stable and which have to be improved for use >> in >> a professional webapp? > > > AFAIK wicketstuff-push is developed by

Re: wicketstuff push and sharing an IChannelService

2007-10-23 Thread Xavier Hanin
On 10/23/07, Michael Sparer <[EMAIL PROTECTED]> wrote: > > > Hi Xavier, > > thanks for your reply - well yes, that's certainly right. I've just lost > sight of it. But I got another question: how stable is the > wicketstuff-push > project or what sections

Re: wicketstuff push and sharing an IChannelService

2007-10-22 Thread Michael Sparer
Hi Xavier, thanks for your reply - well yes, that's certainly right. I've just lost sight of it. But I got another question: how stable is the wicketstuff-push project or what sections are stable and which have to be improved for use in a professional webapp? thanks in advanc

  1   2   >