RE: Form Bean not able to read form rendered from xml/xsl

2006-12-26 Thread Chris Loschen
m your XSLT, then there's a problem with the XSLT. If it's an XSLT problem, you'd have more luck asking the XSLT list at [EMAIL PROTECTED] Good luck! Chris Loschen -Original Message- From: Rajeev Kumar Pandey [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 26, 2006 4:

RE: Struts, AJAX, JSP, and JavaScript question

2006-11-29 Thread Chris Loschen
Perhaps I'm missing something -- I don't know that much about JS and less about Ajax -- but these error messages look like they're exactly right to me. In the first case, you're starting element foo, then element bar, then ending element foo before you end the child element bar. That's ill-forme

RE: bean:write not displaying the intended values

2006-11-16 Thread Chris Loschen
Did you include the taglib reference in your JSP page? Something like this: <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> Without it, the JSP can't find the custom tag and you get the behavior you're describing. Hope that helps. Chris Losch

RE: Junit tests on remote Struts application in Eclipse

2006-07-10 Thread Chris Loschen
lps. - George http://www.idiacomputing.com/ > -Original Message- > From: Chris Loschen [mailto:[EMAIL PROTECTED] > Sent: Monday, July 10, 2006 1:25 PM > To: Struts Users Mailing List > Subject: Junit tests on remote Struts application in Eclipse > > > Hi all, &

Junit tests on remote Struts application in Eclipse

2006-07-10 Thread Chris Loschen
Hi all, This is admittedly tangential to our topic, but some other questions on Eclipse came up last week, and people here seem knowledgeable on all sorts of subjects... If you know of a better list on which I could ask this question, please let me know: I should probably be on it. I have a st

Books on JSF

2006-04-19 Thread Chris Loschen
Hi all, I'd like to start learning more about JSF. I've had a recommendation for _Core Java Server Faces_ -- do people here agree that would be a good choice? Any other recommendations? Thanks! Chris - To unsubscribe, e-mail

RE: debuging in eclipse

2006-02-23 Thread Chris Loschen
not mistaken. Good luck. Better to ask these questions to the list (which I'll copy) as they'll likely have answers that I don't. Chris -Original Message- From: Shasirekha Engala [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 9:15 AM To: Chris Loschen Subjec

RE: How to inject code between of a generated page ?

2006-02-23 Thread Chris Loschen
: Thursday, February 23, 2006 10:55 AM To: Struts Users Mailing List Subject: Re: How to inject code between of a generated page ? Am pretty sure, JSP is not about xml at all :) and will never fit in a xml parser! Chris Loschen a écrit : >But you can't do that -- it's not we

RE: How to inject code between of a generated page ?

