RE: textfield with Date object

2010-03-31 Thread Wick, Dan
the users Locale may come from a Login object or the browser request (which Struts can retrieve) or from a cookie. On Tue, Mar 30, 2010 at 10:34 AM, Wick, Dan daniel.w...@donaldson.com wrote: Does anyone know how to change the format of dates coming in on a text input being backed

RE: textfield with Date object

2010-03-31 Thread Wick, Dan
That's neato. I can specify the locale in the link to this special page/action thereby get my date to parse! Thanks! Dan -Original Message- From: Rene Gielen [mailto:gie...@it-neering.net] Sent: Wednesday, March 31, 2010 6:21 AM To: Struts Users Mailing List Subject: Re

textfield with Date object

2010-03-30 Thread Wick, Dan
suppose I could take in a string parse it for a date myself, but I'm wondering if there's a Right way to do it. --Dan -- Snip of jsp page -- Date Of Birth* s:textfield name=dob required=true tabindex=4 size=30 cssClass=staticBody cssErrorClass=formError/ -- End snip of jsp page -- -- Snip

Re: Struts 1.2.x and File I/O

2009-12-23 Thread Dan Vargas
Ok, that's what I had figured, thanks. 2009/12/23 Paweł Wielgus poulw...@gmail.com Hi Dan, struts see only files on server, so if You want to do something with a local file You have to upload it to the server. Also it's not struts related, all HTTP based solutions behave that way. Best

Re: Simple two button form - Struts 1.2.x

2009-12-10 Thread Dan Vargas
Awesome, thanks. I've gotten it to do what I need. On Thu, Dec 10, 2009 at 7:12 AM, Mark Shifman mark.shif...@yale.edu wrote: Use EventDispatchAction or just use javascript to go to the action you want when the button is pushed. mas davargas123 wrote: I am putting in page that loads at the

Re: Struts HTML taglib vs. Standard HTML tags

2009-12-08 Thread Dan Vargas
/taglib /jsp-config On Mon, Dec 7, 2009 at 9:39 AM, Dan Vargas davargas...@gmail.com wrote: Dec 7, 2009 8:14:39 AM com.thomson.west.pubrec.optout.ui.servlet.FindRequestResetAction execute FINE: enter Dec 7, 2009 8:14:44 AM com.thomson.west.pubrec.optout.ui.servlet.SSNLookupResetAction

Re: Struts HTML taglib vs. Standard HTML tags

2009-12-08 Thread Dan Vargas
to do with why my ActionForm never gets data from the jsp page. On Tue, Dec 8, 2009 at 10:22 AM, Dan Vargas davargas...@gmail.com wrote: This is where the uris are defined as such, I've ruled out that as the problem. The uris work on every other page on the same project as well, and my page

Re: Struts HTML taglib vs. Standard HTML tags

2009-12-07 Thread Dan Vargas
or epwd parts, other than that they are erroneous. On Sun, Dec 6, 2009 at 10:38 PM, Dan Vargas davargas...@gmail.com wrote: One of the most confusing things about it is that I can insert just one html:text tag, for instance, into the fully functional(as far as being rendered correctly) page

Re: Struts HTML taglib vs. Standard HTML tags

2009-12-06 Thread Dan Vargas
One of the most confusing things about it is that I can insert just one html:text tag, for instance, into the fully functional(as far as being rendered correctly) page, and then it just fails to render any of my jsp page, not just the text area defined by the struts tag. On Sun, Dec 6, 2009 at

Re: Struts HTML taglib vs. Standard HTML tags

2009-12-04 Thread Dan Vargas
It told me it wasn't sent to the mailing list, I wasn't aware. My apologies. On Fri, Dec 4, 2009 at 3:30 PM, Brian Thompson elephant...@gmail.comwrote: Why the triple-post? On Fri, Dec 4, 2009 at 2:07 PM, davargas123 davargas...@gmail.com wrote: When I change the standard HTML tags of my

Unit Testing in Struts 2.1.6

2009-10-13 Thread Dan R. Olsen III
I have gone to the page found at http://struts.apache.org/2.1.6/docs/how-can-we-test-actions.html. However, the code on that page is not possible with Struts 2.1.6 although it is found in the docs for Struts 2.1.6. How can we get this page updated to show how to test actions in Struts 2.1.6 so

Re: Struts2 and TestNG

