Re: Properties in ActionForms

2001-01-11 Thread Ted Husted
I wonder if any of you have implemented an automatic way of populating the properties in the ActionForm? Doing more with "auto beans" is being discussed for the 1.1 timefreame. Meanwhile, the latest builds support the next best thing: You can define generic data beans for your business logic

Re: Any way to dynamically change flow-of-control?

2001-01-11 Thread Ted Husted
ote pages like this dynamically, the old-fashioned servlet way, perhaps using a standard "message box" type library? The responses in the dynamic page could then be set to forward to whatever actions or paths were appropriate to the circumstances, without having to write a physical JS

Re: Sorry that was ErrorTag.java

2001-01-11 Thread Ted Husted
The build for 11-JAN failed due to an error in one of the XML files (mea culpa). *** REPLY SEPARATOR *** On 1/11/2001 at 2:03 PM [EMAIL PROTECTED] wrote: The date stamp on the file is 01/02/01 and is from the Windows source. I also got the build from

Re: Documentation in nightly source distribution.

2001-01-11 Thread Ted Husted
Running build dist or ./build.sh dist from the folder where you unpacked it should do it, if all the prerequesites are installed. See http://jakarta.apache.org/struts/installation.html#Building *** REPLY SEPARATOR *** On 1/11/2001 at 2:41 PM Walter Holladay wrote:

Pull MVC

2001-01-12 Thread Ted Husted
y operates *only* on the Push model), so I believe that it is somewhat uncharted territory for some people. The only products that I can think of right now that encourage this is JSP taglibs and Tea, however, I still feel as though they have missed the boat on this in one way or another. -- Ted H

Re: User Guide Code Formatting

2001-01-12 Thread Ted Husted
In the Tag Developer's Guide, I ending up formatting "paragraphs" as a single line, and then inserting br's *** REPLY SEPARATOR *** On 1/12/2001 at 8:43 AM Hines, Bill wrote: Just FYI, I know this is low priority, but some of the code sections in the 1.0 user guide are

Re: i18n

2001-01-16 Thread Ted Husted
I believe there's a gotcha where the default locale is set according to the server's default, rather than the user's browser settings. Here's an example of adding a drop-down box to select a language http://www.mail-archive.com/struts-user@jakarta.apache.org/msg00999.html and another i18n

Re: options-Tag

2001-01-16 Thread Ted Husted
The simplest thing is to use the LabelValueBean class provided by the example. In your Action, a database query(or equivalent) would create a collection of LabelValueBeans, and then insert the collection into the request context. First, the database query executes a query and returns the

Re: options-Tag

2001-01-17 Thread Ted Husted
On 1/15/2001 at 11:28 PM Johann Dorn wrote: Can anyone give me an example or some hints how the options-Tag must be used in conjunction with the ActionForm? Sorry, got distracted, and I never actually did that. So, starting with a working example of an ArrayList "options" bean in

Re: Off-topic? How to embed hyperlink in db-stored text?

2001-01-17 Thread Ted Husted
k and easy dynamic links, Wikis usually have a way to quick refer to another page in the same context, or sometimes highlight references automatically. One full featured Wiki is http://kehei.com/kehei/doc/WikiWikiWeb.html -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~

Re: trade-off

2001-01-17 Thread Ted Husted
The template tags in the Struts library seem a bit pokey, but there's a lot going on there (reads one file, then merges from another). I don't think alot of applications actually use these tags much. I believe that any JSP is suppose to compile down to a single servlet class file. The custom

RE: trade-off

2001-01-17 Thread Ted Husted
They are used in the Template Example application, if you want to see a set in action. Another templating approach is Components Library for building JSP views by Cedric Dumoulin at http://gauss.ficsgrp.com/cdm/index.html . *** REPLY SEPARATOR *** On 1/17/2001 at 3:06 PM

Re: WOBOT unsubscription requests....

