Re: Portlets

2014-09-02 Thread tkofford
No, I don't remember running into either of those 2 issues, and we have a lot of struts2 portlets running. However, we mainly only use the "view" portlet mode and don't do much with the "edit" and "help" portlet modes. The namespace issue is one that

Re: Portlets

2014-09-01 Thread Lukasz Lenart
2014-08-28 14:21 GMT+02:00 tkofford : > I don't know if this will resolve your problem, but you might want to see > this > post:http://struts.1045723.n5.nabble.com/Struts2-Portlets-tp5716471p5716475.html Thanks! I followed this guideline [1] and was able to create a simple portlet,

Re: Portlets

2014-08-28 Thread tkofford
I don't know if this will resolve your problem, but you might want to see this post:http://struts.1045723.n5.nabble.com/Struts2-Portlets-tp5716471p5716475.html -- View this message in context: http://struts.1045723.n5.nabble.com/Portlets-tp5716587p5716588.html Sent from the Struts -

Portlets

2014-08-28 Thread Lukasz Lenart
Hi, I need some help as I'm trying understand how portlets are running, I mean how to sue Struts2 to develop a portlet, how to setup Jetty/Tomcat with Pluto and deploy S2 based portlet and so on. I have started with apps/portlet and used it via 'mvn jetty:run -Ppluto' but got the

Re: Struts2 & Portlets

2014-08-04 Thread tkofford
Hi Chris, Almost all of our struts 2 development is to develop portlets, we use the struts 2 portlet plugin a lot, and it works well for us. We even have a couple of web applications where we use the same deployed *.war file for a standalone webapp and a portlet webapp simultaneously. We deploy

Struts2 & Portlets

2014-07-31 Thread CRANFORD, CHRIS
I currently have a Struts2 application deployed on Tomcat7 and I am looking to add some dashboard portlet functionality. I noticed that Struts2 has a porlet plugin but was curious whether it was possible to configure the WAR with an embedded portal container so that users continued to access my

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-26 Thread phillips1021
2.1.8 release. -- View this message in context: http://www.nabble.com/Error-when-deploying-portlets-beside-a-normal-Struts2-web-app--tp23981728p24228017.html Sent from the Struts - User mailing list archive at Nabble.com. - To

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-26 Thread phillips1021
. Nils-H -- View this message in context: http://www.nabble.com/Error-when-deploying-portlets-beside-a-normal-Struts2-web-app--tp23981728p24227671.html Sent from the Struts - User mailing list archive at Nabble.com. - To

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-26 Thread Nils-Helge Garli Hegvik
search form > > It seems that the s:form tag is causing a problem when using the > struts2-portlet-plugin version 2.1.6 with struts 2 core version 2.1.6. > > We hope this is fixed in the upcoming release of version 2.1.7 as we would > like to use the current release of Struts 2 to build

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-24 Thread phillips1021
t-plugin version 2.1.6 with struts 2 core version 2.1.6. We hope this is fixed in the upcoming release of version 2.1.7 as we would like to use the current release of Struts 2 to build web applications that can be used as standalone applications and as portlet within a portlet container. -- Vie

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-20 Thread phillips1021
x27;ll have a look at it. >> >> Nils-H >> >> > > -- View this message in context: http://www.nabble.com/Error-when-deploying-portlets-beside-a-normal-Struts2-web-app--tp23981728p24124806.html Sent from the Struts - User mailing list archive at Nabble.com.

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-20 Thread phillips1021
at it. > > Nils-H > > -- View this message in context: http://www.nabble.com/Error-when-deploying-portlets-beside-a-normal-Struts2-web-app--tp23981728p24124720.html Sent from the Struts - User mailing list archive at Nabble.com. -

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-19 Thread Nils-Helge Garli Hegvik
It would be helpful if you could create a sample app and attach it to a JIRA issue. Then I'll have a look at it. Nils-H On Fri, Jun 19, 2009 at 9:52 PM, phillips1021 wrote: > > Nils-H (or anyone else): > > I've duplicated this problem with 2.1.6 and portlets as follows:

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-19 Thread phillips1021
Nils-H (or anyone else): I've duplicated this problem with 2.1.6 and portlets as follows: Created a Struts 2 web/portlet application with a pom.xml having a dependency on struts2-core-2.0.11.2.jar. Works both as a normal web application and as a portlet application. Changed the depende