2009-10-07 Thread Dan R. Olsen III
The convention plugin is in the classpath for the tests. On 10/6/2009 3:57 PM, Musachy Barroso wrote: also, make sure the convention plugin is in the classpath for the tests. musachy On Tue, Oct 6, 2009 at 2:22 PM, Alex Simanaleksandr.si...@gmail.com wrote: dolsen-2 wrote: Does

Re: Struts2 and TestNG

2009-10-06 Thread Dan R. Olsen III
Does this method work if I declare my actions with annotations instead of declaring them in struts.xml? It looks like from the errors I get that it is trying to read the action definitions from the struts.xml file. On 10/5/2009 10:00 PM, Alex Siman wrote: Look here:

Re: Access Denied error with Struts 2.1.8

2009-10-05 Thread Dan R. Olsen III
perms on Jetty though (jetty.policy?). On Thu, Oct 1, 2009 at 3:04 PM, Dan R. Olsen IIIdanec...@gmail.com wrote: When I am trying to run my Struts application under 2.1.8 I am getting an Access Denied error. I have checked the file permissions on the struts-core-2.1.8.jar file

Re: Access Denied error with Struts 2.1.8

2009-10-05 Thread Dan R. Olsen III
codebase perms on Jetty though (jetty.policy?). On Thu, Oct 1, 2009 at 3:04 PM, Dan R. Olsen IIIdanec...@gmail.com wrote: When I am trying to run my Struts application under 2.1.8 I am getting an Access Denied error. I have checked the file permissions on the struts-core-2.1.8.jar file

Re: Access Denied error with Struts 2.1.8

2009-10-05 Thread Dan R. Olsen III
issue to me from the access denied message. Like your app server has a grant codebase set for the old struts jar but not the new one. I'm not sure how to set the grant codebase perms on Jetty though (jetty.policy?). On Thu, Oct 1, 2009 at 3:04 PM, Dan R. Olsen IIIdanec...@gmail.comwrote

Struts2 and TestNG

2009-10-05 Thread Dan R. Olsen III
I am looking for some good ways of using TestNG to test my actions. I know I can test them like any other POJO but I would like it to include all the interceptors if possible. Can anyone give me any good resources on how to do this. I am using Struts 2.1.6 and have the TestNG plugin. I am also

Re: Access Denied error with Struts 2.1.8

2009-10-04 Thread Dan R. Olsen III
I am on a Windows box and the permissions are the same as the permissions version 2.1.6 which is working. When I click the MD5 link I get a page not found so I can't check the checksum. On 10/3/2009 9:23 AM, Dale Newfield wrote: Dan R. Olsen III wrote: I moved the project to a path

Re: Access Denied error with Struts 2.1.8

2009-10-02 Thread Dan R. Olsen III
it, file a bug, it should be reproducible. -Wes On Thu, Oct 1, 2009 at 6:38 PM, Dan R. Olsen IIIdanec...@gmail.com wrote: I don't set that path. It seems to be building that path in one of the functions listed in the stack trace. Like I said, if I switch out the jar files to the Struts 2.1.6 jars

Setting a checkbox

2009-10-02 Thread Dan R. Olsen III
I have the following tag: s:checkbox id=termsofservice name=isChecked fieldValue =true / isChecked is a boolean variable that is set in the action. When I put a variable in the name field for a textfield tag it will bring up the value of the variable in the text box. I want the checkbox above

Access Denied error with Struts 2.1.8

2009-10-01 Thread Dan R. Olsen III
When I am trying to run my Struts application under 2.1.8 I am getting an Access Denied error. I have checked the file permissions on the struts-core-2.1.8.jar file and it is the same as my 2.1.6 file. Under 2.1.6 it works just fine. Any ideas? The error and stack trace I get are below.

Re: Access Denied error with Struts 2.1.8

2009-10-01 Thread Dan R. Olsen III
I don't set that path. It seems to be building that path in one of the functions listed in the stack trace. Like I said, if I switch out the jar files to the Struts 2.1.6 jars it works just fine. On 10/1/2009 4:34 PM, Dale Newfield wrote: Dan R. Olsen III wrote: jar:file:\C:\Documents

Struts 2 Velocity Text tag

2009-08-21 Thread Dan Slack
that it wasn't working because there is no setter for values, and the values property itself isn't publicly accessible. Has anybody found a way of pulling this off? I'm looking at possibly writing my own stext user directive to handle this, as this is a pretty common use case. Thanks, Dan Slack