2001-01-17 Thread Ted Husted
Noticed the same. Even tried unsubscribing and subscribing again to see if there was a bug in the instructions, but I didn't see anything. *** REPLY SEPARATOR *** On 1/17/2001 at 12:57 PM Mike Campbell wrote: "IH" == Irene Hernandez [EMAIL PROTECTED] writes: IH unsuscribe

Re: HASHTABLE - NEED HELP URGENT

2001-01-18 Thread Ted Husted
Using the 1.0 iterate tag (never used 0.5 or enumerate myself), you would print the elements of a Hashtable like this: %@ page language="java" % %@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" % %@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %

Re: Need some help please

2001-01-19 Thread Ted Husted
ollection="serverTypes" property="value" labelProperty="label"/ /html:select In your case, I think it might be html:select property="dispProductsBean" html:options collection="property" property="productID&q

Re: Looking for Struts Tutorial

2001-01-22 Thread Ted Husted
o the tutorial would be appreciated. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: JDBC Connection Pooling

2001-01-23 Thread Ted Husted
. But when I try to access it in my initialization servelt (which is a subclass of the ActionServelt) via the config spec it don't. Any ideas what I may be missing? Regards Jrgen -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223

Re: logic:iterate and form controls, revisited

2001-01-24 Thread Ted Husted
, is welcome to submit an addition to the install document. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: new template tag framework

2001-01-25 Thread Ted Husted
of the custom tags do. The current template library is generic, and any other could be easily used in its place. (Which is the beauty Struts. It is firmly based on standards, so it is easy to plug-in whatever other standard library you may need to use!) -- Ted Husted, Husted dot Com, Fairport NY USA

Re: problems with the logic:iterate tag

2001-01-26 Thread Ted Husted
D"item" property=3D"manager"/ /td /tr /logic:iterate but with the second approach the table is always empty... am I too stupid to use the iterate tag ? or is something else wrong with my approach ? pleas help ! Regards flo -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: FormAction scope

2001-01-26 Thread Ted Husted
this "FormAction" bean may be invoked from a href in addition to the forms. Thx, Zhiyong Li Platform Development iBiomatics LLC , a SAS Company (919) 653-2746 [EMAIL PROTECTED] -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Who is Craig ?

2001-01-27 Thread Ted Husted
And, speak at various conferences, including ApacheCon and JavaOne. Don't imagine there's streaming media of that anyplace? -T.

Re: Fruit Glaze Example

2001-01-27 Thread Ted Husted
. Is there anyone who could send me the zip file of this example ? (maybe Ted ... :-) ) Thanks in advance. Vilavanh Messien -Message d'origine- De : Ted Husted [mailto:[EMAIL PROTECTED]] Envoy : 27 janvier, 2001 15:22 : Struts List Objet : Re: Who is Craig ? And, speak at various

Nested Collection with Options Tag

2001-01-27 Thread Ted Husted
Compiled Code) at _jsp._husted_22dcoreservlets_22djdbc._fruitSales__jsp._jspService(_fruit Sales__jsp.java, Compiled Code) Is there a way to get html:options to use my LabelValueBeans directly? -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Fruit Glaze Example

2001-01-27 Thread Ted Husted
. Is there anyone who could send me the zip file of this example ? (maybe Ted ... :-) ) Thanks in advance. Vilavanh Messien -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Struts installation notes

2001-01-28 Thread Ted Husted
ple: web-app id='/struts-myapp' / Resin will then read your application's configuration from WEB-INF/web.xml ### -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

CachedRowSet

2001-01-29 Thread Ted Husted
, but I'm not sure how that would relate to Strut's Generic pool. The two other alternatives ara direct connection, the old-fashioned way, or grabbing your own ResultSet and then using it to populate a CachedRowSet. For now, I'm just populating it from a ResultSet. -- Ted Husted, Husted dot Com

Re: Setting initial page to be an action

