RE: [S2] issues w/ url tags

2007-08-27 Thread paul . saumets
Musachy, Thanks, but I am using the param tags. onclick="location.href=''" Or should I declare my url actions and assign an id and then use something like: Onclick="location.href='%{WorkActionUrl}'" ? Would that make a difference? Thanks, Paul -Original Message- From: Musachy Barroso

[S2] issues w/ url tags

2007-08-27 Thread paul . saumets
Hi all, Been awhile since I've posted. Been running into an issue today and I know this is going to make me look like a fool but better to seek quick advice here rather than bang my head for hours. J When I hit a page my action returns a JSP. The JSP page renders fine but within the JSP page

RE: [S2] re-direct action barfing now?!

2007-06-12 Thread Paul Saumets
Dave, isolated the problem but not entirely sure what's causing it. Inside my spring configuration files I have the following configured while I'm playing with Jackrabbit JCR-170 integration:

Re: Struts 2 newbie question

2007-03-12 Thread Paul Saumets
In your struts.properties file declare the following line: struts.ui.theme=simple then just wrap whatever you'd like around your input tags. Regards, Paul _ From: King, Leon C [mailto:[EMAIL PROTECTED] To: user@struts.apache.org Sent: Mon, 12 Mar 2007 14:23:14 -0400 Subject: Struts 2 ne

[S2] Acegi Security Login Implementation?

2007-03-09 Thread Paul Saumets | Merge
Has anyone implement Acegi Security with Struts 2 yet? I'm working on it and just wondering if the way I'm doing it is bad or not. Basically I've read through abit of docs and looked at many examples and they are force the filter to direct to a login.jsp form which submits to /j_security_check

Re: AJAX Theme / submit form to new page?

2007-03-08 Thread Paul Saumets
Scott, It's frustrating we know but keeping things perspective lets not forget that it just recently came out of beta. Giving it a month or two provides us early adopters with the opportunity to figures things out (albeit the hard way) and help out those folks later on with similar problems lik

[OT] Authorization & Authenticaton

2007-03-07 Thread Paul Saumets
Hey guys, A general question for enterprise based web applications. Is JAAS the standard authorization and authentication framework to implement a sort of global policy login system (like LDAP or something?) I'm not that familiar with such logins methods but at my present office one of the com

Re: [s1] Filters / State Exceptions

2007-03-07 Thread Paul Saumets
the filters in the chain that precedes yours or something. Post your code, web.xml and full stack trace if you still need help isolating the problem. L. Paul Saumets wrote: > As a side note, > > My filter has a couple req.getParameter calls (which I think in-turn call

RE: [s1] Filters / State Exceptions

2007-03-07 Thread Paul Saumets | Merge
Hey, If this is true, then how does one standardly get around this issue when forms submit? Since I believe there is a separate service which processes the forms and attempts to get an InputStream and is causing the crash. I'm really working on a hybrid clickstream tracking filter which reads i

Re: [s1] Filters / State Exceptions

2007-03-06 Thread Paul Saumets
processed when a form is submitted? Regards, Paul _ From: Paul Saumets [mailto:[EMAIL PROTECTED] To: user@struts.apache.org Sent: Tue, 06 Mar 2007 14:44:32 -0500 Subject: [s1] Filters / State Exceptions Hey, I'm hoping someone here could give me some insight why

[s1] Filters / State Exceptions

2007-03-06 Thread Paul Saumets
Hey, I'm hoping someone here could give me some insight why I'm getting an IllegalStateException with my filter. java.lang.IllegalStateException: getInputStream() has already been called for this request My filter calls InputStream in it's init method because it requires to read information

[S2] Mailreader tour source link plz.

2007-03-05 Thread Paul Saumets
Hey all, Does anyone have the link to the Mailreader tour source repository for the Struts 2 version? There's something I really need to take a look at. planetstruts.org seems to be down or inaccessible from my office here all day so far so a direct link would be very useful! Regards, Paul

Re: [S2] Sitemesh - FreeMarker configuration ?

2007-03-01 Thread Paul Saumets
> Could someone please tell me why JBOSS is giving me > the following error when launching my application: > > 11:52:29,729 INFO [STDOUT] 11:52:29,727 ERROR > [[/xx]] Exception starting filter sitemesh > java.lang.NoClassDefFoundError: > com/opensymphony/module/sitemesh/filter/Pa

[S2] Sitemesh - FreeMarker configuration?

2007-03-01 Thread Paul Saumets
Could someone please tell me why JBOSS is giving me the following error when launching my application: 11:52:29,729 INFO [STDOUT] 11:52:29,727 ERROR [[/xx]] Exception starting filter sitemesh java.lang.NoClassDefFoundError: com/opensymphony/module/sitemesh/filter/PageFilter at java.lan

Re: [S2] how to upgrade to 2.0.6

2007-02-27 Thread Paul Saumets
ct and just update the jars ? If so, could you please be more precise about other things that has to be upgrades except the jars. thanks Walid Paul Saumets | Merge wrote: > > Well, > > For each previous release I've just created a brand new us

[S2] LoginAction - Best approach feedback?

2007-02-27 Thread Paul Saumets
AcceptTentativeDeclineCalendar AcceptTentativeDeclineCalendar Hey, Looking for feedback on best way to implement a login action mechanism using Struts2/Spring/JPA Initially I had declared u

Re: [s2] how to upgrade to 2.0.6

2007-02-27 Thread Paul Saumets
Well, For each previous release I've just created a brand new user library (I use Eclipse) and imported the latest libraries from the build. Eg. I'll have various folders where I have unarchived the latest builds Struts-2.0.1 Struts-2.0.4 Struts-2.0.6 In Eclipse I just create a user library for

RE: Problems using spring plugin and struts 2.0.6

2007-02-27 Thread Paul Saumets | Merge
Perhaps obvious question but, Do you have set inside your struts.xml? -Original Message- From: João Vieira da Luz [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 27, 2007 12:42 PM To: user@struts.apache.org Subject: Problems using spring plugin and struts 2.0.6 We've upgraded to str

RE: [S2] Struts 2 Action Classes (HELP!)

2007-02-27 Thread Paul Saumets | Merge
stack used for LoginAction. -Gabe On 2/27/07, Paul Saumets | Merge <[EMAIL PROTECTED]> wrote: > > I'm having some difficulty passing along params from my action forms with > Struts 2. I have a basic jsp form declared as follows: > > nomespace="/"> > >

Struts 2 Action Classes (HELP!)

2007-02-27 Thread Paul Saumets | Merge
I'm having some difficulty passing along params from my action forms with Struts 2. I have a basic jsp form declared as follows: executeLogin is correctly mapped to my LoginAction action class which looks something like the following: public class LoginAction extends ActionSupport {