Struts 2.1.6 TLD file

2009-07-30 Thread Dan Slack
actually, at runtime, open up the Struts 2 Jar, and modify the tld to fix it when deploying to that server. Thanks Dan Slack

RE: Struts 2.1.6 TLD file

2009-07-30 Thread Dan Slack
Ok, so, it's obviously an issue with my servers validation of tlibversion. I'll guess I'll have to stick with my hack until a new version of the server is tested. Thanks, Dan -Original Message- From: Musachy Barroso [mailto:musa...@gmail.com] Sent: Thursday, July 30, 2009 3:12 PM

Changing Result Class at Runtime

2009-06-25 Thread Dan Slack
, but, then realized that this wouldn't work as my actual Struts mappings all extend from struts-default. Does anybody know how to do this? Thanks, Dan Slack

RE: Prevent Word formatting

2009-06-25 Thread Dan Slack
Rich Text Editor. I'd imagine there are other clean pastes out there for non-YUI users.. If you want to disable pasting entirely, you can do some javascript keycode checking for ctrl-v (although this is NOT fullproof). Dan Slack -Original Message- From: Jim Collings [mailto:jlistn

Re: JAAS not working

2009-05-12 Thread Dan C.
if one of the Struts developers had a more elegant workaround suggestion. For example would it be feasible to port FilterDispatcher to a servlet? Dan C. wrote: Hi, I have an application we migrated to struts 2. We originally had oracle OAM for authentication but now we are going back to JAAS

JAAS not working

2009-05-11 Thread Dan C.
help would be greatly appreciated.. Dan One other thing. I know the j_security_check work because if I got directly to my login action and login the app authenticates correctly.. The only problem is the redirect managed by JAAS to the login action page. Here is the web.xml security-constraint

Sitemesh 2.4 and Struts 2.0.14

2009-03-18 Thread Dan Slack
that the PageFilter is calling applyDecorators). Is anybody aware of any efforts to update the Sitemesh plugin for 2.4.x? Thanks, Dan Slack Langui Systems Inc.

disadvantage by not using the default execute() method for ActionClass?

2009-03-10 Thread Wick, Dan
We're trying to decide as a team what conventions we are going to follow. Does anyone know if there's anything we lose by not calling the default execute() method in our actionsopting for specifying another class name in the struts config xml? For example, executeView() and executeDo()

RE: trouble deploying struts2 app to tomcat 1.5.0.05 *FIXED*

2009-02-09 Thread Wick, Dan
/work Not sure if it was the one's I took out, or the new 'workDir' attribute that I added that fixed it...but it does deploy now! --Dan -Original Message- From: Dave Newton [mailto:newton.d...@yahoo.com] Sent: Saturday, February 07, 2009 6:44 PM To: Struts Users Mailing List Subject

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-06 Thread Wick, Dan
exactly the same stack I get with my app. Any suggestions on where to go from here! --Dan - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-05 Thread Wick, Dan
Are you actually using Pell? I didn't see the library there, and it could cause a startup issue (can't check at the moment). I tried removing it, just to see what happens. Still get the stack below. Note that it is in my classpath locally runs fine there. --Dan SEVERE: Exception starting

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-05 Thread Wick, Dan
somewhere? Tried pushing the war to an urelated server with no other apps running on it. Same error. --Dan - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-05 Thread Wick, Dan
runs on the platform. We have one other struts2 (same struts version) app running on the same type of server, same o/s version. -Dan - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-05 Thread Wick, Dan
by the user that the tomcat is running under? Also check the tomcat logs for errors. Tomcat logs are just showing the things that are working...don't see errors. Perplexed! --Dan - To unsubscribe, e-mail: user-unsubscr

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-04 Thread Wick, Dan
.jar --Dan -Original Message- From: Musachy Barroso [mailto:musa...@gmail.com] Sent: Tuesday, February 03, 2009 4:35 PM To: Struts Users Mailing List Subject: Re: trouble deploying struts2 app to tomcat 1.5.0.05 The first time you listed the jars, the struts and xwork jars were

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-04 Thread Wick, Dan
naming-resources.jar ojdbc14.jar servlet-api.jar Any ideas where else to look? --Dan musachy On Wed, Feb 4, 2009 at 9:41 AM, Wick, Dan dan.w...@donaldson.com wrote: $ unzip -l your_war_name.war | grep lib and post the output. Sorry about that. I've been pulling out jars to see

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-03 Thread Wick, Dan
Is there a way to get a good log of what's actually happening? Can't seem to get a stack that points at a specific problem. I've been staring at this so long that I don't know where to look next! --Dan Feb 3, 2009 2:28:21 PM org.apache.catalina.core.StandardContext filterStart SEVERE

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-02 Thread Wick, Dan
deploying struts2 app to tomcat 1.5.0.05 From: lukasz.len...@googlemail.com To: user@struts.apache.org 2009/1/30 Wick, Dan dan.w...@donaldson.com: I've developed an application using struts2 (2.0.12 to be exact). It works on my local windows box, on Tomcat via Eclipse