2001-01-30 Thread Ted Husted
the moment, they get forwarded to http://server/myapp/index.jsp which crashes because stuff that was setup in the index action does not exist. Any ideas on how to accomplish this would be greatly appreciated! Jason Winters -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical

Re: Struts and MySQL

2001-01-31 Thread Ted Husted
"stable" as of 22-JAN), but it had worked with an early version too. -T. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Testing equality of bean properties

2001-01-31 Thread Ted Husted
perty="prop2" ...do something... /logic:equal which is not possible currently since the logic:equal tag only supports comparison between a bean property and and constant value... Any ideas? Regards, Jrgen -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Service

Re: action.xml

2001-02-01 Thread Ted Husted
the form's data to be persistent throughout the session, then make it a session bean. If it doesn't matter, save the resoruces and keep it in request scope. -T. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-250

Re: Struts version

2001-02-01 Thread Ted Husted
DataStore ( for connection pooling ) ? Only if you bring your own. There is a connection pool provided with 1.0. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: define tag

2001-02-02 Thread Ted Husted
roperty B then we would do bean:define id="m" name="A" scope="session" type="typeA" / bean:define id="B" name="m" scope="page" type="typeB" / Now if for some reason we cant find A in the session or say A is null, we can

Re: member variables

2001-02-02 Thread Ted Husted
ion object or these objects reused Thanks Hunt __ Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425

Re: Struts installation notes - WebLogic 5.1

2001-02-04 Thread Ted Husted
:\weblogic\myserver\serverclasses;C:\weblogic\lib \webl ogicaux.jar;C:\jakarta-struts\lib\struts.jar;C:\jakarta-struts\webapps\ strut s-example\WEB-INF\classes -Dweblogic.system.home=c:\weblogic -Djava.security.manager -Djava.security.policy=c:\weblogic\weblogic.policy weblogic.Server -- Ted

Re: Mapping

2001-02-05 Thread Ted Husted
ind would be located. Everything you need to know is documented by the Tag Library Reference, but it doesn't really lay it out like a tutorial. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: what does this ERROR mean ??

2001-02-05 Thread Ted Husted
-- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Help with Context Path Error

2001-02-06 Thread Ted Husted
ConnectionThread.run(SimpleTcpEndpoint.java , Compiled Code) at java.lang.Thread.run(Thread.java, Compiled Code) Thanks for the help. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Action class

2001-02-06 Thread Ted Husted
? Thanks Hunt __ Do You Yahoo!? Yahoo! Auctions - Buy the things you want at great prices. http://auctions.yahoo.com/ -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506

RE: Data Validation

2001-02-06 Thread Ted Husted
welcomed! Franois Rey Financial WebSuite The Capital Markets Company http://www.capco.com/ -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: 06 February 2001 01:01 To: Struts List; [EMAIL PROTECTED] Subject: Re: Data Validation On 2/4/2001 at 11:52 PM Neal Kaiser

Re: What's the estimated release schedule for struts 1.0?

2001-02-06 Thread Ted Husted
, and wouldn't hestitate to ship. Some early-birds are still working with 0.5, and are very happy with it, but most people seem to be using the latest builds, which tend to be very stable. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252

Re: What's the estimated release schedule for struts 1.0?

2001-02-06 Thread Ted Husted
On 2/6/2001 at 7:42 AM Ted Husted wrote: The latest bug list is at Oops, forgot to check this The latest bug list is at http://nagoya.apache.org/bugzilla -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506

Installation notes for other servlet containers

2001-02-06 Thread Ted Husted
as to the specific problem, we should include that too. If you can help us out, please see the install file in your jakarta-struts folder for an example format. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http

Re: Tomcat/Struts-friendly hosting services

2001-02-06 Thread Ted Husted
with a reasonably priced hosting service that was/is a good bet to recommend to clients. Has anyone compiled a list somewhere? TIA -- Tom Miller [EMAIL PROTECTED] 641.469.3535 Phone 413.581.6326 FAX -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252

Re: Ted's FAQ What Web sites are already Powered by Struts?

