RE: [OT] access Microsoft Access database from remote machine

2004-11-15 Thread Daniel Perry
Or, set up filesharing and access then set up a system dsn on the machine you want to use it on. Can get a bit messy though with concurrent access :) Daniel. > -Original Message- > From: Lee Harrington [mailto:[EMAIL PROTECTED] > Sent: 15 November 2004 18:34 > To: Struts U

RE: talking about paradigms

2004-11-16 Thread Daniel Perry
some custom tag libraries... and it works. You can add scriptlets and it works. But unlike XSLT there's no necessity to use the more complicated/messy code - but when you want to, it's there. Daniel. > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTE

RE: AW: talking about paradigms

2004-11-16 Thread Daniel Perry
c++ calls them pointers - but they are the same thing. c lets you get at the pointers and affect their values directly. Java stops this, but you can still change a pointer value - just assign it to a different object! Automatic memory management and no pointer arithmatic is what makes java

RE: [OT] User Preference System Design

2004-11-17 Thread Daniel Perry
works. Daniel. > -Original Message- > From: Julian [mailto:[EMAIL PROTECTED] > Sent: 17 November 2004 14:08 > To: Struts Users Mailing List > Subject: Re: [OT] User Preference System Design > > > Hi, > > Thanks for the input. The Properties object is more >

RE: Installation Getting Started Question

2004-11-17 Thread Daniel Perry
va/servlets/jsp then just jump into the examples. Have a play with them and you'll quickly get a feel for how it all works. Daniel. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problems with Date validation

2004-11-18 Thread Daniel Hopper
return null; } } Good Hunting -daniel hopper Kinjal Shares wrote: Dear all, I've been trying to get Dates validation for my Struts project without any success. I'm using struts 1.2.4 with Validator 1.1.3 on tomcat 5.0.27. In my application, I'm having a hier of MappingActio

error params in html taglib

2004-11-23 Thread Daniel Perry
pecify that the error is for it, and not for a different element on the same form? Thanks, Daniel. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Ant question

2004-11-23 Thread Daniel Perry
No idea if ant can do this, but i tend to put a 0 byte 'ignoreme' file in the directory. This stops these problems happening with more than just ant! Daniel. > -Original Message- > From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] > Sent: 23 November 2004 18:31 >

Placing JSPs under WEB-INF using modules

2004-12-01 Thread Daniel Massie
I have a module called admin, and wish to locate JSPs in /WEB-INF/pages/admin. This however is relative to the default context rather than /admin. Is it possible to place JSPs under the WEB-INF directory when using modules? Thanks Daniel

RE: Placing JSPs under WEB-INF using modules

2004-12-01 Thread Daniel Perry
Yeah, it's no problem. Just use forwards like: Daniel. > -Original Message- > From: Daniel Massie [mailto:[EMAIL PROTECTED] > Sent: 01 December 2004 11:58 > To: [EMAIL PROTECTED] > Subject: Placing JSPs under WEB-INF using modules > > > I have a module cal

RE: Placing JSPs under WEB-INF using modules

2004-12-01 Thread Daniel Massie
what about for the path attribute of action mappings in the struts config files? Daniel -Original Message- From: Daniel Perry [mailto:[EMAIL PROTECTED] Sent: 01 December 2004 13:04 To: Struts Users Mailing List Subject: RE: Placing JSPs under WEB-INF using modules Yeah, it'

html:form with modules

2004-12-01 Thread Daniel Massie
cessed the full form action is the ${default context}/Login rather than ${default context}/${module}/Login. Any help much appreciated. Thanks Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Form action context is default rather than the module's context

2004-12-03 Thread Daniel Massie
fault context}/${module}/Login thus resulting in the form being posted to the Login action of the default module. The action mapping does not specify contextRelative=true in the forwards. Any help is much appreciated. Thanks D

RE: Form action context is default rather than the module's context