RE: Error when deploying portlets beside a normal Struts2 web app?

2009-06-17 Thread Kofford, C Todd
IainM [mailto:iain.mil...@live.co.uk] Sent: Friday, June 12, 2009 4:04 AM To: user@struts.apache.org Subject: Re: Error when deploying portlets beside a normal Struts2 web app? We have struts.xml set up so that the portlet package extends struts-portlet-default and the normal actions extend struts-default

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-12 Thread IainM
We have struts.xml set up so that the portlet package extends struts-portlet-default and the normal actions extend struts-default. The problem manifests even if all we do is add the portlet-plugin jar into the WEB-INF/lib directory and do no other setup of portlets. So there seems to be something

Re: Error when deploying portlets beside a normal Struts2 web app?

2009-06-12 Thread Nils-Helge Garli Hegvik
If you're using portlets, your package must extend "struts-portlet-default" instead of "struts-default". It should be possible to run servlet actions and portlet actions in the same application. Nils-H On Thu, Jun 11, 2009 at 3:52 PM, IainM wrote: > > Hi, > &

Error when deploying portlets beside a normal Struts2 web app?

2009-06-11 Thread IainM
Hi, I have an existing Struts2 (2.1.6) web app which I would like to add a couple of portlets to. I have added the portlet plugin and a portel.xml file and developed a couple of plugins which I have successfully run in JBOSS Portal. My problem is that the addition of the portlet plugin (struts2

More portlets in portlet-app

2008-12-08 Thread Evert Lammerts
Hi list, I'm trying to get a grip on portlet development with struts and it would be great if someone can help me out! I'm using a Tomcat 6 application server icw a Liferay 5.1.2 portal. I've managed to get struts 1.3.8 portlets working through a struts bridge and now

Re: Struts2 & portlets

2008-11-06 Thread Nils-Helge Garli Hegvik
I can't give you an unbiased answer, but I can tell you that there has been significant efforts making the portlet framework behave as similar to regular web application with Struts 2 as possible, and yet expose the more "advanced" portlet concepts in a sensible manner. So basically, if you like St

Struts2 & portlets

2008-11-06 Thread Pierre Goupil
Hello all, I'm currently evaluating Struts2 Vs. Wicket as a Web framework in a portlet environment. I'm using eXo WebOS as a portal. My question is : what's the status of portlet support in Struts2 ? I don't really care about portlet 1.0 or 2.0 but I'm looking for a fairly robust and easy-to-go i

Re: Images && Portlets

2008-10-14 Thread Nils-Helge Garli Hegvik
It's not really at limitation of struts 2. The portlet spec (jsr168) does not specify support for "resources". Some containers implement å custom window state for this, but since it's not portable, it's not supported in the portlet plugin. So until the jsr286 plugin is ready, you have to do

Images && Portlets

2008-10-14 Thread Torsten Krah
Hi. Is it possible with struts stable (2.0.11.2) - afaik there is no portletUrlType resource there - to render images or other binary content? At the moment i am using the "workaround" to configure the FilterDispatcher (which got this annoying shutdown bug ...) and using the "" hack. I guess t

Re: problem with url tag when using portlets

2008-08-14 Thread Nils-Helge Garli Hegvik
You're right, that is indeed a missing feature. Please register a JIRA issue for this. Nils-H On Thu, Aug 14, 2008 at 1:29 PM, cvx22 <[EMAIL PROTECTED]> wrote: > > hi all, > i'm using struts 2.0.11.2 with portlets (Apache Pluto 1.1.5). > > I have problem with s

problem with url tag when using portlets

2008-08-14 Thread cvx22
hi all, i'm using struts 2.0.11.2 with portlets (Apache Pluto 1.1.5). I have problem with struts url tag. I have something like this: - <%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib prefix="s" uri="/struts-tags"%> [..]

Re: Liferay & Struts2 Portlets, ParametersInterceptor Exception, struts.portlet.action, struts.portlet.mode cannot be set

2008-08-13 Thread Edwin Quita
et project management using struts2, spring, and your plugin =) i have attached the tutorial here for reference. i've successfully deployed 2 portlets (in Liferay 5.x) that used a datasource to display tabular data. keep up the good work! regards, /kits On Wed, Aug 13, 2008 at 6:19 AM, Nils-Hel