2001-02-07 Thread Ted Husted
(e.g. ".do" files)? -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Ted's FAQ What Web sites are already Powered by Struts?

2001-02-08 Thread Ted Husted
on package. Of course, any comments or suggestions would be welcome! -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

RE: struts-config_1_0.dtd File question

2001-02-08 Thread Ted Husted
http://java.sun.com/products/javabeans/docs/ *** REPLY SEPARATOR *** On 2/8/2001 at 5:42 PM Mike Campbell wrote: Can someone point me to the spec doc for JavaBeans? I'm having a bit of trouble finding it on Sun's site. -- Ted Husted, Husted dot Com, Fairport NY USA

Re: forms, formbeans and JavaScript

2001-02-12 Thread Ted Husted
information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden. -- Ted Husted, Husted dot Com, Fairport NY

Re: Struts user base

2001-02-12 Thread Ted Husted
You probably want to spend some time in the mail archives. The Struts-User archive at http://mail-archive.com is my personal favorite. It was recently mentioned that there are over 900 subscribers to the mailing lists. Jakarta projects offer nightly builds with the latest fixes. How

Re: Struts example doesn't work???

2001-02-13 Thread Ted Husted
SHOULD NOT be on the classpath when Tomcat is running. See http://husted.com/about/struts/kickstart.html#jar for more. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Struts installation notes

2001-02-13 Thread Ted Husted
STRUTS INSTALLATION NOTES - JRun 3.0 TESTED ENVIRONMENT (your mileage may vary): --- JRun 3.0 SP2a, Version 3.02a.11614 Microsoft IIS 5.0, Windows 2000 Thanks so much, Eric! Any other JRUN

Re: Old questions that die hard

2001-02-13 Thread Ted Husted
interested in your thoughts, and ideas because this is something I've done a lot of recently (not in Struts/JSP though) ... -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: As promised (Struts Presentation)

2001-02-13 Thread Ted Husted
Kewl! I think I know what I'll be doning after Dark Angel tonight! I did notice one point on page 17, where it says "Struts will only handle models in an automatic fashion if you extended org.apache.struts.action.ActionForm" Is the word "only" accurate? I believe Struts works best if the

Re: Struts and Turbine

2001-02-14 Thread Ted Husted
-orientated, and is a good choice for enterprise developers looking for something that will fit well with their own big picture. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 425-0252; Fax 716 223-2506. -- http://www.husted.com/about/struts/

Re: Client-side validation (Old questions that die hard)

2001-02-15 Thread Ted Husted
for a spin! What I really like about this at first glance is the XML configuration. This plays well into integrating this both with Struts and with visual environments, like UltraDev. Have you thought about offering built-in expressions for standard Java and SQL types? -- Ted Husted, Husted dot Com

Re: Blank Newbie (on Tomcat)