2004-12-03 Thread Daniel Massie
It actually looks as though the correct module is being detected when the request is processed, and forwarding to the correct jsp, but the module context is being lost when the JSP is processed, thus the wrong action in the form. Is there any reason for the context being lost? Daniel

RE: [OT]Threads and Servlets Question

2004-12-07 Thread Daniel Perry
pretty! Also, a malformed message that the smtp server rejects would be stuck in an infinite loop! So if you use threads, be careful! Daniel. ---BackgroundSender.java--- package org.apache.commons.mail; import javax.mail.MessagingException; /** * A class to send messages in the bac

RE: OJB && struts

2004-12-16 Thread Daniel Perry
r classes extend a BaseBO class (which only need have an primaty key "int id;" +getter/setter) you can make a single DAO which will handle CRUD for all classes which extend it. I tend to take this approach. Would make swapping to JDBC a pig - that would be a big switch statement and a L

RE: bean:write and apostrophes

2004-12-17 Thread Daniel Lipofsky
7;s Test"); %> <% session.setAttribute("y","The \"other\" test"); %> Works in IE and Firefox/Mozilla (and I assume other browsers too). - Dan > -Original Message- > From: Daniel Lipofsky > Sent: Thursday, January 22, 2004 5:22 PM >

RE: Generating valid HTML from tag

2004-12-14 Thread Daniel Perry
atall. There's no need to use it with javascript anymore. Daniel. > -Original Message- > From: William Ferguson [mailto:[EMAIL PROTECTED] > Sent: 14 December 2004 13:30 > To: Struts Users Mailing List > Cc: [EMAIL PROTECTED] > Subject: Re: Generating valid HTML from

RE: ??? property naming convention problem

2004-12-14 Thread Daniel Perry
; getECoupon / geteCoupon I think the assumption has been made that if youre going to go from getECoupon ->ECoupon that you must go from ECoupon->getECoupon and therefore eCoupon->geteCoupon However the spec doesnt say that this should be a reversible process, so why not eCoupo

RE: OJB && struts

2004-12-15 Thread Daniel Perry
, then create a service/plug-in that provides more complex multi-object transactions. Hope that gives you some ideas... Daniel. > -Original Message- > From: liooil [mailto:[EMAIL PROTECTED] > Sent: 15 December 2004 09:42 > To: [EMAIL PROTECTED] > Subject: OJB && st

RE: "dynamic" dropdown select list?

2004-12-16 Thread Daniel Perry
empty actionerror, and not continue. This causes it to get redisplayed with the correct stuff selected! Daniel. > -Original Message- > From: Riedling, Michael [mailto:[EMAIL PROTECTED] > Sent: 16 December 2004 15:19 > To: [EMAIL PROTECTED] > Subject: "dynamic" dropdown s

RE: Actionform 's property

2004-12-20 Thread Daniel Perry
ither: =((full.package.name.MyForm)request.getAttribute("formName")).getElmployeeLi st(); or =((full.package.name.MyForm)session.getAttribute("formName")).getElmployeeLi st(); Daniel. > -Original Message- > From: Zhang, Larry (L.) [mailto:[EMAIL PROTECTED] >

RE: [ot]Excluding BeanUtils from Log4J? How do I do this?

2004-12-21 Thread Daniel Lipofsky
You can also set "additivity" to false for the class or package, which prevents it from inheriting appenders. You will have to look up the syntax yourself, since I do not use the XML style. - Dan > -Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: Tuesday, Decemb

RE: bean:message and escaping

2004-12-21 Thread Daniel Lipofsky
Can you just escape it in your .properties file or whereever the message is defined? I think that would be best practice unless you need to only escape it some of the time. - Dan > -Original Message- > From: Edgar Poce [mailto:[EMAIL PROTECTED] > Sent: Saturday, December 18, 2004 2:42 PM

RE: How to get the bean value inside JSP

2004-12-28 Thread Daniel Lipofsky
You should probably use bean:define instead of bean:parameter. Even better learn JSTL and use c:set, c:if, and c:forEach to facilitate you. You will find JSTL has better versions of everything in the struts "logic" and "bean" taglibs. I don't think there is any readymade tags for grouping. But if

Validate only if existing

2004-12-28 Thread Daniel Lipofsky
I have a field I want to require only if the bean it exists inside exists (is not null). I cannot use validwhen because I am using struts 1.1. I tried to use requiredif like this field[0]

RE: message resources in db

2004-12-29 Thread Daniel Lipofsky
> -Original Message- > From: Jim Barrows [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 29, 2004 8:15 AM > To: Struts Users Mailing List > Subject: RE: message resources in db > > > -Original Message- > > From: Nathan Coast [mailto:[EMAIL PROTECTED] > > Sent: Wednesday,

Validation Post-Back help

2004-12-30 Thread Daniel Kies
Greetings. I am using the Validation Framework and I am having problems when the validator is finding an error. When the post-back kicks back to the input page, it is not finding the data that was previously found in the request. In order for the data to be available when kicked back to the call

Re: Validation Post-Back help

2004-12-30 Thread Daniel Kies
> the list archives for details. > > > > -----Original Message- > > From: Daniel Kies [mailto:[EMAIL PROTECTED] > > Sent: Thursday, December 30, 2004 9:55 AM > > To: user@struts.apache.org > > Subject: Validation Post-Back help > > > &g

RE: more message questions

2004-12-30 Thread Daniel Lipofsky
If you use Struts-EL you can use and use EL syntax for arg0, arg1, etc. The syntax in the .properties file is still '{0}', etc. But I think that is best for flexibility and robustness. Otherwise the property file has to assume a bean with a certain name will exist and name changes would have to

Re: Validation Post-Back help

2004-12-30 Thread Daniel Kies
hanks for any help. On Thu, 30 Dec 2004 10:54:12 -0700, Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "Daniel Kies" <[EMAIL PROTECTED]> > > Can you offer a decent way of > > searching through the archives? > > I like http://www.mail-archive.com. Put '

RE: setAttribute

2004-12-30 Thread Daniel Lipofsky
It is available for the duration of the HTTP request. That may be more than one page if you are forwarding (server-side) but if you are not it is more or less equivalent to a page. The 4 scopes are page, request, session, application so if you want to keep something for longer you probably want to

Re: Validation Post-Back help

2004-12-30 Thread Daniel Kies
something simple here to get the data back in the request. Thanks. On Thu, 30 Dec 2004 14:00:30 -0700, Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "Daniel Kies" <[EMAIL PROTECTED]> > > in JSP to show the list in a drop down: > > > > > >

Re: Validation Post-Back help

2005-01-02 Thread Daniel Kies
will happen when validator > is finding an error and it do dynamically. So That is suitable for > all the cases in the App. > > The logic I'm using is simple. It is just cover all the null fields > from previous form which is saved in session. > > Cliff > > --- I

RE: using bean:write to write out html

2005-01-03 Thread Daniel Lipofsky
Set filter=false in the bean:write tag. RTFM for more info. > -Original Message- > From: kjc [mailto:[EMAIL PROTECTED] > Sent: Monday, January 03, 2005 5:58 PM > > I'm trying to use the struts bean:write tag to render an html page. > The html that I would like to display is generated

RE: [OT] WinCVS problem (free beer!)

2005-01-06 Thread Daniel Perry
human' perspective on cvs. wincvs gives a gui interface to the command line tools, with lots of menus etc. As i had no real cvs knowledge, wincvs confused me! I found tortoise far far easier to use. Daniel. > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] &g

RE: [OT] WinCVS problem (free beer!)

2005-01-07 Thread Daniel Perry
coming/outgoing/conflicts/etc and the flexibility of browsing from viewcvs. It would also be nice if such a tool also supported subversion aswell as cvs. Or maybe i should just learn to use command line cvs/svn and i might find that to be better! Daniel. > -Original Message- > Fr

questions about ActionForm, ValidatorForm, etc.

2005-01-11 Thread Daniel Watrous
f these classes. Thanks in advance... Daniel

validator vs business logic

2005-01-18 Thread Daniel Watrous
? Do you see it providing some feature outside of the business model and specific to the Controller or View? Daniel

Re: Multiple select/update from the Listing page

2005-01-18 Thread Daniel Watrous
I think that this article will tell you what you want to know. http://javaboutique.internet.com/tutorials/strutsform/ Daniel - Original Message - From: "Yen" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, January 18, 2005 7:38 PM Subject: M

Problem deploying to WebSphere

2005-01-26 Thread Daniel Kalcevich
hat may be happening or things I can try? Thanks. Daniel This email and/or any files or attachments transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed, and may contain information that is privileged, confidential and exempt

Re: Suggestings for ISP Hosting that has Hibernate included in a Plan?

2005-02-07 Thread Daniel Watrous
Try kgbinternet.com DW - Original Message - From: "Sheehan, Andrew" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Monday, February 07, 2005 1:00 PM Subject: Suggestings for ISP Hosting that has Hibernate included in a Plan? Hi All, I'm looking for an ISP that supports Hibern

Trouble with DispatchAction and ValidatorActionForm

2005-02-07 Thread Daniel Watrous
Hello All, I keep getting a BLANK PAGE, with NO ERRORS. Any recommendations are appreciated... I am interested in building an Action that allows me to add a database record and edit existing records. Since both actions deal with the same table I want to use the DispatchAction and keep the add

Re: Session Scope Action form memeory usage??

2005-02-07 Thread Daniel Watrous
How big are your ActionForms and how many forms are there? DW - Original Message - From: "Jason Long" <[EMAIL PROTECTED]> To: Sent: Monday, February 07, 2005 1:17 PM Subject: Session Scope Action form memeory usage?? I am currently storing all of my action forms in session scope. My ap

Re: Trouble with DispatchAction and ValidatorActionForm

2005-02-07 Thread Daniel Watrous
by adding 'validate="false"' to my action mapping the page now loads. Is there some undocumented incompatibility when using DispatchAction and ValidatorActionForm together? DW - Original Message - From: "Daniel Watrous" <[EMAIL PROTECTED]> To: "

Re: Trouble with DispatchAction and ValidatorActionForm

2005-02-07 Thread Daniel Watrous
ers Mailing List" Sent: Monday, February 07, 2005 1:41 PM Subject: Re: Trouble with DispatchAction and ValidatorActionForm Most problems people experience are self-inflicted :-) - Original Message - From: "Daniel Watrous" <[EMAIL PROTECTED]> To: "Struts Users Maili

Re: Trouble with DispatchAction and ValidatorActionForm

2005-02-07 Thread Daniel Watrous
ebruary 07, 2005 2:19 PM Subject: Re: Trouble with DispatchAction and ValidatorActionForm Looks to me like your missing a "/" off your input parameter ---> input="manage_stake.jsp"> Niall P.S. don't forget to set validate back to "true". - Origina

Re: Trouble with DispatchAction and ValidatorActionForm

2005-02-08 Thread Daniel Watrous
hould tell you. Niall P.S. In your struts config, you have a "failure" forward for the mapping that doesn't look like a proper path - although the code you say your using doesn't show it being used... - Original Message - From: "Daniel Watrous" <[EMAIL PR

Re: Can't put scriptlet into onmouseover

2005-02-08 Thread Daniel Watrous
Neil, It seems that the approach to take would be to modify (or replace through inheritance) the link tag. This way you could eliminate the scriplet in your page and centralize your management of images too. I'm not sure that scriptlets are permitted inside jsp tags. The idea of the tag is th

RE: wizard form and checkboxes that won't turn off

2005-02-08 Thread Daniel Lipofsky
That's definitely one solution. The other is to have an onsubmit method on the form with javascript to iterate over all the input elements in the form, find unchecked check-boxes, and create a hidden input with the same name and a value of "false". - Dan > -Original Message- > From: James

2.2.1 - Validation Behavior

2010-08-19 Thread Daniel Stephenson
, type = "chain", params = {"namespace", "/sc", "actionName", "workerScheduleCsrCreatePopup"}) When the chain happens and hits the method the field errors are no longer on the request. I just rolled back to 2.1.8.1 and the field errors were populated again. Thanks in advance. Daniel

Question about Usage of Tasks

2010-09-03 Thread Daniel Rindt
Hello, the Tag prefixes all used URL's with the Application Name. This is in my case not wanted, so i am looking for a Solution to avoid the Prefixing. Thanks in Advance Daniel signature.asc Description: This is a digitally signed message part

Re: AW: Question about Usage of Tasks

2010-09-03 Thread Daniel Rindt
n the Production Machine is running Apache as Proxy which proxies to Tomcat and back. There i don't want display the Context Name. Another way can be to set a Application Context, but the Documentation told me, that can not defined in web.xml. You have another hint for me? Thank you Daniel sign

struts2 annotations

2010-09-05 Thread Daniel Rindt
Hello, i am using struts2-core 2.2.1 via maven2 in my project. My problem is, that i can't find the annotations. The installation of the package struts2-annotations 1.0.5 doesn't help. Where can i use the annotations again? Thanks for reading, understanding, answering ;-) Daniel sig

Re: struts2 annotations

2010-09-06 Thread Daniel Rindt
Am Montag, den 06.09.2010, 13:55 +0800 schrieb Hantsy Bai: > Use convention plugin[1] please, it is shipped with struts2 dist > package. > [1]https://cwiki.apache.org/confluence/display/WW/Convention%20Plugin Thanks for the reactions, but after using the convention plugin, i am not able to use the

form question

2010-09-07 Thread Daniel Rindt
jsp registrationSuccessfulThankYou /registration/registrationSuccessThankYou.jsp === 8< === TIA Daniel signature.asc Description: This is a digitally signed message part

Re: form question

2010-09-08 Thread Daniel Rindt
Am Mittwoch, den 08.09.2010, 09:29 +0200 schrieb Paweł Wielgus: > yes You can, Hi Paweł, thanks it works. It's more simple as i thought. Daniel signature.asc Description: This is a digitally signed message part

few questions

2010-09-15 Thread Daniel Rindt
s initially detected. Hopefully someone can give me a lil clue. TIA Daniel signature.asc Description: This is a digitally signed message part

problems with the locale

2010-09-16 Thread Daniel Rindt
the new new. Someone has a suggestion for me? TIA Daniel signature.asc Description: This is a digitally signed message part

Re: problems with the locale

2010-09-16 Thread Daniel Rindt
Am Donnerstag, den 16.09.2010, 12:06 +0200 schrieb Daniel Rindt: > the interceptor for i18n in struts should switch the locale after a > request with parameter ?request_locale=en. The property files are used > properly with the right translation, but when i ask in the action for >

Translation issue

2010-10-06 Thread Daniel Rindt
the dropdown field is created properly - nearly. The translation keys "user.gender.female" are not translated the field shows the translation key. I do STFW myself and i have found nothing about. But i can't be alone with that problem? TIA Daniel signature.asc Description: This is a digitally signed message part

Re: Translation issue

2010-10-06 Thread Daniel Rindt
Am Mittwoch, den 06.10.2010, 21:39 +0200 schrieb Maurizio Cucchiara: > gender.add(getText("user.gender.female")); > gender.add(getText("user.gender.male")); you ever tried that? I used it in the prepare method, and i don't know why but at lot of page request the getText is returning the wrong tran

JSON Plugin to Include Parent Action's Properties

2011-11-03 Thread Daniel Ruan
ed String name1; protected String name2; } public class MyAction2 extends MyAction1 { ...} Thanks! Daniel

Re: JSON Plugin to Include Parent Action's Properties

2011-11-03 Thread Daniel Ruan
quot;MyAction1.name1, MyAction2.name2". Cheers, Daniel

Wildcard method selection problem

2015-10-30 Thread Daniel Hernáez
et the example works when invoking “Person.action”: view.jsp Thank you very much for your help. Saludos / Regards, Daniel Hernáez International Technical Service Mobile: +34 699 140 596 Landline: +34 987 470 155 Sistemas de Dosificación DOSIPER, S.L. C/ Solana

RE: Wildcard method selection problem

2015-10-30 Thread Daniel Hernáez
does work if I enter http://localhost:8080/wildcard-method-selection/executePerson.action Also works with "editPerson.action" and "deletePerson.action" Saludos / Regards, Daniel Hernáez International Technical Service Mobile: +34 699 140 596 Landline: +34 987 470 155

RE: Some problems with Struts-mailreader

2015-10-30 Thread Daniel Hernáez
he.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter). None of the actions works now. Saludos / Regards, Daniel Hernáez International Technical Service Mobile: +34 699 140 596 Landline: +34 987 470 155 -Mensaje original- De: Lukasz Lenart [mailto:lukaszlen...@apache.org] Enviado el: viernes, 30

Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Daniel Guryca
000 ' http://localhost:8080/struts2-showcase-2.1.6/skill/edit.action' 13 req/s ab -c 10 -n 1000 ' http://localhost:8080/struts2-showcase-2.1.6/showcase.action' 19/ req/s Performance for other pages is also very very poor. What am I doing wrong ? Is Struts 2 really so horribly slow ? Thank you. regards Daniel

Re: Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Daniel Guryca
x ftl struts.objectFactory.spring.autoWire.alwaysRespect false struts.codebehind.pathPrefix / struts.multipart.saveDir struts.ui.theme xhtml struts.i18n.encoding UTF-8 struts.freemarker.beanwrapperCache false regards Daniel On Fri, Jun 26, 2009 at 5:35 PM, Daniel Guryca wrote: > > Hi, > > I have just

Re: Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Daniel Guryca
Anybody ? Daniel On Fri, Jun 26, 2009 at 5:54 PM, Daniel Guryca wrote: > I have found that devMode was set to true .. so I changed it to false. > > Now I'm getting something around 140 req/s which is much better but > still somewhat slow. > > What more can I set to make

Re: Freemarker Text Encoding Error

2009-08-27 Thread Daniel Dekany
t;> >>> >> expected. >> >>> >> >> >>> >> Hereąs the details >> >>> >> >> >>> >> <@s.property value="%{parameters.label}"/> prints the correct text: >> >>> >> >> >>> >> Hvornĺr (ca.) begyndte de nuvćrende rygsmerter eller bensmerter >> >>> >> (iskias)? >> >>> >> >> >>> >> But ${parameters.label?html} prints texts with Ś?ą substituted for >> >>> >> unsupported characters : >> >>> >> >> >>> >> Hvorn?r (ca.) begyndte de nuv?rende rygsmerter eller bensmerter >> >>> >> (iskias)? >> >>> >> >> >>> >> >> >>> >> I can see one solution is to change all the freemarker template files >> >>> >> and >> >>> >> replace ${} with <@s.property/>. >> >>> >> >> >>> >> But Iąm sure there has to be a simpler solution. >> >>> >> >> >>> >> Please, please help. As at the rate Iąm going I wonąt be needing a >> >>> haircut >> >>> >> for a while. >> >>> >> >> >>> >> Z. >> >>> >> >> >> > >> >> > >> >> > >> > >> > >> > > Get back to school stuff for them and cashback for you. Try Bing™ now. -- Best regards, Daniel Dekany - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: [FreeMarker-user] Freemarker Text Encoding Error

2009-08-27 Thread Daniel Dekany
gt; getting a lot of question marks in the text, but if I set the >> >> >>> >> server >> >> >>> local >> >> >>> >> to Danish, all works as expected. Obviously thatąs not a solution >> >> >>> &

Integrating a blogging software module with Struts 2

2009-09-17 Thread Daniel Ruan
(not as a separate instance). I'd appreciate any pointers you can provide! Thanks, Daniel

Re: Integrating a blogging software module with Struts 2

2009-09-17 Thread Daniel Ruan
Probably not ... but that's something I could fall back on. I prefer not to deploy it as a separate webapp. Thanks, Daniel On Thu, Sep 17, 2009 at 10:47 AM, Wes Wannemacher wrote: > I'm looking at doing something similar, but my approach will be > different... I am planni

OGNL - Multi-dimensional Array

2009-10-20 Thread Daniel Stephenson
.0.14. Thanks for your assistance. Daniel Stephenson dan.stephen...@gmail.com

Re: OGNL - Multi-dimensional Array

2009-10-20 Thread Daniel Stephenson
w to initialize this dynamically so that I get the proper-sized array! Thanks again for help from both you. Daniel Stephenson dan.stephen...@gmail.com 208.284.9637 - Cell 208.375.3888 - Office 208.498.2033 - Fax On Tue, Oct 20, 2009 at 12:42 PM, Musachy Barroso wrote: > what kind of problem are

ActionInvocation/ActionContext - NoSuchMethodError

2009-10-30 Thread Daniel Stephenson
Thanks for the help. Daniel Stephenson dan.stephen...@gmail.com 208.498.2033 - Fax

RE: bi-di messages and dir="RTL"?

2006-01-22 Thread Daniel Blumenthal
to render non-Latin fonts in a very teensy size. I don't know why. So it's a good idea to have code to make sure that rtlclass has a bigger fontsize than you would normally use. Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Validation problems

2006-01-26 Thread Daniel Kies
Hello. I am trying to do some standard validations, but I am failing. Any ideas why? I know the errors are getting raised as the request is forwarding back to the initial page making the request, but the error messages are not showing on the page. Any help is appreciated! Struts config DynaActi

Re: Validation problems

2006-01-26 Thread Daniel Kies
Either one would work, to be consistent with other struts tags I am using, html:text is probably better. This doesn't affect the validation issue. On 1/26/06, Thomas Garben <[EMAIL PROTECTED]> wrote: > > Dan, > > Should you be using" > instead of: > > &g

Re: Validation problems

2006-01-27 Thread Daniel Kies
TED]> wrote: > > On 1/26/06, Daniel Kies <[EMAIL PROTECTED]> wrote: > > Hello. I am trying to do some standard validations, but I am failing. > Any > > ideas why? I know the errors are getting raised as the request is > > forwarding back to the initial page making the

Valid When Question

2006-01-31 Thread Kalcevich, Daniel
the logic to be "its required when data is entered in either of the other two fields". Can someone give any advice into how I can declare this in my validator XML file? Thanks. Daniel

RE: Valid When Question

2006-01-31 Thread Kalcevich, Daniel
((phone2 == null) and (phone3 == null))) test ((*this* != null) or ((phone1 == null) and (phone3 == null))) test ((*this* != null) or ((phone1 == null) and (phone2 == null))) Niall - Original Message - From: "Kalcevich, Daniel&quo

Validator Question

2006-02-03 Thread Kalcevich, Daniel
when I enter the value '[EMAIL PROTECTED]' I get an error message saying the field is required. Any ideas? Thanks. Daniel

RE: Validator Question

2006-02-06 Thread Kalcevich, Daniel
So then how would you test a field that is not required to enter a value into, but if the user does, it must be a valid email address? That is what I am ultimately looking for. Is there a way to achieve this using the validators that exist already, or do I need to create my own? Daniel

RE: Validator Question

2006-02-06 Thread Kalcevich, Daniel
wrote: > > The email rule does that for you. If you do not enter an email address > the > rule is not applied. If you enter an email address the rule is applied to > make sure the email is valid. > > Cheers > Tom > > -Original Message- > From: Kalcevich,

validWhen - checkbox question

2006-02-06 Thread Kalcevich, Daniel
seen people saying to use null, or 'false', 'on', etc. and I am just trying to verify. Thanks. Daniel

Logic Tag Question

2006-02-10 Thread Kalcevich, Daniel
d "/index" and forwards to a Tiles Definition. My question is, what syntax can I use on the index.jsp page at the root of my site to forward to that URL? Thanks. daniel

After refreshing Drop Down value has default data

2006-02-13 Thread Daniel Kies
Hello...I have an app where you are on a page that has a drop down with select then some values. After you choose a value the form is submitted. Data is reloaded in the array list used to fill the form. WHen I get back to the page the drop down has the value in it that was previously selected. So

Re: After refreshing Drop Down value has default data

2006-02-13 Thread Daniel Kies
Yes that is the problem I am having. On 2/13/06, Tom Ansley <[EMAIL PROTECTED]> wrote: > > Once the form has been submitted can you not set that value on the form > back > to the default? > > -Original Message- > From: Daniel Kies [mailto:[EMAIL PROTECTED]

Re: After refreshing Drop Down value has default data

2006-02-13 Thread Daniel Kies
session form ? > > -- Original message ------ > From: Daniel Kies <[EMAIL PROTECTED]> > > Yes that is the problem I am having. > > > > On 2/13/06, Tom Ansley <[EMAIL PROTECTED]> wrote: > > > > > > Once the form has been submi

yet wnother localization question

2006-02-20 Thread Daniel Blumenthal
my own solution? Thanks! Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Modules Problem

2006-03-01 Thread Kalcevich, Daniel
:527) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow erWorkerThread.java:80) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:684) at java.lang.Thread.run(Unknown Source) Any Ideas? Daniel

Logic Tag Question

2006-03-03 Thread Kalcevich, Daniel
an someone point me in the right direction or let me know what is wrong with the above? Thanks. Daniel

RE: Logic Tag Question

2006-03-03 Thread Kalcevich, Daniel
lue to the "getValue()" from the "tz" variable. Daniel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 12:52 PM To: Struts Users Mailing List Subject: Re: Logic Tag Question If I am not mistaking you will use either

RE: Logic Tag Question

2006-03-03 Thread Kalcevich, Daniel
lto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:29 PM To: Struts Users Mailing List Subject: Re: Logic Tag Question On 3/3/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: > > But the problem is that the "value" that I want to compare in the > logic:equal tag is really

RE: Logic Tag Question

2006-03-06 Thread Kalcevich, Daniel
, March 04, 2006 6:01 PM To: user@struts.apache.org Subject: Re: Logic Tag Question Change "${tz}.value" to "${tz.value}". Kalcevich, Daniel wrote: > The is fine. I know that works. The problem is with the > logic:equal comparion. > &

Struts-EL

2006-03-06 Thread Kalcevich, Daniel
a.sun.com/jsp/jstl/core"; %>" to my JSP Page 3. Changed the Struts tag library to refer to the logic-el one. When I try to use the tag in my page, it is not evaluating the expression correctly. It just writes it out as is, with the ${expr} dollar sign and bracket around it. What am I missing? Daniel

RE: Struts-EL

2006-03-06 Thread Kalcevich, Daniel
Wendy, That was it. My taglib definition was wrong. But for reference purposes, I am using Tomcat 5.5.12 and whatever JSTL version came with Struts 1.2.8, which is 1.0 (I think?). Daniel -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Monday, March 06, 2006 9:09

RE: How To Use Existing Tags to Test and Write Out the Value of the Size of a Collection?

2006-03-06 Thread Kalcevich, Daniel
You can use the , , or tags. http://struts.apache.org//struts-doc-1.2.8/userGuide/struts-logic.html#g reaterThan -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Monday, March 06, 2006 11:06 AM To: user@struts.apache.org Subject: How To Use Existing Tags to Test a

<    1   2   3   4   5   6   7   >