Re: Liferay & Struts2 Portlets, ParametersInterceptor Exception, struts.portlet.action, struts.portlet.mode cannot be set

2008-08-13 Thread Nils-Helge Garli Hegvik
Those can safely be ignored but feel free to register a JIRA issue so we can see if we can do something to prevent these messages to appear in the log. One way to do it is to filter them with your logging configuration. Nils-H On Wed, Aug 13, 2008 at 1:12 PM, Torsten Krah <[EMAIL PROTECTED]> wrot

Liferay & Struts2 Portlets, ParametersInterceptor Exception, struts.portlet.action, struts.portlet.mode cannot be set

2008-08-13 Thread Torsten Krah
Deploying a struts2 example app to liferay (5.1.1) i am facing this error output: 13:07:39,410 INFO [STDOUT] 13:07:39,410 ERROR [com.opensymphony.xwork2.interceptor.ParametersInterceptor] ParametersInterceptor - [setParameters]: Unexpected Exception caught setting 'struts.portlet.action' on '

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-08 Thread Jeromy Evans
tom tom wrote: dojo 1.1 Grid looks very good, but it is still under dojox project, because of that we are thinking twice How flexible the YUI datagrid and how about the integration with Struts 2, Is that grid in beta like dojo grid or ready for production support Thanks, The YUI datagrid

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-08 Thread tom tom
dojo 1.1 Grid looks very good, but it is still under dojox project, because of that we are thinking twice How flexible the YUI datagrid and how about the integration with Struts 2, Is that grid in beta like dojo grid or ready for production support Thanks, --- Jeromy Evans <[EMAIL PROTECTED]>

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-05 Thread Jeromy Evans
tom tom wrote: Thanks Jeromy, Is there any reason why YUI datagrid instead of dojo 1.1 grid, Isn't it risky to depend on YUI datagrid, Thanks Moving to YUI datagrid is no riskier than moving to Dojo 1.1. They're both good libraries. Dojo 1.1 is very different than 0.4 but not as diff

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-05 Thread tom tom
Thanks Jeromy, Is there any reason why YUI datagrid instead of dojo 1.1 grid, Isn't it risky to depend on YUI datagrid, Thanks --- Jeromy Evans <[EMAIL PROTECTED]> wrote: > tom tom wrote: > > Thanks Jeromy, > > > > If we use direct dojo calls (dojo 1.1) without > using > > struts ajax tags,

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-05 Thread Jeromy Evans
tom tom wrote: Thanks Jeromy, If we use direct dojo calls (dojo 1.1) without using struts ajax tags, Will there be any issues linking these components with server side Struts Action and form classes, e.g if I have a dojo 1.1 Grib will I be able to utilize the serverside struts action classes,

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-05 Thread tom tom
Thanks Jeromy, If we use direct dojo calls (dojo 1.1) without using struts ajax tags, Will there be any issues linking these components with server side Struts Action and form classes, e.g if I have a dojo 1.1 Grib will I be able to utilize the serverside struts action classes, are there any bes

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-02 Thread Laurie Harper
Yes, it would, which is why Jeromy said don't use the strts2 ajax theme or tags. As long as you don't use those, the Dojo bundled with Struts wont be loaded, so there wont then be a conflict. L. tom tom wrote: Hi Jeromy, Sorry, I forgot one more question, Eventhough we use dojo 1.1 directly

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-01 Thread tom tom
Hi Jeromy, Sorry, I forgot one more question, Eventhough we use dojo 1.1 directly, we need to have dojo.js, wouldn't this conflict with the one which comes as part of struts bundle --- Jeromy Evans <[EMAIL PROTECTED]> wrote: > tom tom wrote: > > Hi, > > > > In order to leverage the full capabil

Re: dojo 1.1 in struts 2.0.11 portlets

2008-05-01 Thread tom tom
Thanks Jeromy, Yes that is what I also thought, On the other hand I came to know that Struts 2.1 got lot of tag enhancements with regards to dojo The main thing which I can't understand is, why struts provides AJAX theme at all, DOJO to me is not only a set of javascript, it is a framewor

Re: dojo 1.1 in struts 2.0.11 portlets