2001-02-16 Thread Ted Husted
Dan Connelly wrote: Should you also have trouble with this, the Newbie problem (my problem, now solved) is that you must re-deploy the application if you make a change to the struts-config.xml. (Is this obvious? It wasn't to me. In fact, the splash screen on struts-blank implies

Re: Latest reasonably stable release

2001-02-17 Thread Ted Husted
The was a recent spate of fixes last week, as Craig gears up for final release testing. I would say that the latest build is your best bet. We've been in major feature lock for some time, and are just tying up loose ends right now. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom

Re: Struts on IPlanet

2001-02-19 Thread Ted Husted
Mallari Kulkarni wrote: Hi, Anybody knows how to implemet Struts on IPlanet Fast-track Server 4.1 which supports Custom Tags and JSP 1.1. Is it comatible ? Regards Mallari Kulkarni People have mentioned the iPlanet WS and AS products on the list. The

Re: AW: Struts on IPlanet

2001-02-20 Thread Ted Husted
Oliver, For the installation page, I just entered for iPlanet Application Server 6.0 Service Pack 2 is recommended. NOTE: At present, the Struts example application still uses a non-Serializable servlet context attribute, and will not run in an environment that requires them, like iPlanet

[Fwd: cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/html ImageTag.java ImgTag.java]

2001-02-20 Thread Ted Husted
Anyone who is using the HTML Image tag should note the following. See also http://www.mail-archive.com/struts-dev%40jakarta.apache.org/msg00443.html --- Original Message From: [EMAIL PROTECTED] Subject: cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/html

Re: AW: Re: AW: Struts on IPlanet

2001-02-20 Thread Ted Husted
Oliver, Is there any chance that you could phrase this as a how-to? [EMAIL PROTECTED] wrote: -- Original Nachricht -- Oliver, For the installation page, I just entered for iPlanet Application Server 6.0 Service Pack 2 is recommended. == In a week I will know if that will fix

Re: more than one formclass for a one jsp ?

2001-02-25 Thread Ted Husted
ation to 4 formclasses? Is it possible? Please help me. Regards Mallari -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: Struts in Websphere, missing resources attribute...

2001-02-25 Thread Ted Husted
Were the instructions here http://jakarta.apache.org/struts/installation-was.html any help? Wayland Chan wrote: Sorry, I should have mentioned that I'm using Struts 0.5 and WAS 3.5.2 __ Do You Yahoo!? Yahoo! Auctions - Buy the things

Re: Client-side validation (Old questions that die hard)

2001-02-25 Thread Ted Husted
jumpstart for using Struts as part of their J2EE projects. -Original Message----- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 4:25 AM To: [EMAIL PROTECTED] Subject: Re: Client-side validation (Old questions that die hard) David Winterfeldt wrote: I poste

Re: Error invoking servlet

2001-02-25 Thread Ted Husted
There's a link to the patch for Bluestone here: http://jakarta.apache.org/struts/installation-ubs.html Ramakrishna VasiReddy wrote: Hi, I'm getting an error in the browser like this.I'm using bluestone application server 7.2.2(eval). I cann't figure it out where its happening.

Re: faq

2001-02-27 Thread Ted Husted
Unfortunately, there's not an official FAQ for Struts right now. (Jakarta's Jyve installation seems to be hopelessly broken.) I've started a draft of a "kickstart" FAQ at http://husted.com/about/struts/kickstart.html in case that helps. -- Ted Husted, Husted dot Com, Fairp

Re: Strut / Turbine

2001-03-01 Thread Ted Husted
See http://www.mail-archive.com/struts-user@jakarta.apache.org/msg03206.html and http://www.mail-archive.com/general@jakarta.apache.org/msg00495.html Christophe Vigny wrote: It seems that the database support is pretty lesser in strut than in turbine. I'm wonder what is the better

Re: Article on struts

2001-03-02 Thread Ted Husted
malcolm davis wrote: Where is the link? http://www.sys-con.com/java/archives/0603/mcclanahan/ now along with the others at http://www.husted.com/about/struts/ -Ted.

Re: Dreamweaver TagLib

2001-03-04 Thread Ted Husted
I picked it up from another posting, and to be honest, I'm not sure how to use it either ;0 I'm working on an extensions of my own now. Let me know if you're interested in an alpha. This let's you use Struts tags within Dreamweaver as if they were standard HTML tags. Dreamweaver doesn't seem

Re: Article on struts

2001-03-04 Thread Ted Husted
see http://www.sys-con.com/java/archives/0603/mcclanahan/ and http://www.husted.com/about/struts/ Maya Muchnik wrote: Hi, No link. Incze Lajos wrote: Yet another article on Struts. You won't believe it ... -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software

Re: You make the decision Velocity/Turbine vs. Struts/JSP

2001-03-04 Thread Ted Husted
recipient(s) only. If you are not an intended recipient, please notify us immediately by reply e-mail or by phone on +61 2 9212 7773 delete this e-mail from your system. -- -- Ted Husted, Husted dot Com, Fairport NY USA

