Re: Wicket Portlets

2010-07-19 Thread Gareth Western
Thanks Thijs! I also found another example that works sitting in the Wicket SVN repo: https://svn.apache.org/repos/asf/wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/portlet/menu/ Basically all I needed to do was add the init-params to my portlet.xml (in addition to the st

Re: Wicket Portlets

2010-07-19 Thread Thijs
For us this works in the Application class: /** * @see wicket.Application#getHomePage() */ public Class getHomePage() { PortletRequestContext prc = (PortletRequestContext) RequestContext.get(); if (PortletMode.EDIT.equals(prc.getPortletRequest().getPortletMode())) {

Wicket Portlets

2010-07-19 Thread Gareth Western
Is anyone here using Wicket in a portal (i.e. for portlets)? I'm trying to figure out how to switch pages when the user changes Portlet mode (e.g. VIEW -> EDIT). Looking through the source, it looks like the responsible method (WicketPortlet#getWicketConfigParameter(PortletRequest request, String

Re: SV: Wicket Portlets and Liferay

2010-01-13 Thread Klaus Astner
Many thanks to Andreas, now it works smoothly. - Klaus Am 13.01.2010 um 14:20 schrieb Wilhelmsen Tor Iver: > We are running Wicket + Liferay (Webspace) in Glassfish 2, and experience no > problems; IIRC Glassfish uses the same Catalina engine as Tomcat? > >> >> For AJAX/resource requests, a

Re: SV: Wicket Portlets and Liferay

2010-01-13 Thread Thijs
On 13-1-2010 14:20, Wilhelmsen Tor Iver wrote: We are running Wicket + Liferay (Webspace) in Glassfish 2, and experience no problems; IIRC Glassfish uses the same Catalina engine as Tomcat? For AJAX/resource requests, another supports element for mime-type "text/xml" is needed. This sounds

SV: Wicket Portlets and Liferay

2010-01-13 Thread Wilhelmsen Tor Iver
We are running Wicket + Liferay (Webspace) in Glassfish 2, and experience no problems; IIRC Glassfish uses the same Catalina engine as Tomcat? > > For AJAX/resource requests, another supports element for mime-type > "text/xml" is needed. This sounds like a Tomcat issue, our portlets use Ajax fi

AW: Wicket Portlets and Liferay

2010-01-13 Thread Andreas Thiel
-Ursprüngliche Nachricht- Von: Klaus Astner [mailto:klaus.ast...@ec3.at] Gesendet: Mittwoch, 13. Januar 2010 09:40 An: users@wicket.apache.org Betreff: Wicket Portlets and Liferay Hi, We want to use Wicket Portlets in Liferay. The first step would be that all the wicket-example stuff is wo

Wicket Portlets and Liferay

2010-01-13 Thread Klaus Astner
Hi, We want to use Wicket Portlets in Liferay. The first step would be that all the wicket-example stuff is working - including Ajax. Onfortunately it does not work as intended. The versions to be used are: - Liferay-5.2.2 with Tomcat 6 (currently they use 6.0.18) bundled - Apache Wicket 1.4.5

Wicket & Portlets : content-type problem

2009-07-06 Thread Pierre Goupil
Hello, I'm currently facing a problem with a simple code. I'm trying and display a YUI Carousel but my portal (eXo Platform) gives me an error : exception returned by processAction() or render() methods Here is the code, which works in a servlet context : List list = Arrays.asList(new String

Re: Portlets - Loosing state in wicket portlets

2009-05-22 Thread sauli_k
am using two Wicket-Portlets in a Liferay 5.2.1 Portal. Both Portlets > have > a link which switches to another page within the portlet (via > setResponsepage(new > Page()) ). > When I click the link in Portlet_1 the page within the portlet one changes > as desired. After that I c

Re: Wicket Portlets and Liferay

2009-05-11 Thread Tonio Caputo
Bruno, Looking at the issue, this is the reason of the difference *Environment: Liferay's internal portlet container (does not happen on Sun's portlet container) **"1). Add to your portal-ext.properties this line portlet.container.impl=sun" *This configuration makes liferay use Sun Portlet

Re: Wicket Portlets and Liferay

2009-05-11 Thread Bruno Ledesma
Tonio, what are the wicket/liferay versions that you are using? My problem with filtermapping and porltet names are currently registered in liferay's JIRA You can take a look at: http://issues.liferay.com/browse/LPS-1911 But anyway, its working :) ! My fear right now is about using all wicket'

Re: Wicket Portlets and Liferay

2009-05-11 Thread Tonio Caputo
Bruno, Well that is a surprise for me, this is my web file kmkApplication /kmk/* REQUEST INCLUDE FORWARD and my portlet file kmkApplication wicketFilterPath /kmk and it works pretty well :) I remember another thing

Re: Wicket Portlets and Liferay

2009-05-11 Thread Bruno Ledesma
Well, its kind of curious... the 2nd issue that you posted: 2). Never call your appl/portlet-name with the same name as the url-mapping. In fact, I was not able to see my portlet if the portlet name and filter-mapping are differents. Just to confirm , when you say URL Mapping do you mean...?

Re: Wicket Portlets and Liferay

2009-05-11 Thread Tonio Caputo
Hi Bruno, I'm a beginner in wicket, also in liferay and was able to use wicket to construct a portlet. My first experience was a bit tough, a lot of minor problems Take a look at all the things find in the internet, I was trying to make a simple doc with all the issues but I was not able. The 2

Wicket Portlets and Liferay

2009-05-11 Thread Bruno Ledesma
Hello Everyone! Im currently developing portlets with Wicket 1.4-rc2 and liferay 5.2 . They have some compatibility issues (portlet names must be equal the wicket filter-mappings). Does anyone know anyother issues? I saw in liferay foruns some guys that are developing portlets (in liferay) with wi

Re: Wicket Portlets in WebLogic Portal?

2009-03-23 Thread jakewicket
interfaces for WebLogic Portal that are needed for Wicket 1.3.5 please let me know - thanks! -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-WebLogic-Portal--tp22605855p22663707.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Wicket Portlets in WebLogic Portal?

2009-03-23 Thread jakewicket
- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > > -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-WebLogi

Re: Wicket Portlets in WebLogic Portal?

2009-03-23 Thread Thijs
duh.. :-) I was just discussing a Liferay issue with a colleague and by mistake typed that instead of Wicket :-) Thijs On 23-3-2009 16:09, jakewicket wrote: Thanks for the quick reply. I'm using WebLogic Portal, not Liferay. I'll have to see if WebLogic Portal fully supports the portlet 2.

Re: Wicket Portlets in WebLogic Portal?

2009-03-23 Thread jakewicket
Thanks for the quick reply. I'm using WebLogic Portal, not Liferay. I'll have to see if WebLogic Portal fully supports the portlet 2.0 spec, and try upgrading to Wicket 1.4 (I was trying this with Wicket 1.3.5). -- View this message in context: http://www.nabble.com/Wicket-P

Re: Wicket Portlets in WebLogic Portal?

2009-03-23 Thread Thijs
What version of liferay are you using? Wicket 1.3.x needs the portlet bridge implementation. (to cater for portlet1.0 spec). And for weblogic I think you'r on your own. This bridge implementation is portlet container specific. Wicket 1.4 you shouldn't need the portlet bridges any more but the

Re: Wicket Portlets in WebLogic Portal?

2009-03-23 Thread jakewicket
think that this may be related to the implementation of those two Apache Portals Bridges interfaces mentioned earlier. If anyone has tried this before please let me know. Thanks! -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-WebLogic-Portal--tp22605855p22661884.html

Re: Wicket Portlets in WebLogic Portal?

2009-03-20 Thread jakewicket
Just another follow-up to this earlier post. If anyone has had any success getting Wicket portlets to work in WebLogic Portal (or knows if that is even possible), please let me know. Thanks! -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-WebLogic-Portal

Wicket Portlets in WebLogic Portal?

2009-03-19 Thread jakewicket
ction, I'd appreciate it! -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-WebLogic-Portal--tp22605855p22605855.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsub

Portlets - Loosing state in wicket portlets

2009-03-10 Thread Benjamin Ernst
Hi, I am using two Wicket-Portlets in a Liferay 5.2.1 Portal. Both Portlets have a link which switches to another page within the portlet (via setResponsepage(new Page()) ). When I click the link in Portlet_1 the page within the portlet one changes as desired. After that I click the link in

Re: Wicket Portlets on WAS 7.5

2009-02-27 Thread Philippe Marzouk
286 support tested on WAS? Are there known issues? > > The Wicket documentation mentions that we need to use WicketFilter instead > of WicketServlet, but when we run the wicket web application in WAS, the > application doesn't run with the WicketFilter. we need to change it

Wicket Portlets on WAS 7.5

2009-02-26 Thread suneeelu
ad of WicketServlet, but when we run the wicket web application in WAS, the application doesn't run with the WicketFilter. we need to change it to WicketServlet to make it run. do Wicket Portlets also need the WicketServlet configuration? Where can we find more documentation on using Wicket for its P

About Wicket portlets, DatePicker, onLoad and onDomReady

2008-09-17 Thread Serkan Camurcuoglu
Hi all, While I was experimenting with date pickers in portlets, I've noticed something. When a portlet makes a header contribution, it cannot directly contribute to document's head, instead it generates something like:

Re: Wicket Portlets in Liferay 5

2008-05-15 Thread Benjamin Ernst
Hi Thijs, thanks for your help, but you don't have to hurry. We faked the whole thing by running our Wicket-App inside an iFrame in Liferay. It is just for a showcase. So we don't need it right now. Thanks anyway, Benjamin On Thu, May 15, 2008 at 9:14 PM, Thijs Vonk <[EMAIL PROTECTED]> wrote:

Re: Wicket Portlets in Liferay 5

2008-05-15 Thread Thijs Vonk
Hi Benjamin I'll see if I have some time left tomorrow, otherwise hopefully before next tuesday. Thijs Benjamin Ernst wrote: Hi Thijs, We are currently trying to integrate Liferay 5 with wicket 1.3. Can you give us the advise you offered? That would be very nice. Thank you in advance, Benja

Re: Wicket Portlets in Liferay 5

2008-05-14 Thread Benjamin Ernst
Hi Thijs, We are currently trying to integrate Liferay 5 with wicket 1.3. Can you give us the advise you offered? That would be very nice. Thank you in advance, Benjamin On Mon, May 5, 2008 at 11:33 PM, Thijs Vonk <[EMAIL PROTECTED]> wrote: > Hi, > > Currently without building wicket against Li

Re: Wicket Portlets in Liferay 5

2008-05-06 Thread Bobby Quinne
ent about the >>>>>>> work >>>>>>> I've been doing. >>>>>>> >>>>>>> I hope that answers your questions a bit. >>>>>>> Thijs >>>>>>> >>>>>>> >>

Re: Wicket Portlets in Liferay 5

2008-05-06 Thread Thijs
Bobby Quninne schreef: Are JSR-168 portlets also affected by this? Not sure what you are asking. The current JSR-168 implementation in wicket is pretty much final, and for wicket 1.3.x will probably not change. However newer versions of wicket probably will not be backwards compatible, with

Re: Wicket Portlets in Liferay 5

2008-05-06 Thread Bobby Quninne
t; >>>>> gaugat wrote: >>>>> >>>>> >>>>>> I've read in the forums, that it is better to wait for Liferay 5 (JSR >>>>>> 286) to >>>>>> develop portlets in Apache Wicket. So has anyone d

Re: Wicket Portlets in Liferay 5

2008-05-06 Thread Thijs
No, as described it depends on several factors 1. my/other people's time to commit to this 2. official release of the portlet 2 specifications Thijs Bobby Quninne schreef: You have a rough guess estimate as to a wicket release that will address JSR-268 compliance? Many thanks Thijs wrote:

Re: Wicket Portlets in Liferay 5

2008-05-06 Thread Bobby Quninne
> wicket portlet posted somewhere that I could look at? Are there still >>>> issues >>>> with Wicket and Liferay? >>>> >>>> >>> - >>> To unsubscribe, e-mail:

Re: Wicket Portlets in Liferay 5

2008-05-05 Thread Thijs Vonk
Hi, Currently without building wicket against Liferay (using com.liferay.portlet.renderresponseimpl, instead of javax.portlet.renderresponse) it is not possible to run wicket without losing most of wickets functionality. I can, if you want, give you a patch and some instructions to get wicket

Re: Wicket Portlets in Liferay 5

2008-05-05 Thread Bobby Quninne
-------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-Liferay-5-tp16995052p17061496.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket Portlets in Liferay 5

2008-05-01 Thread Thijs Vonk
Hi, I'm working on getting wicket compatible with jsr-286 now. However while doing this I've noticed that Liferay has still some major issues regarding jsr-286. Especially regarding setting properties on the response (essentially setting response headers, cookies, etc) there is still some wo

Wicket Portlets in Liferay 5

2008-05-01 Thread gaugat
still issues with Wicket and Liferay? -- View this message in context: http://www.nabble.com/Wicket-Portlets-in-Liferay-5-tp16995052p16995052.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e

Wicket Portlets

2008-03-14 Thread gaugat
context: http://www.nabble.com/Wicket-Portlets-tp16048160p16048160.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket Portlets in Liferay

2007-11-12 Thread Thijs
Ate, your the man :) I'll try to dive into the parameter problem this week. Thnx Thijs Ate Douma wrote: Thijs wrote: I'm trying to get wicket portlets to work in Liferay. As fas as I can tell there are at least 2 issues at the moment: 1.) A nullpointer exception in WebResponse

Re: Wicket Portlets in Liferay

2007-11-12 Thread Ate Douma
Thijs wrote: I'm trying to get wicket portlets to work in Liferay. As fas as I can tell there are at least 2 issues at the moment: 1.) A nullpointer exception in WebResponse due to an issue in de Liferay code that returns null in the encodeRedirectUrl (see http://www.liferay.com/web/

Wicket Portlets in Liferay

2007-11-12 Thread Thijs
I'm trying to get wicket portlets to work in Liferay. As fas as I can tell there are at least 2 issues at the moment: 1.) A nullpointer exception in WebResponse due to an issue in de Liferay code that returns null in the encodeRedirectUrl (see http://www.liferay.com/web/guest/community/f

Re: New Wicket Portlets Demo available

2007-09-25 Thread Dipu Seminlal
ith portlets and portals, check out the > WICKET-647 and WICKET-658 issues which have some head start info. > > Regards, > > Ate Douma > > Ate Douma wrote: > > I'm really happy to announce that a new and quite feature complete > > Wicket Portlets Demo is now availa

RE: New Wicket Portlets Demo available

2007-09-25 Thread Weaver, Scott
This great news! Thanks for all your hard work on this, Ate. -scott -Original Message- From: Ate Douma [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 25, 2007 9:31 AM To: users@wicket.apache.org Cc: Jetspeed Users List Subject: Re: New Wicket Portlets Demo available I'm even

Re: New Wicket Portlets Demo available

2007-09-25 Thread Ate Douma
really happy to announce that a new and quite feature complete Wicket Portlets Demo is now available for download at: http://people.apache.org/~ate/wicket/jetspeed-2.1.3-dev-wicket-demo-installer.jar I've worked hard the last few weeks to improve the Wicket portlet support branch and it ca

Re: New Wicket Portlets Demo available

2007-09-20 Thread Ate Douma
it might be merged into the trunk? Regards Dipu On 9/17/07, Ate Douma <[EMAIL PROTECTED]> wrote: I'm really happy to announce that a new and quite feature complete Wicket Portlets Demo is now available for download at: http://people.apache.org/~ate/wicket/jetspeed-2.1.3-dev-wic

Re: New Wicket Portlets Demo available

2007-09-20 Thread Gwyn Evans
On Thursday, September 20, 2007, 10:50:30 AM, Ate <[EMAIL PROTECTED]> wrote: > I've proposed to merge this into trunk now (before -beta4 release), > but this hasn't been decided or voted upon yet. Well, you can now vote on it, at least! :-) /Gwyn ---

Re: New Wicket Portlets Demo available

2007-09-20 Thread Dipu Seminlal
eptember 20, 2007, 10:20:23 AM, Dipu < > [EMAIL PROTECTED]> wrote: > > > Hi Ate, > > > I'm interested in the portlet support which you have implemented in > wicket. > > > Any idea when it might be merged into the trunk? > > > Regards > > Dipu

Re: New Wicket Portlets Demo available

2007-09-20 Thread Ate Douma
lly happy to announce that a new and quite feature complete Wicket Portlets Demo is now available for download at: http://people.apache.org/~ate/wicket/jetspeed-2.1.3-dev-wicket-demo-installer.jar I've worked hard the last few weeks to improve the Wicket portlet support branch and it

Re: New Wicket Portlets Demo available

2007-09-20 Thread Gwyn Evans
might be merged into the trunk? > Regards > Dipu > On 9/17/07, Ate Douma <[EMAIL PROTECTED]> wrote: >> >> I'm really happy to announce that a new and quite feature complete Wicket >> Portlets Demo is now available for download at: >> >> >> h

Re: New Wicket Portlets Demo available

2007-09-20 Thread Dipu Seminlal
Hi Ate, I'm interested in the portlet support which you have implemented in wicket. Any idea when it might be merged into the trunk? Regards Dipu On 9/17/07, Ate Douma <[EMAIL PROTECTED]> wrote: > > I'm really happy to announce that a new and quite feature complete Wic

New Wicket Portlets Demo available

2007-09-17 Thread Ate Douma
I'm really happy to announce that a new and quite feature complete Wicket Portlets Demo is now available for download at: http://people.apache.org/~ate/wicket/jetspeed-2.1.3-dev-wicket-demo-installer.jar I've worked hard the last few weeks to improve the Wicket portlet support

Re: New Wicket Portlets Demo available

2007-09-17 Thread Eelco Hillenius
> But I will need support from all the Wicket committers for trying to maintain > portlet compatibility as much as possible too! As long as you tell us when we're breaking the rules, we'll be happy to comply :) Eelco - To unsub

Re: New Wicket Portlets Demo available

2007-09-17 Thread Ate Douma
Eelco Hillenius wrote: WDYT? Good news Ate! I'm +1 for putting it in trunk if you take on the responsibility of maintaining it properly. Sure :) I'm pretty much involved in several projects which would like to use the Wicket portlet support, and of course if we manage to rewrite our Jetspeed-

Re: New Wicket Portlets Demo available

2007-09-17 Thread Igor Vaynberg
im with eelco -igor On 9/17/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > > WDYT? > > Good news Ate! I'm +1 for putting it in trunk if you take on the > responsibility of maintaining it properly. > > Eelco > > - > To unsubs

Re: New Wicket Portlets Demo available

2007-09-17 Thread Eelco Hillenius
> WDYT? Good news Ate! I'm +1 for putting it in trunk if you take on the responsibility of maintaining it properly. Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket portlets on LIferay

2007-08-08 Thread Miso
Me too :) -- View this message in context: http://www.nabble.com/Wicket-portlets-on-LIferay-tf4231110.html#a12051726 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Wicket portlets on LIferay

2007-08-08 Thread Miso
Yes, I'm using this experimental portlet branch. -- View this message in context: http://www.nabble.com/Wicket-portlets-on-LIferay-tf4231110.html#a12051724 Sent from the Wicket - User mailing list archive at Nabble.com. ---

Re: Wicket portlets on LIferay

2007-08-08 Thread Martijn Dashorst
; ... > protected void init() { > super.init(); > > getRequestCycleSettings().setRenderStrategy(IRequestCycleSettings.ONE_PASS_RENDER); >} > ... > > > Any idea? > > Miso > -- > View this message in context: > http://www.nabble.com/Wicket

Re: Wicket portlets on LIferay

2007-08-08 Thread Martijn Dashorst
trategy(IRequestCycleSettings.ONE_PASS_RENDER); >} > ... > > > Any idea? > > Miso > -- > View this message in context: > http://www.nabble.com/Wicket-portlets-on-LIferay-tf4231110.html#a12047909 > Sent from the Wicket - User mailing list archive at Nabble.

Re: Wicket portlets on LIferay

2007-08-07 Thread Miso
init() { super.init(); getRequestCycleSettings().setRenderStrategy(IRequestCycleSettings.ONE_PASS_RENDER); } ... Any idea? Miso -- View this message in context: http://www.nabble.com/Wicket-portlets-on-LIferay-tf4231110.html#a12047909 Sent from the Wicket - User mailing list archi

Re: Wicket portlets on LIferay

2007-08-07 Thread Martijn Dashorst
gt; org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) > at > org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(Thr

Wicket portlets on LIferay

2007-08-07 Thread Miso
:684) at java.lang.Thread.run(Thread.java:595) -- View this message in context: http://www.nabble.com/Wicket-portlets-on-LIferay-tf4231110.html#a12037332 Sent from the Wicket - User mailing list archive at Nabble.com