2008-04-30 Thread Jeromy Evans
tom tom wrote: Hi, In order to leverage the full capabilities of dojo 1.1 (latest) with the latest stable struts version. What exactlyt the best practice. The things we concerned are as followes 1) Will there be a conflict in the different dojo versions in struts 2.0.11 and dojo 1.1 Yes, t

dojo 1.1 in struts 2.0.11 portlets

2008-04-30 Thread tom tom
Hi, In order to leverage the full capabilities of dojo 1.1 (latest) with the latest stable struts version. What exactlyt the best practice. The things we concerned are as followes 1) Will there be a conflict in the different dojo versions in struts 2.0.11 and dojo 1.1 2) Will it impact any stru

Re: Struts2 and Portlets + GWT

2007-11-01 Thread Miguel Ping
? > > > > > > > > > > On 10/31/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > not sure if you can use it for this, but there is a GWT plugin > for > > > > struts: > > >

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Musachy Barroso
gt; > > > > > > > > not sure if you can use it for this, but there is a GWT plugin for > > > struts: > > > > > > > > > > http://cwiki.apache.org/S2PLUGINS/gwt-plugin.html > > > > > > > > > > musach

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Miguel Ping
wrong? > > > > > > On 10/31/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > > > > > > > > not sure if you can use it for this, but there is a GWT plugin for > > struts: > > > > > > > > http://cwiki.apache.org/S2PLUGINS/gwt-plug

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Nils-Helge Garli Hegvik
Using the application scope, it shares the attributes with all servlets and portlets in the same application (the same .war unit), but it's still only visible to the user session. To get access to the PortletSession, just use PortletActionContext.getRequest().getPortletSession(). On 10/

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Miguel Ping
OTECTED]> wrote: > > > > > > not sure if you can use it for this, but there is a GWT plugin for > struts: > > > > > > http://cwiki.apache.org/S2PLUGINS/gwt-plugin.html > > > > > > musachy > > > > > > On 10/31/07, Miguel Ping <

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Nils-Helge Garli Hegvik
t; > http://cwiki.apache.org/S2PLUGINS/gwt-plugin.html > > > > musachy > > > > On 10/31/07, Miguel Ping <[EMAIL PROTECTED]> wrote: > > > Hi, thanks for the answer. Yes you are correct, GWT makes special > > requests > > > that update a part of a page.

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Miguel Ping
rg/S2PLUGINS/gwt-plugin.html > > musachy > > On 10/31/07, Miguel Ping <[EMAIL PROTECTED]> wrote: > > Hi, thanks for the answer. Yes you are correct, GWT makes special > requests > > that update a part of a page. I am reading the Portlet spec and I didn

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Musachy Barroso
of a page. I am reading the Portlet spec and I didn't > knew that portlets had custom urls, thanks for the pointer :) > > So I guess in order to have access to portlet preferences / principal info / > etc, the best is to store them in the http session. > Is it an option to write

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Miguel Ping
Hi, thanks for the answer. Yes you are correct, GWT makes special requests that update a part of a page. I am reading the Portlet spec and I didn't knew that portlets had custom urls, thanks for the pointer :) So I guess in order to have access to portlet preferences / principal info / etc

Re: Struts2 and Portlets + GWT

2007-10-31 Thread Nils-Helge Garli Hegvik
Hi! The Jsr168Dispatcher only handles requests created as Portlet URLs. I'm not familiar with GWT so apoligies if my assumptions are incorrect, but I assume that you're referring to some sort of "partial request" that updates a section of the page? In that case, it's correct that it should be invo

Struts2 and Portlets + GWT

2007-10-31 Thread Miguel Ping
Hi all, this is my first post to struts2 mailing list :) I'm using Struts2 and the gwt plugin by Musachy Barroso, in a portlet project, and for the front end I'm using Google Web Toolkit (gwt). So I'm using struts only for the actions, except for the 'default' action, which is a jsp with struts ta

Re: Struts2 Portlets slowing down liferay portal

2007-09-18 Thread tom tom
Have one log4j setting for all the projects, Thanks --- Clark O'Brien <[EMAIL PROTECTED]> wrote: > Setting the freemarker_update_delay improved > performance for sure. > > Hate to ask such a simple question but just own do I > change the devMode option and logging - my log4j.xml > has ERROR set

Re: Struts2 Portlets slowing down liferay portal