trouble deploying struts2 app to tomcat 1.5.0.05

2009-01-30 Thread Wick, Dan
! Dan - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

RE: trouble deploying struts2 app to tomcat 1.5.0.05

2009-01-30 Thread Wick, Dan
The jars that end up in the war file on the server match exactly what's in my build path jars in eclipse, less servlet.jar jre. I use ant to build it, so there are excludes for the jre, servlet.jar, etc. --Dan -Original Message- From: Lukasz Lenart [mailto:lukasz.len

Design Question

2009-01-06 Thread Dan Daly
that might be shipped with any single installation would be around 30-40.  Does this sound like a reasonable or am I pushing the envelope on the use of plug-ins? Thanks, dan

Re: Manage Sessions in Struts

2008-12-01 Thread Dan
Paweł Wielgus escribió: Hi all, by saying non web based i ment swing or swt. As for Spring WebFlow, Paul could You elaborate more about it, i was almost sure that it's impossible . Lets take my standard behavior, i open my page with default tab, then i click middle button (wheel) on a link and

Re: Manage Sessions in Struts

2008-11-30 Thread Dan
[EMAIL PROTECTED] escribió: What? Are there solutions that are not web-based? :) On Sun, Nov 30, 2008 at 6:11 AM, Paweł Wielgus [EMAIL PROTECTED] wrote: Hi Dani, the only solution i can imagine in this case is to invalidate session from first browser when the same user logs in with the

How to get last requested page?

2008-11-25 Thread Dan
I know this question is more related to java by itself more than to struts, but need some help :) I have to re-use a method in a class, and then depending on from which jsp page comes, forward to one jsp or another: Page1.jsp (globalForward to method.do) endpage1.jsp

Re: How to get last requested page?

2008-11-25 Thread Dan
Jim Kiley escribió: Dan, I would include some kind of parameter with the request that gives your application a clue as to what path it should follow. Then use the value of that parameter to determine which route to respond with. I think this is superior to just relying on the name of the JSP

@Result annotation not working

2008-10-14 Thread Dan C.
it was working ok). When I started the app server again, none of them worked. I backed everything out and started again and I can't get it to work at all.. appreciate any help. Thanks Dan -- View this message in context: http://www.nabble.com/%40Result-annotation-not-working-tp19976436p19976436

Re: Submit button with no form

2008-09-10 Thread Dan
Lukasz Lenart escribió: As Don said, implement small form, only with submit button and you wouldn't have to use JavaScript. Regards OK, I´ll try to do it Regards - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Dynamic radio buttons with bean

2008-09-10 Thread Dan
Hi, I need to display in a jsp a form with dynamic radio buttons, I mean: There are several items in my DB. One item is read (each item has one question and 4 possible answers). I need to display the question and the 4 answers as a radio option dynamically (with a bean). Then the users cheks

Re: Submit button with no form

2008-09-08 Thread Dan
Lukasz Lenart escribió: Hi, You can use JavaScript and onclick event: input type=button value=Go onclick=JavaScript: window.location='myaction.do?do=someMethod'/ Regards Hi, Is there any other option instead of using Javascript? I have googled but didnt find any answers. Thanks in

Re: Error global-Forwards

2008-07-20 Thread Dan
Lukasz Lenart escribió: navigator bar and the window title (where the name of the actual jsp page is displayed) appears the same name as in the nav bar: http://localhost:8080/gentaiw/mostrarusuario.do , (mostrarusuario means showuser) instead of mostrarUsuario.jsp This is correct

Re: Error global-Forwards

2008-07-20 Thread Dan
Lukasz Lenart escribió: Er..what is CamelHumps? No idea about it, sorry... :) You defined your path in config as /mostrarUsuario (CamelHumps - JavaClassNamingConvention) but you accessing it like below http://localhost:8080/gentaiw/mostrarusuario.do try this

