Re: Validation Question with Indexed Properties

2004-03-22 Thread Craig Tataryn
friendly *bump* On Sun, 21 Mar 2004 18:12:54 -0600 (CST), Craig Tataryn wrote: Hi, I have the following definition in my validation.xml file: formset form name=MarketAddressForm field property=provStateId

Validation Question with Indexed Properties

2004-03-21 Thread Craig Tataryn
Hi, I have the following definition in my validation.xml file: formset form name=MarketAddressForm field property=provStateId indexedListProperty=address depends=required

RE: Multibox and selected values

2004-03-15 Thread Craig Tataryn
I've done this in the past within an ActionForm like so: this.servlet.getServletContext() Craig. tataryn:craig/ On Mon, 15 Mar 2004 10:40:09 -0500, Saul Q Yuan wrote: I am not sure you can get the session directly in the form bean, however, you can get the current session in your action

RE: Multibox and selected values

2004-03-15 Thread Craig Tataryn
to the HttpSession object. From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Multibox and selected values Date: Mon, 15 Mar 2004 10:36:58 -0600 (CST) I've done this in the past within an ActionForm like so

RE: Multibox and selected values

2004-03-15 Thread Craig Tataryn
); } else { return forward; } } Craig. tataryn:craig/ On Mon, 15 Mar 2004 10:13:41 -0700, Wendy Smoak wrote: From: Craig Tataryn [mailto:[EMAIL PROTECTED] this.servlet.getServletContext().getAttribute() should give you access to beans in the user session

does not mean 0 [in my app] :)

2004-03-13 Thread Craig Tataryn
Hi there, is there a configuration setting for Struts which tells it to set a property on a form bean of type Integer (not int) to null instead of new Integer(0) when the corresponding value coming in from the user's form is an empty string? I had to create a plugin that had the following in

Re: does not mean 0 [in my app] :)

2004-03-13 Thread Craig Tataryn
with the html:text tag should still be String properties. Hubert --- Craig Tataryn [EMAIL PROTECTED] wrote: Hi there, is there a configuration setting for Struts which tells it to set a property on a form bean of type Integer (not int) to null instead of new Integer(0) when

RE: help me about indexed properties

2004-03-11 Thread Craig Tataryn
Hi Mike, the attributes for logic iterate are all explained here: http://jakarta.apache.org/struts/userGuide/struts-logic.html#iterate and http://jakarta.apache.org/struts/faqs/indexedprops.html I've put it in my own words for you below: For logic:iterate == name attribute: tag

RE: [OT]JSP Debugger

2004-03-10 Thread Craig Tataryn
I use the Sysdeo plugin http://www.sysdeo.com/eclipse/tomcatPlugin.html with eclipse and then simply let tomcat compile my JSPs. I set break points in the .java file corresponding to the jsp page I want to debug within the project name/work directory in Eclipse's Java perspective package

Re: map-backed action forms - form params not loaded ?

2004-03-10 Thread Craig Tataryn
Yeah, definitely show us what your jsp looks like for your property attribute. If you are doing it like Daniel, everything should be good. If you are doing something like this: html:text property=value(test1).someProperty/ then it won't work when you submit your form unless that HashMap you

RE: javascript delete function wih struts