2007-09-18 Thread Nils-Helge Garli
devMode: http://struts.apache.org/2.x/docs/devmode.html See if you have log4j.jar other places in your classpath (server scope/shared scope), and if you have log4j configuration files somewhere else. Nils-H On 9/18/07, Clark O'Brien <[EMAIL PROTECTED]> wrote: > Setting the freemarker_update_dela

Re: Struts2 Portlets slowing down liferay portal

2007-09-18 Thread Clark O'Brien
Setting the freemarker_update_delay improved performance for sure. Hate to ask such a simple question but just own do I change the devMode option and logging - my log4j.xml has ERROR set for logging but I am getting INFO on the console. Clark --- Nils-Helge Garli <[EMAIL PROTECTED]> wrot

Re: Struts2 Portlets slowing down liferay portal

2007-09-18 Thread Nils-Helge Garli
Hi! Is it just the page the portlet is on? Have you tried switching of devMode and logging? There should be no extra performance hit compared to a basic Struts 2 application, so the performance tuning information in the documentation should apply: http://struts.apache.org/2.x/docs/performance-tun

Struts2 Portlets slowing down liferay portal

2007-09-18 Thread Clark O'Brien
Hi, I just downloaded struts2 a couple days ago and built a basic portlet with it. When I added the portlet the entire portal became dog slow. When I remove the portlet it is performant again. Can someone tell me why this would be happening. Also I don't want spring, caching,... I just want a bas

Re: [s2] Developing Portlets with Eclipse tutorial available

2007-08-02 Thread Rene Gielen
web.xml), and the overhead is >>> hardly noticeable. >>> >>> I'll try to write a tutorial and/or package it as a maven plugin, but >>> until then, if anybody is interested in the details, just let me know. >>> >>> Nils-H >>> >

Re: [s2] Developing Portlets with Eclipse tutorial available

2007-08-01 Thread Nils-Helge Garli
gt; > > with pluto embedded in jetty, as a real portlet, avoiding the need to > > > > run it emulated as a servlet. It wasn't really that hard (just had to > > > > add a filter and a listener to the web.xml), and the overhead is > > > > hardly notic

Re: [s2] Developing Portlets with Eclipse tutorial available

2007-07-31 Thread Don Brown
ust had to > > > add a filter and a listener to the web.xml), and the overhead is > > > hardly noticeable. > > > > > > I'll try to write a tutorial and/or package it as a maven plugin, but > > > until then, if anybody is interested in the details, just let me

Re: [s2] Developing Portlets with Eclipse tutorial available

2007-07-31 Thread Nils-Helge Garli
filter and a listener to the web.xml), and the overhead is > > hardly noticeable. > > > > I'll try to write a tutorial and/or package it as a maven plugin, but > > until then, if anybody is interested in the details, just let me know. > > > > Nils-H > >

Re: [s2] Developing Portlets with Eclipse tutorial available

2007-07-29 Thread Don Brown
nterested in the details, just let me know. > > Nils-H > > On 7/27/07, Don Brown <[EMAIL PROTECTED]> wrote: > > I wrote up a simple tutorial showing how to start developing portlets > > using Struts 2 and Eclipse. It takes advantage of the fact that > > Struts

Re: [s2] Developing Portlets with Eclipse tutorial available

2007-07-29 Thread Nils-Helge Garli
ested in the details, just let me know. Nils-H On 7/27/07, Don Brown <[EMAIL PROTECTED]> wrote: > I wrote up a simple tutorial showing how to start developing portlets > using Struts 2 and Eclipse. It takes advantage of the fact that > Struts 2 portlets can be deployed as normal

[s2] Developing Portlets with Eclipse tutorial available

2007-07-26 Thread Don Brown
I wrote up a simple tutorial showing how to start developing portlets using Struts 2 and Eclipse. It takes advantage of the fact that Struts 2 portlets can be deployed as normal web applications, the tutorial is more how to use a Maven 2 archetype with Eclipse, but with portlet-specific bits

Re: Struts 2.0.6 portlets

2007-03-16 Thread Nils-Helge Garli
generic javascript problems that has not yet been resolved. In a portlet, every script should be encoded in the namespace of the portlet, to avoid duplication of script method names. So if you have several portlets on a page that uses Ajax, you might encounter problems. But basically, you should be

Re: Struts 2.0.6 portlets