global-exceptions-mappings help

2008-05-12 Thread Dan Crosta
I think I've followed the instructions at [1] closely, and ended up with this in my struts.xml: strutspackage name=mypackage extends=struts-default interceptorsinterceptor name=exception class=com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor/ interceptor-stack

Unable to connect to planetstruts.org

2007-01-25 Thread Dan M
Hi Anyone else having difficulty connecting to planetstruts.org? A few of the Struts2 tutorials link out to the site and I've been unable to connect for the past week. Anyone know why it's down and/or when it'll be back up? Cheers Dan

current framework choices

2006-08-28 Thread Dan Cancro
Hi group, I haven't done web app development in a while and was wondering whether the field of options for garden variety browser-UI, data-based web applications had narrowed any since last time. Here are the ones I knew of in 2003. If anyone knows a current survey of these, I'd love

RE: bean access in tile def?

2006-07-12 Thread Dan Langer
that variable in - but since it's just a configuration file (and hence isn't parsed/has no scope), it can't. Hopefully I'm wrong (both for your sake and mine), but that's the explanation I was given when I asked a similar question. Dan -Original Message- From: Justin Chin Sent: Wednesday, July 12

RE: bean access in tile def?

2006-07-12 Thread Dan Langer
' on Cedric's site (http://www2.lifl.fr/~dumoulin/tiles/), dated to May 2002. Anyone know what this is in reference to? Dan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tiles: Passing a bean to tiles in a definition file

2006-07-07 Thread Dan Langer
a reusable component that will often be used several times on one page. If I hardcode the bean name in the component (which I would have to do to get at it with c:out), then I won't be able to have different instances of the component reading from different beans. Thanks, Dan

RE: Tiles: Passing a bean to tiles in a definition file

2006-07-06 Thread Dan Langer
to the tile when, it's defined using inheritance in the XML definitions file (my plan was to extend the generic one for each of the various types of data I was going to display). Thanks for your help, Dan -Original Message- From: Antonio Petrelli How do you do this when you're using tile

RE: Tiles: Passing a bean to tiles in a definition file

2006-07-06 Thread Dan Langer
Perhaps 'bean' is too strong a word - they'd be lists of lists, with the idea that the table can be generated using several logic:iterate tags, to maximize reusability. The data itself would be packaged into this format in the controller, so that it could be used with this table. -Original

Tiles: Passing a bean to tiles in a definition file

2006-07-05 Thread Dan Langer
using tile definitions (centralized into one file)? This put name=headerInfo beanName=gridC/ isn't valid within a definition according to the DTD. Any ideas? Thanks, Dan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Data-sources using struts:Tomcat's or NOT?

2006-04-20 Thread Dan Jas
I saw a comment earlier that the Struts data-source is deprecated and should not be used. - Original Message - From: M.Liang Liu [EMAIL PROTECTED] To: user@struts.apache.org Sent: Thursday, April 20, 2006 9:45 PM Subject: Data-sources using struts:Tomcat's or NOT? I am a freshman

Re: Drawing of Struts web application

2006-04-01 Thread Dan Jas
Exadel Studio at http://exadel.com/web/portal/products/ExadelStudio is free and will read your Struts-Config.xml file and display a mapping. I don't know if you can print from it but it is a start. - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List

Re: Getting list of values from checkboxes

2006-03-30 Thread Dan Jas
);} public Map getMapNeedMembBadge (){return needMembBadge;} Then the action just retrieves the map by calling getMapNeedMembBadge () and iterates through it to get the values. Dan - Original Message - From: Gary Feidt [EMAIL PROTECTED] To: user@struts.apache.org

Re: Problem with character encoding.