Re: Action forwards

2001-03-06 Thread Ted Husted
rather than a drawback.) -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: Preferred HTML Editor

2001-03-06 Thread Ted Husted
DONNIE HALE wrote: It's got Tomcat built into it, so you can right-click on a JSP and say "Execute". It also has auto-completion for custom tags - once you put the prefix:tag in, it will show the list of parameters for that tag. Is it possible to redistribute that part of the NetBeans

Re: Preferred HTML Editor

2001-03-06 Thread Ted Husted
Donnie mentioned "once you put the prefix:tag in", and I was wondering if the "prefix:tags" were stored in an external file, that could be created once with all the Struts (and Taglibs) tags -- plug and play. "Craig R. McClanahan" wrote: Ted Husted wrote:

Re: Database pooling code

2001-03-07 Thread Ted Husted
is working on this with Geir Magnusson, of Velocity, and several committers from other projects, including, or course, The Craig. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/commons Jim Richards wrote

Logging IP Addresses

2001-03-12 Thread Ted Husted
This is mildly off-topic, but I'm logging accesses to my application when people login. I'd like to convert the IP string (xxx.xxx.xxx.xxx) returned by the HttpRequest to an unsigned integer. Before I write one, I wondered if anyone had a handy library routine for that. -- Ted Husted, Husted

Re: Strut Books

2001-03-12 Thread Ted Husted
Are you including the new Taglibs JDBC tag set (which works well with Struts, among other frameworks)? "Lacerda, Wellington (AFIS)" wrote: I'm working on a book about tag libraries that has quite a number of chapters dedicated to Struts. What are the topics you want to be covered with more

Re: Question about struts application model (DataSource, Business Logic beans)

2001-03-13 Thread Ted Husted
My problem is that access to the DataSource is through the servlet.findDataSource() call. Struts stores the JDBC Connection pools as servlet context attributes (in JSP terms, application-scope beans). You can also access them that way. If you do not specify a name in the Struts-config file, it

Re: Strut Books

2001-03-13 Thread Ted Husted
s" is also (now) a good subtitle to Jason Hunter's seminal JSP critique. http://www.servlets.com/soapbox/problems-jsp.html -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Fwd: [ANNOUNCE] JDBC tag library released

2001-03-17 Thread Ted Husted
Note: These tags are very easy to use with the Struts connection pool. Simply give your datasource a "key" property in your Struts-config file, and use the same key with the JDBC connection tag. data-sources data-source driverClass="org.gjt.mm.mysql.Driver" maxCount="4"

Re: Confusion : Usage of Struts

2001-03-21 Thread Ted Husted
r approach. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: Struts, Trubine, Velocity, Expresso

2001-03-21 Thread Ted Husted
an interesting chart at http://www.mail-archive.com/struts-user@jakarta.apache.org/msg01128.html -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: How can a Struts Action developer best document the system for a JSP developer?

2001-03-23 Thread Ted Husted
This is not actually what you want, but I did start a simple, sample specification for a Struts application (based on the example). It's still just an unfinished rough draft, but available at http://husted.com/about/struts/example-spec.html if you want to mine it for ideas. Bryan

Re: db and forms

2001-03-23 Thread Ted Husted
struts-config.xml) that deal with relation db and forms similar to those I tried to describe above. Struts-example it's a good thing but more examples are even better. I would really appreciate any help. Thank you for your time. Best of luck. __

Re: How to use html:errors ?

2001-03-24 Thread Ted Husted
Since Struts is a framework, there a number of inter-related parts that work together, the error handling is a good example of that. When you detect an error in your Action, you need a way to display it to the user. Since most Actions are not designed to be "views", this is a problem. Struts

Jyve FAQ

2001-03-26 Thread Ted Husted
eventually be repaired so that we can all maintain this "wiki-style" in the future. http://jakarta.apache.org:8080/jyve-faq/Turbine/screen/DisplayProjects -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: Struts in WebSphere - VICTORY !!!!!!! - Addendum