2006-02-23 Thread Chris Loschen
But you can't do that -- it's not well-formed XML. Chris -Original Message- From: David Delbecq [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 7:53 AM To: Struts Users Mailing List Subject: Re: How to inject code between of a generated page ? Na, he just asummed the tag

RE: debuging in eclipse

2006-02-23 Thread Chris Loschen
ging. rem set JAVA_OPTS=-classic -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y %JAVA_OPTS% Shasi -Original Message- From: Chris Loschen [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 10:18 AM To: Struts Users Mailing List;

RE: debuging in eclipse

2006-02-22 Thread Chris Loschen
Quick question -- The JAVA_OPTS line you have below starts with "rem" which indicates a remark in batch files. That would indicate that the line isn't getting executed. If you remove the "rem," does that help? Chris -Original Message- From: Max Cooper [mailto:[EMAIL PROTECTED] Sent: We

Using RBAC and tiles to dynamically display menu items

2005-10-12 Thread Chris Loschen
neither of those seemed to make any difference. I don't have the source code for rbac, so my debugging hasn't given me much help. I also tried googling for information, but haven't found anything useful yet. Does anyone have any ideas for me, or what other informat

RE: Displaying errors for all except one key

2005-08-22 Thread Chris Loschen
it does get excluded but I also get the empty which displays a big red box on my page. Fortunately, that happens very rarely. I guess I could extend messagesPresent as well to take care of that. Thanks again for the help. I really appreciate it. Chris Loschen -Original Message- From: C

RE: Displaying errors for all except one key

2005-08-16 Thread Chris Loschen
rrow and if all goes well, I'll post what I've done. Again, thank you very much for your help. Chris -Original Message- From: Kishore Senji [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 1:08 PM To: Struts Users Mailing List Subject: Re: Displaying errors for all except

RE: Displaying errors for all except one key

2005-08-16 Thread Chris Loschen
asically, you would be iterating over all the properties and showing the errors to all but the property that you don't want to show the errors for. [Note: one thing to note would be, I don't know if the ordering of the errors will be the same of that you would get if you leave the iterati

RE: Displaying errors for all except one key

2005-08-15 Thread Chris Loschen
Does anyone have some ideas for me? Thank you! -Original Message- From: Chris Loschen Sent: Saturday, August 13, 2005 5:48 PM To: Struts Users Mailing List Subject: RE: Displaying errors for all except one key My Google research leads me to believe that I'm using old, depre

RE: Displaying errors for all except one key

2005-08-13 Thread Chris Loschen
that's why I'm seeing the other errors but not the validator errors? Is there a way to make this work short of refactoring the entire application? Any help would be greatly appreciated. Thanks! Chris -Original Message- From: Chris Loschen Sent: Saturday, August 13, 2005 3:08 PM

Displaying errors for all except one key

2005-08-13 Thread Chris Loschen
properties that are NOT ..." At the moment, there is just one property which we need to exclude, but that could possibly grow down the road. Does anyone have any ideas? Thank you! Chris Loschen ___ Siebel IT'S ALL ABOUT THE CUSTOMER Visit www.siebel.com This e-mail mes

RE: Test whether an application resource is empty

2005-06-13 Thread Chris Loschen
ce bundle bean, where 'Foo' is what ever <%=directionToUserKey.toString()%> evaluates to. Clearly not what's needed. The following works for me: using Struts bean/logic Just replace 'errors.cancel' with '<%=directionToUserKey.toString(

RE: Test whether an application resource is empty

2005-06-10 Thread Chris Loschen
mportant. > > By the way, just for my own learning: I initially tried to put the > attribute in page scope, but I kept getting a null value: is page > scope specific to a particular JSP (I would have thought that was tile > scope...), or should it be available throughout the su

RE: Test whether an application resource is empty

2005-06-10 Thread Chris Loschen
equired here? Thanks again for everyone's help! Chris Loschen -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Thursday, June 09, 2005 7:07 PM To: user@struts.apache.org Subject: Re: Test whether an application resource is empty Try: "

RE: Test whether an application resource is empty

2005-06-09 Thread Chris Loschen
But it doesn't matter if you're using Struts or not. If you're using a Servlet 2.3 container, you can use JSTL which you want to use. If possible avoid the and tags, and use JSTL instead. These are built with EL. -Original Message- From: Chris Loschen [mailto:[EMAIL PROTECTED]

RE: Test whether an application resource is empty

2005-06-09 Thread Chris Loschen
Sent: Thursday, June 09, 2005 12:17 PM To: 'Struts Users Mailing List' Subject: RE: Test whether an application resource is empty Chris, Use to bring in the key. You can then use EL to test if it is empty or whatever. Thanks, Paul -Original Message- From: Chris Loschen [mailt

RE: Test whether an application resource is empty

2005-06-09 Thread Chris Loschen
or your input. Any further ideas? Chris -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 2005 11:52 AM To: Struts Users Mailing List Subject: Re: Test whether an application resource is empty From: "Chris Loschen" <[EMAIL PROTECTED]> > Q

RE: Test whether an application resource is empty

2005-06-09 Thread Chris Loschen
I'm sorry to keep sending this over and over again, but I'm really stuck. If this isn't possible, could someone let me know? Then I could try to find an alternate path. Chris -Original Message----- From: Chris Loschen Sent: Wednesday, June 08, 2005 5:09 PM To: Struts Use

RE: Test whether an application resource is empty

2005-06-08 Thread Chris Loschen
test that the key is non-empty, but I haven't yet figured out how to test the same thing for the value. If anyone could help, I'd really appreciate it. Thanks! Chris -Original Message----- From: Chris Loschen Sent: Wednesday, June 08, 2005 1:12 PM To: Struts Users Mailing Lis

Test whether an application resource is empty

2005-06-08 Thread Chris Loschen
ntain only one of name attribute, value attribute, or body content". I've tried lots of variations similar to that, but haven't struck upon the right one yet. This SEEMS like something which should be pretty simple, but I'm missing something. Any suggestions? Thanks!

RE: Pb with html:link

2005-06-08 Thread Chris Loschen
@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> In this case, you need the html taglib for your html:link to work. Hope that helps! Chris Loschen -Original Message- From: JM Tinghir [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 3:39 AM To: Str

RE: html:img question

2005-05-25 Thread Chris Loschen
Hope that helps! Chris Loschen -Original Message- From: Aladin Alaily [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 25, 2005 6:39 PM To: Struts Users Mailing List Subject: html:img question Hi Guys, Maybe I've been working too long... but I can't seem to figure out the

RE: Populating a new form bean and passing it on to the next request

2005-05-25 Thread Chris Loschen
a new form bean and passing it on to the next request you set stuff in your request object..but for the login form another request object is created and it has a seperate instance of loginForm..i am a bit rusty with struts, pls correct me if i am wrong -Original Message- From: Chris Lo

RE: Populating a new form bean and passing it on to the next request

2005-05-25 Thread Chris Loschen
ods in a base class that LogonAction and ForgotPasswordAction extend. Otherwise, a small amount of redundant logic from Action to Action is not a bad thing. I think this would remove the problem you are describing. But of course, I'm making a lot of assumptions. Hope that helps, Erik -Original Messa

Populating a new form bean and passing it on to the next request

2005-05-25 Thread Chris Loschen
loginForm extends ValidatorForm, and both user and password are required in validation.xml, which is where my error messages appear to be coming from. I tried using a fully qualified name for loginForm (as in the form-bean declaration), but that didn't help either. Any suggestio

RE: Combining html:image and bean:define

2005-05-04 Thread Chris Loschen
-html.html#link http://struts.apache.org/userGuide/struts-html.html#image http://struts.apache.org/userGuide/struts-html.html#img Niall - Original Message - From: "Chris Loschen" <[EMAIL PROTECTED]> Sent: Tuesday, May 03, 2005 9:55 PM Responding to my own question, I did

RE: Combining html:image and bean:define

2005-05-03 Thread Chris Loschen
Responding to my own question, I did manage to get this working by doing this: Is that the best way to do it? (It works, which is the main thing, but if there's a more efficient method, please let me know...) Thanks again! Chris Loschen -Original Message- From: Chris Lo

Combining html:image and bean:define

2005-05-03 Thread Chris Loschen
ables. There has got to be a way around this -- any suggestions? Thanks! Chris Loschen ___ Siebel IT'S ALL ABOUT THE CUSTOMER Visit www.siebel.com This e-mail message is for the sole use of the intended recipient(s) and contains confidential and/or privileged information bel