2006-03-21 Thread Dan Jas
Are you using WSAD on Windows and Tomcat on Unix/Linux? - Original Message - From: Anjishnu Bandyopadhyay [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, March 21, 2006 5:51 AM Subject: Problem with character encoding. Hi all, I am

Re: Using saveToken and isTokenValid

2006-03-14 Thread Dan Jas
I would assume that you would see only the server response to your last click on submit, that the browser has thrown away the responses from the server for the first and second clicks on submit. Dan - Original Message - From: starki78 [EMAIL PROTECTED] To: user user

Re: [shale][clay] CSS style classes on substituted elements

2005-11-03 Thread Dan Turkenkopf
Beyond the drama of the demo, I would definitely like to see Clay work the way you suggest. If the CSS styles are picked up from the span tag, then I can maintain the separation between UI designer and developer. If the style needs to be specified in the clay-config.html, then I need to have my

Switching between http and https in struts-config

2005-06-13 Thread Dan Tenenbaum
Hi, I'm new to the list. I'm working on a webapp where some of the pages should be accessed through HTTPS and others through HTTP. For example, login and registration need to be secure, but once the registration is done and we go to the user home page, we can go back to the nonsecure site. All

ensuring valid forwards

2005-06-13 Thread Dan Tenenbaum
My codebase has a lot of lines like this in struts actions: return mapping.findForward(foo); If I make a typo and it turns out that foo is not a valid forward according to the struts config file, when I hit the action in the browser, I get a blank page. Not my designated error page. Is there

Re: ensuring valid forwards

2005-06-13 Thread Dan Tenenbaum
On 6/13/05, Frank W. Zammetti [EMAIL PROTECTED] wrote: But again, I'm not certain this type of problem will be caught because I'm not even sure an exception is thrown in such a case. If it isn't that strikes me as a bug. Anyone else know for sure? I don't think it does throw an exception.

Re: Any good struts tutorials online?

2004-11-25 Thread Dan Cancro
I'm working on this doc. It's kinda like a tutorial. http://www.geocities.com/topdowndan/docs/webapp Dan --- Donie Kelly [EMAIL PROTECTED] wrote: Hi all I've been given a half finished struts project to develop further and I havn't used struts before. Is there any good resources

RE: Application Development Procedure Doc (Again)

2004-11-13 Thread Dan Cancro
you down if you used it? Is adding authentication with JAAS, SecurityFilter, roles.. a separate step or do you do it by changing how you code some of the other files? Dan __ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com

Re: Application Development Procedure Doc (Again)

2004-11-12 Thread Dan Cancro
/ Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: Dan Cancro [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 12, 2004 12:44 PM Subject: Application Development Procedure Doc (Again) Hi Group, This is plea #2

Re: Application Development Procedure Doc (Again)

2004-11-12 Thread Dan Cancro
. Thanks. --- Adam Hardy [EMAIL PROTECTED] wrote: Dan, just realised how unhelpful that msg was. What are you actually asking for? Random suggestions or something specific? Adam On 11/12/2004 07:26 PM Adam Hardy wrote: No, I think it just wrapped on you. Put your anti-Microsoft tiger back

Re: Application Development Procedure Doc (Again)

2004-11-12 Thread Dan Cancro
in Mozilla for me. The blanks are iframes rather than text areas. Not all of the nodes have them. Looks like Dan is still writing his expert system on how to set up and run an open-source project. On 11/12/2004 06:56 PM James Mitchell wrote: umm...I'm confused. I clicked that link

Re: Application Development Procedure

2004-10-30 Thread Dan Cancro
, Dan __ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Application Development Procedure

2004-10-30 Thread Dan Cancro
Yes, I am only looking for detail at this high level. I think that a one or two page document with this course level of detail over the entire app development process would be pretty helpful for people like me who are getting started. I think there is plenty of documentation already to explain

Application Development Procedure

2004-10-27 Thread Dan
far: http://www.geocities.com/topdowndan/create_an_application.txt Thanks in advance for any help with this, Dan __ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail

RE: Application Development Procedure

2004-10-27 Thread Dan Cancro
LOL. Thanks, David. I think if the whole open source community was one company, we wouldn't even need a book. We'd probably just have a wizard. --- David G. Friedman [EMAIL PROTECTED] wrote: Dan, I skimmed over your steps outline and it looks like you should turn that into a book

inline conditional expression with JSTL EL

2004-09-29 Thread Dan Allen
c:choose tags for such a condition, but often times a simple either/or turns out to be much more verbose than its resulting effect on the page. Dan -- Open Source Advocacy http://www.mojavelinux.com - To unsubscribe, e-mail: [EMAIL

Re: inline conditional expression with JSTL EL

2004-09-29 Thread Dan Allen
YES!!! The missing link to JSTL has been added! I'm excited...now I guess I just need to migrate to JSP 2.0. Dan On Wed, 29 Sep 2004 15:59:30 -0400, David G. Friedman [EMAIL PROTECTED] wrote: Dan, If you are using a JSP 2.0 container, here is a snippet from a post I made in the last few

the real world is always dirtier

2004-09-13 Thread Dan Allen
are out, I suppose I could lean towards session beans. First I would like to challenge his point on sessions, and if that doesn't pan out, discuss if stashing this in sessionbeans is the right way to go. Dan -- Open Source Advocacy http://www.mojavelinux.com

Re: the real world is always dirtier

2004-09-13 Thread Dan Allen
poorly written even Perl looks better on a bad day. My hope is to change that because I believe that by understanding how to correct such problems, a great deal is learned about programming. Thanks again! Dan - To unsubscribe, e

Is there an installation automater yet

2004-09-10 Thread Dan
, J2EE, J2SE, Expresso, JDBC drivers, Tomcat, etc. Any chance of this existing? I'm thinking of how useful and cool the cygwin installer is. If not, can anyone suggest another open source architecture that might provide something like this? Thanks, Dan

where to go next (after submit)

2004-09-04 Thread Dan Allen
head against the moniter all afternoon, I'll take it. Dan -- Open Source Advocacy http://www.mojavelinux.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[general] managing common files

2004-09-03 Thread Dan Allen
on the money or is there a better way to handle such resources? Dan -- Open Source Advocacy http://www.mojavelinux.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

never, ever bury an exception!

2004-09-02 Thread Dan Allen
if there is no way you think that the code you wrote would lead to a StackOverflow (or some other accumulating problem), do it anyway. Point is, you are better safe then sorry. I am an idiot for leaving that exception in that state, but at least I learned my lesson. Dan -- Open Source Advocacy http

preventing direct access to action

2004-08-24 Thread Dan Allen
for the current user, not just trusted. In this case, the referer field is irrelevant. Dan -- Open Source Advocacy http://www.mojavelinux.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: input and output form

2004-08-21 Thread Dan Allen
on the elements from the form. I guess the short term solution would be to place the form in session to begin with, and then just update it with the new information from each submit, automatically carrying over the excess that remains the same each time. Dan

html:link as pseudo-form tag

2004-08-19 Thread Dan Allen
like this been discussed or considered? Dan -- Open Source Advocacy http://www.mojavelinux.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: configuration violating J2EE spec?

2004-08-19 Thread Dan Allen
underneath this /apps prefix, only now the equation Craig pointed out will be true. And yes, this is obviously a non-standard configuration since weblogic.xml is not a file from the J2EE spec, but at least it will be transparent to the J2EE apps. Dan

input and output form

2004-08-19 Thread Dan Allen
information. Which form to use? Perhaps Struts should have the concept of an input and an output form. Or is the solution just to split the action into two and then do an internal forward from one to the next in sequence. Dan -- Open Source Advocacy http://www.mojavelinux.com

configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
/modulename/) app server (generates http://hostname/modulename/somefile.jsp) client (requests http://hostname/modulename/somefile.jsp) webserver (throws 404 error) Dan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
Web server (ie apache) or application server (ie tomcat). Application server shouldn't be stripping off the context, and yes that would be a violation. Web server stripping off context... well if you tell it. Our webserver doesn't strip off context at all, because we tell it not to.

Re: configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
will win my case. I brought this to the attention of the list because it is important information (and so that when I move on to another job, hopefully the good readers of this list will have updated their configurations so that I don't have to deal with these bogus configurations again). Dan

Re: how to check if html:errors will display anything

2004-06-07 Thread Dan Tran
Barnett, take a look at html:errors tag source to see how it generates html, then you know what to do. -D - Original Message - From: Barnett, Brian W. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 07, 2004 6:05 PM Subject: how to check if html:errors will display anything

Re: struts and pluto

2004-05-24 Thread Dan Tran
checkout liferay portal, they are using struts to write portlet. Good luck -Dan - Original Message - From: Jing Chen [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL PROTECTED] Sent: Monday, May 24, 2004 1:59 PM Subject: struts and pluto Hi There, I have an existing

Re: Tomcat 3.3.1 and Servlet 2.2/JSP 1.1 spec compatibility

2004-05-19 Thread Dan Tarkenton
Geeta: I can't seem to locate v1.02 via google search. I couldn't find it at http://apache.mirrors.pair.com/jakarta/struts/struts-legacy/ either. Any idea where I can get a copy of the struts 1.02 binaries? Thanks, Dan Geeta Ramani wrote: Dan: Struts 1.1 requires at least Tomcat 4.0. You

  1   2   >