2007-03-14 Thread tom tom
Thank you, Any documentation around on this topic, Struts 2.0.6 portlets development.? (best practices etc). And things to be aware of? I would like to know things like for e.g? If I want a session variable should I put it to the HttpSession or Portlet session. What we really want is forget the

Re: Struts 2.0.6 portlets

2007-03-13 Thread Nils-Helge Garli
alble to successfully deploy the struts 2.06 portlet sample on our portal container which is uPortal. What we want to know is Can we write the portlet applications simillar to the Struts 2.0.6 web applications(not portlets). Does Struts 2.0.6 portlets got limitations compared to the normal struts 2

Struts 2.0.6 portlets

2007-03-13 Thread tom tom
We were alble to successfully deploy the struts 2.06 portlet sample on our portal container which is uPortal. What we want to know is Can we write the portlet applications simillar to the Struts 2.0.6 web applications(not portlets). Does Struts 2.0.6 portlets got limitations compared to the

Re: [S2] Struts 2 and portlets - I found some info

2007-01-09 Thread Dariusz Wojtas
ul for you to be able to beef up our portlet docs directly. Don [1] http://www.apache.org/licenses/ On 1/9/07, Dariusz Wojtas <[EMAIL PROTECTED]> wrote: > Hi, > > Nobody answered my last questions about portlets - but I found some > useful info and will try to share it. > &

Re: [S2] Struts 2 and portlets - I found some info

2007-01-09 Thread Don Brown
AIL PROTECTED]> wrote: Hi, Nobody answered my last questions about portlets - but I found some useful info and will try to share it. The webwork wiki stuff has been copied/migrated to struts 2, but some parts were not updated. For example: http://cwiki.apache.org/WW/portlet-tutorial.html Thi

[S2] Struts 2 and portlets - I found some info

2007-01-09 Thread Dariusz Wojtas
Hi, Nobody answered my last questions about portlets - but I found some useful info and will try to share it. The webwork wiki stuff has been copied/migrated to struts 2, but some parts were not updated. For example: http://cwiki.apache.org/WW/portlet-tutorial.html This page is mostly

[S2] Struts 2 and portlets

2007-01-07 Thread Dariusz Wojtas
Does anybody have experience with Struts2, portlets and Websphere portal 6? Thanks for any response Dariusz Wojtas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[S2] - Struts2, portlets and Websphere Portal

2007-01-03 Thread Dariusz Wojtas
Hello, We are just considering libraries to be used in a new project that is supposed to be a portlet application and work in Websphere 6.x Portal version. I have heard some comments about issues with Struts 1.x in this environment. What does it look like in Struts 2? Are there any issues with u

Strtus and Portlets

2006-07-03 Thread Andy Foster
ct to the JSP This is obviously action chaining and I'm aware that this can cause issues in portlets and the bridge due to the separation of ActionRequests and ActionResponse interfac

RE: Strtus and Portlets

2006-06-30 Thread Andy Foster
-Original Message- From: Paul Benedict [mailto:[EMAIL PROTECTED] Sent: 30 June 2006 15:28 To: Struts Users Mailing List Subject: Re: Strtus and Portlets Portlets use the Portlet API. Struts uses the Servlet API. The Portlet API is nothing but a facade over the servlet api. I do not have any

Re: Strtus and Portlets

2006-06-30 Thread Paul Benedict
Portlets use the Portlet API. Struts uses the Servlet API. The Portlet API is nothing but a facade over the servlet api. I do not have any experience with Struts in a portlet, but I envision it is not possible because every portlet instance as container-encoded request parameter names. And

Strtus and Portlets

2006-06-30 Thread Andy Foster
ct to the JSP This is obviously action chaining and I'm aware that this can cause issues in portlets and the bridge due to the separation of ActionRequests and ActionResponse interfac

RE: Problem with DynaActionForm in portlets

2005-10-16 Thread Tamilselvan Radha Krishnan
portlets Hi, I've used DynaActionForm in websphere portal server while developing portlets. Strangely, I could not able to display the portlet page even there was no fault on our application. When I replaced the DynaActionForm with ActionForm, it worked well. Why it happened? Cant&#

Problem with DynaActionForm in portlets

2005-10-14 Thread Tamilselvan Radha Krishnan
Hi, I've used DynaActionForm in websphere portal server while developing portlets. Strangely, I could not able to display the portlet page even there was no fault on our application. When I replaced the DynaActionForm with ActionForm, it worked well. Why it happened? Cant&#

Re: Struts Portlets, jBoss Portal

2005-03-16 Thread Karan
7;d love to hear about it :) maybe a JSR168 struts portlet? :) -Original Message- From: Karan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 16, 2005 11:07 AM To: ML Struts Subject: Struts Portlets, jBoss Portal Has anyone transferred their Struts application to run as a JSR168 portet in jB

