a bug in struts-html.tld

2002-06-11 Thread daniele rizzi
or at least that's what seems to me: tag html:password is duplicated: may somebody remove the latter copy (row n.1897 onward) thanks, daniele rizzi -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

it happened to me too! (was R: 1.1 Deployment Bug?- Iplanet Web Server)

2002-06-11 Thread daniele rizzi
Well, something similar happens inside Oracle Jdeveloper 9i; there's a static object that won't be initialized (ie the jvm won't create it right); sorry I can't put my finger on it, daniele rizzi -Messaggio originale- Da: Rajesh Kalluri [mailto:[EMAIL PROTECTED]] Inviato: martedì 11

R: XML/XSLT Question - Help!

2002-06-07 Thread daniele rizzi
hi, it depends on what you intends for graphics support: the idea is to decouple the content (in the shape of a xml file) from the presentation (generated by a transformation, which is described by a xsl file) 1- if the question is: can xslt produce some .gif? the answer is : not a xslt in

R: maybe someone knows. Desesperated

2002-06-04 Thread daniele rizzi
Hi Adolfo, what are you aims in inserting a OracleConnection in a table using a connection? daniele rizzi (perplexed) -Messaggio originale- Da: Adolfo Miguelez [mailto:[EMAIL PROTECTED]] Inviato: lunedì 3 giugno 2002 19.34 A: [EMAIL PROTECTED] Oggetto: maybe someone knows

R: R: maybe someone knows. Desesperated

2002-06-04 Thread daniele rizzi
. The question is, has any of you updated or inserted with JDBC an Struct object in a database through a connection obtained from a pool? Just forget if you do not understand, it is quite deep, or maybe I am missing the obvious! Regards, Adolfo. From: daniele rizzi [EMAIL PROTECTED] Reply

R: validator NullPointer- please help

2002-06-03 Thread daniele rizzi
hi, have you enclosed the jakarta regexp library? (it's required by validator only, so everything else works as usual) bye, d.rizzi -Messaggio originale- Da: Peter Onthrops [mailto:[EMAIL PROTECTED]] Inviato: venerdi 31 maggio 2002 18.47 A: [EMAIL PROTECTED] Oggetto: validator

R: Design Advice - Relational Databases Java Objects

2002-05-31 Thread daniele rizzi
Hi Adam, I know it sounds silly as an answer, but if you avoid OO altogether for this sort of questions and SELECT COUNT(*) FROM MY_TABLE straight to the db? d.rizzi -Messaggio originale- Da: Adam Hardy [mailto:[EMAIL PROTECTED]] Inviato: venerdi 31 maggio 2002 10.01 A: Struts Users

R: R: Design Advice - Relational Databases Java Objects

2002-05-31 Thread daniele rizzi
Well, I don't know if I'm close to the point you're making, but accessing to a db has (at least) two different meanings: a- you may read some data from one or more tables, related or non-related by foreign keys; b- you may change some data in one or more tables, that is inserting,

Validation DTD (was R: DTD Question - SIMPLE SOLUTION)

2002-05-31 Thread daniele rizzi
Hi all, by the way last night I wrote down the DTDs for validation.xml and validator-rules.xml Hope it might help (well I'm not even sure I've written down right...) bye, d.rizzi -Messaggio originale- Da: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Inviato: venerdì 31 maggio 2002 12.03

R: Brain Teaser

2002-05-29 Thread daniele rizzi
That's easy! It's not a file, just a name to be called in html:form action=logon/html:form bye, d.rizzi -Messaggio originale- Da: Chris Cairns [mailto:[EMAIL PROTECTED]] Inviato: mercoledi 29 maggio 2002 9.23 A: [EMAIL PROTECTED] Oggetto: Brain Teaser Could someone explain to me

ever got a StackOverflowError calling a form?

2002-05-28 Thread daniele rizzi
) --- end --- whenever the page is called (that is, NOT a submit error, but when the jsp is loaded) That's rather weird, because it means that a never-ending loop is evocated :-(, and I don't know how I could create such a beast. Any hint will be appreciated, thanx for listening, daniele rizzi

R: validator generated HTML code

2002-05-28 Thread daniele rizzi
notice that i get a lot of \n characters in between the lines... oh, open the file with textpad and substitute any \n\n with \n (maybe the writer worked on a pc, then sent the code to a unix box, so every \n became a \n\n) like it? bye, daniele rizzi -Messaggio originale- Da: Adolfo

R: Do we have struts custom tag for success messages.

2002-05-23 Thread daniele rizzi
yep, there is: a/ put this code somewhere in your Action.perform --- begin ActionMessages messages = new ActionMessages(); messages.add(statusTrans, new ActionMessage(trans.generic.read_ok)); saveMessages(request, messages); return mapping.findForward(dest); --- end b/ put this