2004-03-10 Thread Craig Tataryn
I think you meant to say: if (window.confirm(Are you sure you want to + target) == true) Craig tataryn:craig/ On Wed, 10 Mar 2004 14:20:27 -0500, [EMAIL PROTECTED] wrote: My JavaScript is rusty, but something along the lines of: function set(target) { if (Are you sure you

Re: Cannot Create Iterator

2004-03-10 Thread Craig Tataryn
Try this: logic:iterate id=map name=alpha property=values logic:iterate id=submap name=map property=value When you iterate a map, the elements are of type Map.Entry (http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.Entry.html) See:

Re: Can i do 2 submit at a time

2004-03-10 Thread Craig Tataryn
Hi Sougata, you can if you set the target attribute of the forms either programmaically or in the tag itself to a frame other than the current one. Something like: html:form ... target=form1FrameResults . . . /html:form html:form action=/myAction target=myActionResults . . . /html:form

Re: Problem with Map-backed ActionForm and Key value

2004-03-07 Thread Craig Tataryn
Heh, Brian you were having the same problem I was. I posted yesterday with subject: [RT Expr] for html:text property Craig M replied quoting the JSP spec (Third download button on page: http://www.jcp.org/aboutJava/communityprocess/final/jsr053/), to quote section JSP.2.13.1 Request Time

[RT Expr] for html:text property

2004-03-06 Thread Craig Tataryn
Hi, this might be a Tomcat vs. ServletExec thing, but I was trying the following under Tomcat and got an error message to the effect of Null property value for 'address()': html:form action=/TestIndexed logic:iterate name=TestIndexedForm property=regions id=region

Re: [RT Expr] for html:text property

2004-03-06 Thread Craig Tataryn
for the clarification. tataryn:craig/ == so our *namespaces* don't get mixed up ;) On Sat, 6 Mar 2004 21:42:43 -0800, Craig R. McClanahan wrote: Quoting Craig Tataryn [EMAIL PROTECTED]: Hi, this might be a Tomcat vs. ServletExec thing, but I was trying the following under Tomcat and got an error message

Re: [RT Expr] for html:text property

2004-03-06 Thread Craig Tataryn
for the clarification. tataryn:craig/ == so our *namespaces* don't get mixed up ;) On Sat, 6 Mar 2004 21:42:43 -0800, Craig R. McClanahan wrote: Quoting Craig Tataryn [EMAIL PROTECTED]: Hi, this might be a Tomcat vs. ServletExec thing, but I was trying the following under Tomcat and got an error message

Re: .NET: We are just like Struts... only better.

2003-12-28 Thread Craig Tataryn
It's kind of a catch .22, I use struts on projects that make money for me. If someone started taking my projects and replicating them for free, I would probably have a problem with it :) Although in this case, MS did not have a Struts to begin with. ASP.net is sweet, but only because the

RE: OT: Examples of HTML-based user interfaces?

2003-12-22 Thread Craig Tataryn
Well done Andrew, just to add one more thing; Buy this book: http://www.amazon.com/exec/obidos/tg/detail/-/0596000480/qid=1072106008//ref=sr_8_xs_ap_i0_xgl14/002-5160553-7080053?v=glances=booksn=507846 It is the most well used book on my shelf, and truely is the definitive guide. Craig W.

Re: OT: Examples of HTML-based user interfaces?

2003-12-19 Thread Craig Tataryn
If you understand javascript, DHTML and DOM, then it won't appear as Ugly as Brice suggests . Take a look at those webfx widgets, very nice clean code. Craig W. Tataryn From: ajay brar [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject:

Re: OT: Examples of HTML-based user interfaces?

2003-12-19 Thread Craig Tataryn
nice, IMHO ... especially when you start needing to support the ideosyncracies of IE v. Moz ... which still exist, unfortunately. IE's DOM support isn't as full-fledged as what Moz has, and IE supports certain proprietary things, still, that Moz does not. Craig Tataryn wrote: If you understand

RE: [Tiles] tiles controller not processing tiles request

2003-12-18 Thread Craig Tataryn
path=/Welcome type=org.apache.struts.actions.ForwardAction parameter=mainLayout.welcome/ I think I originally said I used ActionForward, not ForwardAction. Craig W. Tataryn From: Hibbs, David [EMAIL PROTECTED] To: 'Craig Tataryn' [EMAIL PROTECTED], [EMAIL PROTECTED] Subject

RE: URGENT - Help defending Struts

2003-12-18 Thread Craig Tataryn
Canadian Firearms Registry system. (https://secure.ecom.cfc-ccaf.gc.ca/eCFRSInternet/openLicenceEntry.do?language=English) It must be scalable because I waited until close to the deadline for registering my firearms and it was responsive (last year all non-restricted firearms in Canada (i.e.

RE: OT: Examples of HTML-based user interfaces?

2003-12-18 Thread Craig Tataryn
We implemented that very widget you describe in javascript and wrapped a taglib around it at my previous job. I don't have access to the code, but I'm sure I could whip up something similar to it. It was all client side w.r.t. when you clicked the add/remove/up/down arrows. If I remember

RE: [Tiles] tiles controller not processing tiles request

2003-12-15 Thread Craig Tataryn
=Welcome.do?dispatchAction=initialize/ /global-forwards . . . action-mappings action path=/Welcome type=com.mypackage.controller.WelcomeAction parameter=dispatchAction forward name=initialize path=mainLayout.welcome/ /action /action-mappings tataryn:craig From: Craig Tataryn [EMAIL

RE: [Tiles] tiles controller not processing tiles request

2003-12-14 Thread Craig Tataryn
*bump* :( Craig W. Tataryn From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: [Tiles] tiles controller not processing tiles request Date: Fri, 12 Dec 2003 13:14:18 -0600 Ok, downloaded the Struts code, and set

RE: AW: [OT] Best HTML book for Beginners

2003-12-13 Thread Craig Tataryn
/videos/htmlcd/ Oliver -Ursprüngliche Nachricht- Von: Craig Tataryn [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 12. Dezember 2003 22:33 An: [EMAIL PROTECTED] Betreff: [OT] Best HTML book for Beginners Bought my uncle a domain name for Christmas and I want to get him an HTML book

RE: [OT] Beer

2003-12-12 Thread Craig Tataryn
And the only thing good about that Marca Bavaria are the comercials :) Craig W. Tataryn From: Chappell, Simon P [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: [OT] Beer Date: Fri, 12 Dec 2003 09:26:11 -0600 I

[Tiles] tiles controller not processing tiles request

2003-12-12 Thread Craig Tataryn
Hey guys, I have the following in my struts-config.xml: global-forwards forward name=welcome path=mainLayout.welcome/ /global-forwards controller processorClass=org.apache.struts.tiles.TilesRequestProcessor/ plug-in className=org.apache.struts.tiles.TilesPlugin set-property

RE: [Tiles] tiles controller not processing tiles request

2003-12-12 Thread Craig Tataryn
Note: In the error message listed below replace aclpo with mywebapp Craig Craig W. Tataryn From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [Tiles] tiles controller not processing tiles request Date: Fri, 12 Dec 2003 11

RE: [Tiles] tiles controller not processing tiles request

2003-12-12 Thread Craig Tataryn
Ok, downloaded the Struts code, and set a breakpoint in TilesRequestProcessor.init(...). The breakpoint never catches when Tomcat starts or when I request a my welcome page, but when I shut down Tomcat it does! Anyone know why? Craig. Craig W. Tataryn From: Craig Tataryn [EMAIL PROTECTED

[OT] Best HTML book for Beginners

2003-12-12 Thread Craig Tataryn
Bought my uncle a domain name for Christmas and I want to get him an HTML book to compliment it. For the absolute beginner, is there a book you would recommend over all others? Thanks, Craig W. Tataryn P.S. reply to my tiles question :)

Re: Tiles and parameters...

2002-11-29 Thread Craig Tataryn
from some other source (session)? Perhaps ListUserAction is somehow priming the display:table tag... Craig. - Original Message - From: Van Riper, Mike [EMAIL PROTECTED] To: 'Craig Tataryn' [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, November 28, 2002 1:03 AM Subject: RE: Tiles

Re: Tiles and parameters...

2002-11-29 Thread Craig Tataryn
- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 27, 2002 9:59 AM To: [EMAIL PROTECTED] Subject: Re: Tiles and parameters... sighYou must be new to Tiles :) It doesn't seem to work. Try it for yourself, make yourself a controller called MyController who's

Re: Tiles and parameters...

2002-11-27 Thread Craig Tataryn
does not seem to preserve the request parameters from the original call for the Tiles which are being forwarded to, so you have to do it manually (which might make sense?). Craig. P.S. I have read the specs :) - Original Message - From: Van Riper, Mike [EMAIL PROTECTED] To: 'Craig Tataryn

Re: Tiles and parameters...

2002-11-26 Thread Craig Tataryn
Anyone have any suggestions? From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Tiles and parameters... Date: Sun, 24 Nov 2002 00:39:23 -0600 I am using a tiles for a project where I have the following scenario: a href

Re: Tiles and parameters...

2002-11-24 Thread Craig Tataryn
Well, I am doing forwards from within my Action class by returning an ActionForward object to one of my tiles defs (site.forecast). So for instance, in displayChartSummary.jsp, if I put a request.getParameter(fieldid) an error is raised stating: /form/displayChartSummary.jsp(16,75) Attribute

Tiles and parameters...

2002-11-23 Thread Craig Tataryn
I am using a tiles for a project where I have the following scenario: a href=forecast.do?fieldid=1Forecast for Field 1/a The action for forecast.do, simply does some data extraction and then returns a forward to a tiles def which displays this data. Here is what the existing tiles def looks

Re: Two Phase ActionClass

2002-09-09 Thread Craig Tataryn
No prob, glad to help! - Original Message - From: Cohan, Sean [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, September 09, 2002 9:11 AM Subject: RE: Two Phase ActionClass Craig, I greatly appreciate you taking the time to provide such a detailed

Re: Two Phase ActionClass

2002-09-09 Thread Craig Tataryn
on continue on the loginWarning.jsp page, I no longer have the username and password fields that are validated in the validate method of the loginForm. How should I make this available? Thanks. -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06

Re: Building confirm screens in Struts

2002-09-09 Thread Craig Tataryn
What name do you specify in the bean:write attributes to get at the form bean? I tried with the name of the Formbean in struts-config.xml but it didn't work (I am using a Dynaform if that makes a difference). Craig. - Original Message - From: Tim T. Young [EMAIL PROTECTED] To: Struts

Re: Select Options

2002-09-09 Thread Craig Tataryn
Hi Johnathan, I think you are getting confused with how it actually selects the value that the user intended. Think of it this way: html:select property=type html:options collection=someCollectionYouHaveSetInTheScope property=value labelProperty=label/ /html:select This means that when the

Re: Datasource Retrieval in 1.1 (Help needed)

2002-09-06 Thread Craig Tataryn
); And my datasource is retuned as null. Anyone know what's going on? Craig. From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Datasource Retrieval in 1.1 Date: Thu, 05 Sep 2002 14:09:35 -0500 Ok, read the DTD for struts

Re: [REQUEST API UPDATE] RES: Datasource Retrieval in 1.1 (Help needed)

2002-09-06 Thread Craig Tataryn
via: execute(..) { DataSource ds = this.getDataSource(request); } ... ... Julio Cesar Softsite Tecnologia Ltda http://www.softsite.com.br Fortaleza, CE, Brasil -Mensagem original- De: Craig Tataryn [mailto:[EMAIL PROTECTED]] Enviada em: sexta-feira, 6 de

Alternative Datsource Hot-potatoing...

2002-09-06 Thread Craig Tataryn
I was wondering if someone could give me a heads up on some alternative means for which to give my data access layer access to my datasource. I don't really like the idea of my controller grabbing the Datasource, passing it off to my business layer, who in turn passes it along to my data

Re: Alternative Datsource Hot-potatoing...

2002-09-06 Thread Craig Tataryn
Tataryn wrote: Date: Fri, 06 Sep 2002 12:41:26 -0500 From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Alternative Datsource Hot-potatoing... I was wondering if someone could give me a heads up on some

Re: Question about Action Forms and input para

2002-09-06 Thread Craig Tataryn
1) Look at the code snap from struts-config.xml below, what is the input use for? actionpath=/page2 type=john.sample.Page2FormAction scope=request name=logonForm input=/page2.jsp forward name=next path=/page1.jsp/ /action Usually

Re: Alternative Datsource Hot-potatoing...

2002-09-06 Thread Craig Tataryn
of a DataSource manager, with the functionality seen in Struts 1.1. The idea being you could register several different DataSources, and then have the business layer say I want this one, or just give me the default (null) one. -Ted Craig R. McClanahan wrote: On Fri, 6 Sep 2002, Craig Tataryn

Re: Alternative Datsource Hot-potatoing...

2002-09-06 Thread Craig Tataryn
to specifically pass requests. The more I work on this kind of thing, the more I appreciate EJB... something that I thought I'd never say. - Original Message - From: Craig Tataryn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 06, 2002 1:16 PM Subject: Re: Alternative

Re: Two Phase ActionClass

2002-09-06 Thread Craig Tataryn
Sean, not sure if I would recycle the login page to show the warning, instead I would have another page called loginWarning.jsp which showed them a message and then presented a Continue and Cancel button. The Continue button would send them back to the logon Action class and the Cancel button

Re: Alternative Datsource Hot-potatoing...

2002-09-06 Thread Craig Tataryn
Datsource Hot-potatoing... Date: Fri, 6 Sep 2002 19:32:17 -0700 (PDT) On Fri, 6 Sep 2002, Craig Tataryn wrote: Date: Fri, 06 Sep 2002 17:57:42 -0500 From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Alternative

Datasource Retrieval in 1.1

2002-09-05 Thread Craig Tataryn
The documentation still lists the old way of how to retrieve a datasource which has been setup in struts-config.xml using findDatasource(); The API says to use datasource stored in attributes. Can someone give an example of how I might do this from within my execute method? I want to get

Re: [OT] EasyStruts and location of the generated Action file (URGENT)

2002-09-05 Thread Craig Tataryn
I too use the Tomcat Easy Struts plugins for Eclipse. In fact I would say they go hand in hand. Typically this is what you do: Install the Tomcat plugin, go into Window-Preferences-Tomcat and tell it where your tomcat base directory (CATILINA_HOME if you will) then create a new Tomcat

Re: Datasource Retrieval in 1.1

2002-09-05 Thread Craig Tataryn
Ok, read the DTD for struts-config.xml and figured out that I would use the key attribute if I were to add another datasource. I would still like to know how to retrieve the datasource without using the deprecated findDatasource() method. Thanks, Craig. From: Craig Tataryn [EMAIL

RE: ActionForms

2002-09-05 Thread Craig Tataryn
Here is an example of how to use DynaActionForm: In struts-config.xml under form-beans tag: form-bean name=loginUserForm type=org.apache.struts.action.DynaActionForm dynamic=true form-property name=userName type=java.lang.String / form-property name=password type=java.lang.String /

Re: [OT] EasyStruts and location of the generated Action file (URGENT)

2002-09-05 Thread Craig Tataryn
I too use the Tomcat Easy Struts plugins for Eclipse. In fact I would say they go hand in hand. Typically this is what you do: Install the Tomcat plugin, go into Window-Preferences-Tomcat and tell it where your tomcat base directory (CATILINA_HOME if you will) then create a new Tomcat

Re: Help me shake the cobwebs out... (also http://www.computer-programmer.org/articles/struts/ is back up)

2002-08-31 Thread Craig Tataryn
. Worked out pretty well - gives me the ability to have connection pooling for all my Actions using the CRM proprietary Data Access APIs. -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 2:02 PM To: Struts Users Mailing List Subject: Re: Help me

Re: Help me shake the cobwebs out...

2002-08-30 Thread Craig Tataryn
stein:ben Anyone? Anyone? Anyone? /stein:ben From: Craig Tataryn [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Help me shake the cobwebs out... Date: Thu, 29 Aug 2002 17:52:33 -0500 Alrighty, really have been out of the loop for the last year w.r.t

Re: Help me shake the cobwebs out...

2002-08-30 Thread Craig Tataryn
only if you use the html:form tag. So, since you are simply refreshing the page it worked. Did I miss something? Sri -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 10:30 AM To: [EMAIL PROTECTED] Subject: Re: Help me shake the cobwebs out

Re: Help me shake the cobwebs out... (also http://www.computer-programmer.org/articles/struts/ is back up)

2002-08-30 Thread Craig Tataryn
-Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 10:30 AM To: [EMAIL PROTECTED] Subject: Re: Help me shake the cobwebs out... stein:ben Anyone? Anyone? Anyone? /stein:ben From: Craig Tataryn [EMAIL PROTECTED] Reply

Re: Help me shake the cobwebs out... (also http://www.computer-programmer.org/articles/struts/ is back up)

2002-08-30 Thread Craig Tataryn
-Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 1:12 PM To: Struts Users Mailing List Subject: Re: Help me shake the cobwebs out... (also http://www.computer-programmer.org/articles/struts/ is back up) Thank you for your answer

Re: newbie question

2002-08-30 Thread Craig Tataryn
Hi Anand, you will not be able to run a Struts application directly under Apache web server. You need either do one of two things: 1) Dump Apache web server all together, but Apache is good for serving static pages so you may want to take option two: 2) Have Apache running along side of

Help me shake the cobwebs out...

2002-08-29 Thread Craig Tataryn
Alrighty, really have been out of the loop for the last year w.r.t Struts, last time I used it was pre-1.0. However, I will be using it on a project shortly and I have been brushing up. Can you help me with this query? I have set a simple demo where I have made a loginUser Action, who's

Action object doesn't get attributes...

2002-07-12 Thread Craig Tataryn
Here is a question from a collegue of mine (see below). Basically last year when they started using Struts on one of their web applications they could use request.getAttributes from their Action object and everything worked fine. However, now it seems that they need to use an ActionForm

Re: Action object doesn't get attributes...

2002-07-12 Thread Craig Tataryn
, 12 Jul 2002, Craig Tataryn wrote: Date: Fri, 12 Jul 2002 16:28:52 -0500 From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Action object doesn't get attributes... Here is a question from a collegue of mine (see

Computer-programmer.org tutorial...

2002-04-19 Thread Craig Tataryn
Fear not! I had to move over the weekend and thus the webserver that held the computer-programmer struts tutorial is down. I'll bring her back up sometime today and send out an email. Thanks, tataryn:craig status=tired of moving/ Craig W. Tataryn Programmer/Analyst Compuware

Re: Computer-programmer.org tutorial...

2002-04-19 Thread Craig Tataryn
/ Take care, Craig From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Computer-programmer.org tutorial... Date: Fri, 19 Apr 2002 09:29:43 -0500 Fear not! I had to move over the weekend and thus the webserver that held

Re: Computer-programmer.org tutorial...

2002-04-19 Thread Craig Tataryn
P.P.S. The server may go up/down at some point today as I get it all setup. Craig. From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Computer-programmer.org tutorial... Date: Fri, 19 Apr 2002 09:47:20 -0500 Alright

RE: Best Practice for parsing an XML file for application confi gurationparameters?

2002-03-07 Thread Craig Tataryn
You can put all your properties in one file as well, lets call that file config.properties 2. xml handle the structure data much better then properties file data structure might be nice for communications between computers but for users? e.g. RepositoryRoot=d:\ RepositoryAssets=assets

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Craig Tataryn
You can save your petty sarcasm for usenet. This group is about helping people, not belittling them. Craig. From: Galbreath, Mark [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Newbie Struts and Jbuilder6

Re: Digester Question

2002-03-05 Thread Craig Tataryn
Anyone? /tataryn:craig From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Digester Question Date: Mon, 04 Mar 2002 14:19:07 -0600 I realize that the digester is now part of commons, but I figure there is probably a lot

Digester Question

2002-03-04 Thread Craig Tataryn
I realize that the digester is now part of commons, but I figure there is probably a lot of expertise here since it grew up in Struts. I was wondering if someone could help me figure out the easiest way to do this: I have an xml document, that holds form data, I would like to use the

Off topic: My images are garbled again...

2002-02-04 Thread Craig Tataryn
http://www.computer-programmer.org/articles/struts/ppframe.htm I can't quite figure this one out. I even restarted Apache. Anyone else ever see this type of problem? Craig. Craig W. Tataryn Programmer/Analyst Compuware _ Send

Re: Struts and Servlet Exec

2002-02-01 Thread Craig Tataryn
from the local host instead of an external site. Similarly add the local URL with the correct dtd to your web.xml file also. - Hope this helps. - Niranjan Craig Tataryn wrote: Got this out of the ServletExec log, could this be the culprit? [Thu Jan 31 14:29:45 EST 2002] resolveEntity

Computer-programmer.org tutorial...

2002-02-01 Thread Craig Tataryn
Well, hopefully I've exercised the demons out of my webserver. Let me know if you see any anomolies w.r.t. the online presentation (some of the images were getting garbled). http://www.computer-programmer.org/articles/struts/ If anyone has any webspace they would like to donate, I would love

RE: Computer-programmer.org tutorial...

2002-02-01 Thread Craig Tataryn
Interesting, didn't realize they were hosted elsewhere. Mark was kind enough to offer some webspace to me to host some of my files, however it looks as though Ted has taken the initiative. I must have missed the original post! Ted, is it ok to link to your site off of mine, or should I keep

Opentools add-in for JBuilder

2002-02-01 Thread Craig Tataryn
I keep getting a Catastrophic Failure from the borland site when I try to download the opentools add-in for struts. Anyone have a copy I can download? Craig. Craig W. Tataryn Programmer/Analyst Compuware _ Join the world’s

Re: Opentools add-in for JBuilder

2002-02-01 Thread Craig Tataryn
Date: Fri, 1 Feb 2002 12:39:54 -0800 (PST) Not sure which one you're referring to, but if you're talking about the Struts Console open tool you can get it from http://www.jamesholmes.com/struts/ Enjoy, -james [EMAIL PROTECTED] --- Craig Tataryn [EMAIL PROTECTED] wrote: I keep getting

Re: Opentools add-in for JBuilder

2002-02-01 Thread Craig Tataryn
Sorry, yes, nostruts.jar and webinfextension.jar Craig. From: Cameron Ingram [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Opentools add-in for JBuilder Date: Fri, 01 Feb 2002 15:40:08 -0500 Which one there are a couple... do you

Re: Computer-programmer.org tutorial...

2002-02-01 Thread Craig Tataryn
] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Computer-programmer.org tutorial... Date: Fri, 01 Feb 2002 15:44:12 -0500 Whatever you prefer, Craig. You asked about offloading the narration files, so that's what I did. Craig

Struts and Servlet Exec

2002-01-31 Thread Craig Tataryn
Hi there. Anyone using Struts with ServletExec? I guess the question would be, does it work just like Tomcat? Deploy struts-blank to webapps and start hacking (I would probably have to go into servletexec admin and register the struts app, but other than that, anything else)? Thanks,

Re: Struts and Servlet Exec

2002-01-31 Thread Craig Tataryn
system identifier Thanks, Craig. From: Craig Tataryn [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Struts and Servlet Exec Date: Thu, 31 Jan 2002 13:48:39 -0600 Tried deploying struts-example to ServletExec. Main page comes up fine

RE: What happens when our session expires?

2002-01-28 Thread Craig Tataryn
login screen once their session is invalidated. Jon. -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: 28 January 2002 07:19 To: [EMAIL PROTECTED] Subject: RE: What happens when our session expires? Thanks! Would there be a way we could manually end a session (i.e

RE: What happens when our session expires?

2002-01-28 Thread Craig Tataryn
... hope this helps Alexander -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 8:19 AM To: [EMAIL PROTECTED] Subject: RE: What happens when our session expires? Thanks! Would there be a way we could manually end a session (i.e. at logoff

RE: What happens when our session expires?

2002-01-28 Thread Craig Tataryn
' [EMAIL PROTECTED] Subject: RE: What happens when our session expires? Date: Mon, 28 Jan 2002 09:33:18 -0500 Store the data in a database on session timeout; restore it when the user comes back (requires a login or a persistent cookie). Mark -Original Message- From: Craig Tataryn [mailto

RE: What happens when our session expires?

2002-01-28 Thread Craig Tataryn
. This is how many persistent shopping cart apps work (e.g., see the JavaOne shopping cart at java.sun.com - it persists across sessions). Mark -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 10:14 AM To: [EMAIL PROTECTED] Subject: RE: What

What happens when our session expires?

2002-01-27 Thread Craig Tataryn
Hi there, you probably have heard this question a million times before, but I couldn't really find anything in the archive which answered it. So here it goes: We have an application for which we would like to use struts. This aplication allows users to enter performance evaluation

RE: What happens when our session expires?

2002-01-27 Thread Craig Tataryn
to set the timeout to -1, which means the session will never expire. -Original Message- From: Craig Tataryn Sent: Sun 1/27/2002 10:37 PM To: [EMAIL PROTECTED] Cc: Subject: What happens when our session expires? Hi there, you probably have

Re: Things that use Struts

2002-01-18 Thread Craig Tataryn
[EMAIL PROTECTED] wrote: Sorry...I think you'll find the real beer is only to be found in the United Kingdom! D. As a Canadian I resent that statement. Although I must admit my vavourite beer is Kilkenny and Double Diamond. However, they are too filling. Craig. -- To unsubscribe,

Computer-programmer.org

2002-01-13 Thread Craig Tataryn
Hi there, for those of you who have been trying to get to the struts tutorial at http://www.computer-programmer.org/articles/struts/ , it has been down for a while. I was having network issues that have since been resolved. It's back up now! tataryn:craig/ -- To unsubscribe, e-mail:

Re: Computer-programmer.org

2002-01-13 Thread Craig Tataryn
and others ar blurry. Thought you might want to know -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 13, 2002 12:31 PM To: [EMAIL PROTECTED] Subject: Computer-programmer.org Hi there, for those of you who have been trying to get to the struts tutorial

Re: workflow?

2001-06-25 Thread Craig Tataryn
I am currently looking at IBM's WSFL and Microsofts XLang, about half way through XLang and haven't touched WSFL... I'll keep you posted. Thanks, tataryn:craig / Marcel Andres wrote: Hi ronel A good idea to find out more about 'workflow' is the Workflow Management Coalition

Re: Report to Recipient(s)

2001-06-05 Thread Craig Tataryn
Apparently someone's spam filter doesn't like x's being lined up in bunches of three or more ;) Paladin wrote: Incident Information:- Originator:Deadman, Hal [EMAIL PROTECTED] Recipients:[EMAIL PROTECTED] Subject: RE: Query: ActionMappings Message from Deadman, Hal [EMAIL

Re: I'm back! -- workflow

2001-05-10 Thread Craig Tataryn
interest in a struts based workflow mechanism, and have done a little work on my own in this area (just a proof-of-concept at this point). Thanks, james:darren/:) Craig Tataryn Craig.Tataryn@morganst

I'm back!

2001-05-09 Thread Craig Tataryn
Hi guys, I haven't been participating lately in the mailing list because I recently moved from the US back to Canada so I haven't had too much spare time. Any how, now that I am settled in I would like to start work on the Struts Workflow TODO. I was wondering if anyone other than my self and

Re: Preferred HTML Editor

2001-03-06 Thread Craig Tataryn
Free beer? I am interested vey interested ;) DONNIE HALE wrote: Ted, I'm definitely not the one to ask. NetBeans is the free-as-in-beer version of Sun's Forte for Java. The various supporting pieces of NetBeans are well-isolated as "modules" (in NetBeans lingo). But as to what

Re: flow control

2001-02-28 Thread Craig Tataryn
You can definitly do this in Struts as it stands (correct me if I'm wrong). What will help this along is the Workflow Processing TODO in the TODO 1.1 document on the struts homepage. When that is completed you will be able to map out this flow in some graphical type means. Craig T. "Nanduri,

German version of presentation online!

2001-02-27 Thread Craig Tataryn
Uwe Pleyer of Germany was gracious enough to translate the Struts Prensentation at http://www.us-eh.com/craiger/articles/struts/ to German! Check it out if that is your native tounge. Now I don't know German personally, so let me know if it's a real translation, or just some German drinking

Re: hide a link or JSP's URL

2001-02-26 Thread Craig Tataryn
You have to add some javascript to your link that gets fired when the "onmouseover" event happens... a href="javascript:void(0)" onMouseOver="(window.status=''); return true" Craig T. Maya Muchnik wrote: Hi, How make a link or JSP URL "invisible" to a browser? I have read some chapter in

Re: hide a link or JSP's URL

2001-02-26 Thread Craig Tataryn
Honestly, I think it's just a matter of personal preference. I've never used "input", I always use forwards. Craig T. Maya Muchnik wrote: Thank you very much. What about the 2nd Q? Craig Tataryn wrote: You have to add some javascript to your link that gets fired when the &q

  1   2   >