RE: Struts Portlets, jBoss Portal

2005-03-16 Thread Schuster Joel M Contr ESC/NDC
One of the best examples of how to work struts with JSR168 portlets is the sourcecode for LifeRay. > -Original Message- > From: Karan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 16, 2005 10:07 AM > To: ML Struts > Subject: Struts Portlets, jBoss Portal

RE: Struts Portlets, jBoss Portal

2005-03-16 Thread Fogleson, Allen
e- From: Karan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 16, 2005 11:07 AM To: ML Struts Subject: Struts Portlets, jBoss Portal Has anyone transferred their Struts application to run as a JSR168 portet in jBoss Portal?? I am using jBossAS 4.0.1sp1 and jBoss Portal v2.0. Whats confusing me

Struts Portlets, jBoss Portal

2005-03-16 Thread Karan
d"]> This is main.ftl in stack2.war. If you see this, it means basic Struts action-mapping is working. <@html.link action="trial.do">Show Trial When I click on the "Show Trial" link on main.ftl, the application leaves the portal and shows the content of

RE: Migrating from Struts to Portlets

2004-04-02 Thread Marco Mistroni
Hi, Just saw this email... I am interested since in the near future we may end up Just like that, integrating Struts and Portlets. Are there only 'vendor' specific solutions around there? Or, has someone any ideas (or code snippet) on how to integrate them? Regards

RE: Migrating from Struts to Portlets

2004-04-01 Thread Mete Kural
Hello, Robertm are your portlet JSR-168 portlets or Oracle portlet API portlets? Larry, do you need to build JSR-168 portlets or a vendor API specific portlets? Regards, Mete -- Original Message -- From: Robert Augustyn <[EMAIL PROTECTED]> Re

Re: Migrating from Struts to Portlets

2004-04-01 Thread Mete Kural
lt;[EMAIL PROTECTED]> Date: Thu, 1 Apr 2004 11:59:38 +0100 >Hello Larry, > >The open source eXo portal project has a Struts bridge to view Struts applications as >JSR-168 portlets. I've never used it so am not familiar with it. You can check it out >at http://www.exopla

Re: Migrating from Struts to Portlets

2004-04-01 Thread Mete Kural
Hello Larry, The open source eXo portal project has a Struts bridge to view Struts applications as JSR-168 portlets. I've never used it so am not familiar with it. You can check it out at http://www.exoplatform.org and join the mailing list to ask them questions. Regards,

RE: Migrating from Struts to Portlets

2004-04-01 Thread Menke, John
List' Subject: RE: Migrating from Struts to Portlets Robert, That's interesting, and certainly worth noting. I'll keep my eyes out for that. I agree it sounds kind of vendor specific, but... How did your team get around that? Or are they still battling there? I'm curio

RE: Migrating from Struts to Portlets

2004-04-01 Thread Tambascio, Larry
Robert, That's interesting, and certainly worth noting. I'll keep my eyes out for that. I agree it sounds kind of vendor specific, but... How did your team get around that? Or are they still battling there? I'm curious, how did your portlets invoke the Struts actions??

RE: Migrating from Struts to Portlets

2004-04-01 Thread Robert Augustyn
. robert -Original Message- From: Tambascio, Larry [mailto:[EMAIL PROTECTED] Sent: Thursday, April 01, 2004 1:36 PM To: '[EMAIL PROTECTED]' Subject: Migrating from Struts to Portlets Hi, There's a rumbling in the not too distant future of my application, and it in

Migrating from Struts to Portlets

2004-04-01 Thread Tambascio, Larry
27;d like to be able to re-use my existing forms, actions, and JSP pages to render the portlets as much as possible. It seems like there should be a fairly thin layer on top of struts that adapts the portlet environment to struts (or vice-versa). At kind of a low level, it seems that hav