2001-03-28 Thread Ted Husted
Thanks for posting this, Chris. I added it to the installation guide, and the Jyve FAQ. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: JavaScript in Struts

2001-03-29 Thread Ted Husted
in the array's initialization expression. [Craig McClanahan] -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: forward in struts-config.xml file

2001-03-29 Thread Ted Husted
t in the struts-config.xml which defines a global undefined state (similar to the 'unknown' attribute for an action class). Please note that the forward names are different (in different actions). So i can't use a single global forward. Now if one of you gurus out there can find me a solution

Re: need some explaination with logon.do

2001-03-29 Thread Ted Husted
of the Jakarta Struts. Any help will be greatly appreciated. Thank you. Charlemagne Rey -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: downloadable javadoc

2001-03-29 Thread Ted Husted
Absolutely everything is in the source distribution. Burr Sutter wrote: Is there a downloadable version of the javadoc for Struts (found online at http://jakarta.apache.org/struts/api/index.html)? I normally like to keep these things on the local disk for offline work. Burr -- Ted

Re: MySQL

2001-03-30 Thread Ted Husted
I use Mark Matthew's driver http://mmmysql.sourceforge.net/ , which works well with Resin (and everything else under the sun). Caucho even puts it in their own examples. James Bell wrote: Hi everyone I want to use MySQL with Struts. Although not a Struts specific question, what jdbc

Re: .properties file

2001-03-30 Thread Ted Husted
want to put it into the .properties file. Thank you for your time. Best of luck, Yuriy Zubarev ___ Do You Yahoo!? Get your free @yahoo.ca address at http://mail.yahoo.ca -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software

Re: JUNIT and Struts

2001-03-30 Thread Ted Husted
Vincent and Ron have been working on some things. Take a look at the web/test directory in the nightly build. Vincent is also in midst of donating J2EEUnit to Apache/Jakarta. Yeah Vincent! Padma Ginnaram wrote: Is there a sample available for testing struts with j2eeunit

Re: SSL and Struts

2001-04-11 Thread Ted Husted
I'm finding a similar problem with Resin - under SSL it connects fine but the html:link tags resolve to a /a. I tried adding the handler at the command line (as also recommended by http://java.sun.com/products/jsse/INSTALL.html - item 7). java

Re: REPOST: How to code and use the html:image tag?

2001-04-13 Thread Ted Husted
The property and value for the button is passed as a parameter (property=value), that you can retrieve from the request context. A typical approach would be to give each button the same property but different values, like html:image page="/images/login.gif" alt="Login" property="login"

Re: Loggig Mechanism in Struts

2001-04-13 Thread Ted Husted
logging technologies to be plugged in, but to standardize on any particular implementation --- ahhh, that way lies Borg ;-) -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/

Re: [Fwd: FW: REPOST: How to code and use the html:image tag?]

2001-04-13 Thread Ted Husted
meter( str ) ); } and the output: course = pebblebeach login.y = 147 login.x = 129 I have a html:select named course set to pebblebeach. I DO get the mouseclick x and y values. So, I'm seeing something from my login control. I don't see what I'm doing wrong. thanks jo

Re: [Fwd: FW: REPOST: How to code and use the html:image tag?]

2001-04-13 Thread Ted Husted
. If that's the case, I'll work a note into the Developer's Guide. Zhengxi Ruan wrote: it is not a bug of Struts, but the browser's. Jesse -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Friday, April 13, 2001 7:52 PM To: [EMAIL PROTECTED] Subject: Re: [Fwd: FW

Re: Struts TagLibs

2001-04-13 Thread Ted Husted
Both projects started about the same time. Check the archive on the Developer's list for a recent thread (mail-archive.com). Rajan Gupta wrote: I am looking for all type of tags such as equal, iterate etc related to logic presentation. Just out of curiosity why did u not decide to use

<    4   5   6   7   8   9   10   11   12   13   >