RE: Hi

2003-01-28 Thread Uday
Hi, I have a requirement like this. When the user enters into some jsp pae, he can selecte some checkboxes. The data related to these checkboxes i have to store in a file. So that next time when he visited (logoff and logon) this page, he can see the checkboxes what he previously selected. I want

Re: Struts on iPlanet Web Server 6.0?

2003-01-28 Thread Ronald Mathies
If you are going to check out OrionServer then you can olso look at Oracle 9iAS since the basis of this product is the Orion server. - Original Message - From: V. Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 28, 2003 3:32 AM Subject: Re: Struts on iPlanet Web

RE: Hi

2003-01-28 Thread Andrew Hill
You should be doing this in the action, not in the view. (View should only be for viewing!) (In actual fact you really ought to hide this even deeper in your model classes which are then called by your action). Not sure what the servlet api restrictions on file access from a servlet (your action

Re: urgent RowsetDynaClass help

2003-01-28 Thread usha
Hi Craig i have requirement like this i have rowsetdynaclass from which i am displaying the data on the jsp using the iterate tag. can i get the values from the dynabeans with jsp scriplet and just out put to the jboss console. is this possible. logic:iterate id=ivtranshdrlist

Urgent..Problem wirh html:link tag

2003-01-28 Thread modena
Good day! I'm new to struts and i need to help..my problem is: mytag:corsoSIter colors=#FF,#E5E9F5 TR bgcolor=%=Color% TD align=left%=CorsoSId%/TD TD align=left%=CorsoSName%/TD TD align=left%=CorsoSFacolta%/TD TD align=left%=CorsoSCrediti%/TD TD

Re: Hi

2003-01-28 Thread Peng Tuck Kwok
Just curious, but wouldn't it be easier if the preference for the user was stored in a database ? Uday wrote: Hi, I have a requirement like this. When the user enters into some jsp pae, he can selecte some checkboxes. The data related to these checkboxes i have to store in a file. So that next

Tiles: a portal question

2003-01-28 Thread Marco Fabbri
Hi all, I'm playing with the VERY interesting site dedicated on Tiles (http://www.lifl.fr/~dumoulin/tiles/) and I have a little question. Suppose I've created a Tile to view jsp contents, what happen if I compile a form and I press Submit? Only the Tile's space is refreshed or the entire

Re: Problem With Multiple ActionServlet - Urgent

2003-01-28 Thread ashokd
Hi Craig, Thanks for your reply. Your reply saved a lot of time. Where can I get Struts Documentation on this topic. Thanks Regards, Ashok.D - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Cc: 'Jacob Hookom' [EMAIL

RE: Problem With Multiple ActionServlet - Urgent

2003-01-28 Thread Arnaud HERITIER
you can look this : http://jakarta.apache.org/struts/userGuide/building_controller.html Arnaud -Message d'origine- De : ashokd [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 25 janvier 2002 12:00 À : Struts Users Mailing List Cc : [EMAIL PROTECTED] Objet : Re: Problem With Multiple

Re: Does anyone have the Java Pet Store rewritten with Struts

2003-01-28 Thread Andrew Kuzmin
http://xpetstore.sourceforge.net/ -- Andrew Kuzmin [EMAIL PROTECTED] ICQ 76635687 - Original Message - From: Steven Banks [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Steven Banks [EMAIL PROTECTED] Sent: Monday, January 27, 2003 8:10 PM Subject: Does anyone have the Java Pet Store

Test

2003-01-28 Thread Murthy D
Testing With Best Regards, D.V.S.RamaChandra Murthy, email: [EMAIL PROTECTED] work: +91-40-3414200 ext-234 home: +91-40-3537420 Virtusa (India) Pvt. Ltd. Hyderabad. www.virtusa.com Virtusa - The Fusion of Product Development Best Practices, Global Collaboration, and Delivery

[OT - Friday(Even though it's Tuesday)]Re: Test

2003-01-28 Thread Simon Kelly
Broadsword calling Danny-boy, Broadsword calling Danny-boy ... :-) - Original Message - From: Murthy D [EMAIL PROTECTED] To: 'Struts Users Mailing List' (E-mail) [EMAIL PROTECTED] Sent: Tuesday, January 28, 2003 11:32 AM Subject: Test Testing With Best Regards,

Struts Validator Debug output? What is it doing?

2003-01-28 Thread PILGRIM, Peter, FM
There must be a better way! Is there anyway figure what the Struts validator is doing? Something like getting a log dump to stdout console. If there is any error then output is silent! I am trying to find out if it is validating on a nested field property as integer and a date string. -- Peter

Re: Deal with DB connection

2003-01-28 Thread alexj
No one would help ?? -- Alexandre Jaquet - -BEGIN GEEK CODE BLOCK- Version: 3.12 GCM d+ s: a-- C U*+ P L--- E--- W+++ N+++ o K w+ O M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X R* tv b DI--- D G++ e* h++ r% y* --END GEEK CODE BLOCK-- - Original Message

JSP under WEB-INF

2003-01-28 Thread Pat Quinn
Hi Guys, I've just moved all my JSP's into a folder under WEB-INF so i have something like this: WEB-INF\jsp\catalogue I've got some global forward defined as follows: global-forwards forward name=viewcatalogue path=WEB-INF\jsp\catalogue\maincatalogue.jsp redirect=true/

RE: JSP under WEB-INF

2003-01-28 Thread Mouratidis, Georg
Hi Quinn, how about path=WEB-INF/jsp/catalogue/maincatalogue.jsp -Original Message- From: Pat Quinn [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 28. Januar 2003 13:09 To: [EMAIL PROTECTED] Subject: JSP under WEB-INF Hi Guys, I've just moved all my JSP's into a folder under

Re: JSP under WEB-INF

2003-01-28 Thread Emmanuel Boudrant
Hi, You need to set redirect to false, all JSP behind WEB-INF are not visible for redirection. ... and add a '/' before WEB-INF, like this : global-forwards forward name=viewcatalogue path=/WEB-INF/jsp/catalogue/maincatalogue.jsp redirect=false/ /global-forwards

RE: JSP under WEB-INF

2003-01-28 Thread Uday
Hi Quinn, Are you trying this under Weblogic 7.0. If it is under Weblogic 7.0, you will get 404 error. Even i tried moving to WEB-INF and because of this error, i again moved back to the application root. You tell me if you get succeed in this, so that i can try in Weblogic 7.0 Have a nice day

Re: JSP under WEB-INF

2003-01-28 Thread Pat Quinn
Cheers Guys, setting redirect to false worked for me i'm using the Orion Webserver... but it seems it was't webserver related just me being very stupid. Thanks again guys From: Emmanuel Boudrant [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

Problem porting JSPs with template to tiles

2003-01-28 Thread Boris Folgmann
Hi! I tried to port a set of JSPs using the template taglib of struts 1.0 to struts 1.1. Simply replacing template: with tiles: did the job. But it does not work in a lot of JSPs where I have no matching tiles:put for one of the tiles:get in the template JSP. I get an Exception text at the

moving from ASP to jsp/Struts redirecting visitors into new site

2003-01-28 Thread Rachel
Hi I'm rebuilding a site that is currently built in ASP and hosted on a win2k box on IIS to A JSP/Struts application that will be hosted on JBoss on Linux. I'll be moving the domain so I can't just do browser redirects from one to the other and what I would like to be able to do is come up

RE: need help for struts - EJB

2003-01-28 Thread Jarnot Voytek Contr AU HQ/SC
We do the following: Action - Business Delegate - Session Facade - Entity - Database -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: Buics [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 7:28 PM To: Struts Users Mailing List Subject:

RE: Java Pet Store rewritten with Flash Remoting Front End

2003-01-28 Thread Robert Taylor
+1 -Original Message- From: Joel Wickard [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 10:31 PM To: Struts Users Mailing List Subject: Re: Java Pet Store rewritten with Flash Remoting Front End Brian Alexander Lee wrote: But wouldn't the world be better off if

Re: Hi

2003-01-28 Thread V. Cekvenich
1. This fals in : I do not have time to do it, but maybe you do. 2. Also this has nothing to do with struts, struts is MVC, so you do not do things in JSP or view. 3. The answer is: You need to grab a hold you your application context, and get the real path. Uday wrote: Hi, I want to read

RE: session creation time

2003-01-28 Thread Pani, Gourav
Well, I knew that would work because I know how to convert it to a date object. My specific question was if it could be done in a taglib environment. Setting to the request is just a fallback. -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27,

Applet Struts

2003-01-28 Thread Nathalie Foures
Hi, I would like your advices about the following question : With Struts, controls on the client side are made with javascript. But if you need a lot of controls, it may be difficult to make them only with javascript. A java applet enables to make a lot of difficult controls, but is it

Re: Tiles: a portal question

2003-01-28 Thread V. Cekvenich
Marco Fabbri wrote: Hi all, I'm playing with the VERY interesting site dedicated on Tiles (http://www.lifl.fr/~dumoulin/tiles/) and I have a little question. Suppose I've created a Tile to view jsp contents, what happen if I compile a form and I press Submit? Only the Tile's space is

RE: Applet Struts

2003-01-28 Thread Andrew Hill
AFAIK the only javascript struts outputs is for the validator - and thats an optional 'cosmetic' feature that can be switched off without effecting (affecting/afecting/efecting arrrgh! Ive lost my ability to spell!) application correctness. Struts 'controls' are pretty much just your basic html

RE: Applet Struts

2003-01-28 Thread ROSSEL Olivier
AFAIK the only javascript struts outputs is for the validator - and thats an optional 'cosmetic' feature that can be switched off without effecting (affecting/afecting/efecting arrrgh! Ive lost my ability to spell!) application correctness. Struts 'controls' are pretty much just your basic

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Mark Galbreath
LISP boy is correct, and I brought this subject up about a year ago and Craig answered pretty definitively - try a search on synchronization in the archive: http://www.mail-archive.com/struts-user%40jakarta.apache.org/ Mark -Original Message- From: James Turner [mailto:[EMAIL

Re: moving from ASP to jsp/Struts redirecting visitors into new site

2003-01-28 Thread V. Cekvenich
A shot in the dark: In your container server xml file set root to you /pages This removes the need for pages. In you struts.xml map *.asp to Action (as opposed to *.do). Of course, every page needs a action mapping that and a forward to a real jsp. .V Rachel wrote: Hi I'm rebuilding a site

RE: Tiles: a portal question

2003-01-28 Thread Friso De Jonge
the entire screen is refreshed also as far as i understand dumoulin is the creator of tiles. -Original Message- From: V. Cekvenich [mailto:[EMAIL PROTECTED]] Sent: 28 January 2003 13:18 To: [EMAIL PROTECTED] Subject: Re: Tiles: a portal question Marco Fabbri wrote: Hi all, I'm

RE: Flash+Struts how?

2003-01-28 Thread Assenza, Chris
I suspect the original poster was just having him/herself a little fun with the list using an anonymous email account knowing its history with the topic. In that case, while I hate to admit it, Mark's reply was probably quite apropos. =p -Chris -Original Message- From: Andrew Hill

RE: [AXIS4STRUTS]Generating XML from Struts JSP

2003-01-28 Thread Mike Oliver
Craig, Excellent! That leads to the not so trivial, for Axis4Struts to work as envisioned, the Axis stubs and WSDL will be generated from a class with at least one method similar to: (other overloaded methods probable) Public String StrutsExecute(String strutsURL,

Copying 'nested' properties from Dyna form to beans

2003-01-28 Thread Molitor, Stephen
What's the best way to copy 'nested' form property values to Java beans? For example, let's say I a 'Person' bean, which contains a nested 'Name' bean, like this: class Name { String getFirstName() {...} void setFirstName(String firstName) {...} String getLastName() {...} void

RE: [OT] Test

2003-01-28 Thread Jarnot Voytek Contr AU HQ/SC
Did you get that tagline from the Dilbert mission statement generator? Suddenly, I'm less worried about my job being outsourced overseas. -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: Murthy D [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January

RE: need help for struts - EJB

2003-01-28 Thread Mark Galbreath
You need a design patterns book. Do a search at Amazon - there are several very good ones. Also check out http://java.sun.com/blueprints/. Mark -Original Message- From: Buics [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 8:28 PM so you mean i'l just simply access my EJB

RE: Struts on iPlanet Web Server 6.0?

2003-01-28 Thread Mark Galbreath
If WebLogic 7.0 didn't meet your technical needs, you have bigger problems than iPlanet compatibility with Struts! Are you going to confine yourselves to non-J2EE technologies? Mark -Original Message- From: Trevor Morris [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 9:23 PM

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Mark Galbreath
Yeah, that happens all the time -Original Message- From: news [mailto:[EMAIL PROTECTED]] On Behalf Of V. Cekvenich Sent: Monday, January 27, 2003 9:35 PM To: [EMAIL PROTECTED] Subject: Re: [OT] Synchronizing Session Objects A users opens another browser session and your action takes

Design Patterns

2003-01-28 Thread alexj
My struts actions will made calls to my buisness delegates to invoke web service, what's the best to do, use a facade to mask the URI of my web service or may I didn't care and do that in my buisness delegate ? -- Alexandre Jaquet - -BEGIN GEEK CODE BLOCK- Version: 3.12 GCM d+ s: a--

Re: Blank screen when posting to DispatchAction

2003-01-28 Thread Steven Banks
I have seen the blank screen before. It ended up being the input parameter int Struts config was spelled wrong . The programmer who had the problem changed the input value to a global forward and it worked. Maybe someone out there could explain the input parameter for the action a lot better

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Andrew Hill
hehe my actions take a lot longer than a split second... -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 28 January 2003 22:43 To: 'Struts Users Mailing List' Subject: RE: [OT] Synchronizing Session Objects Yeah, that happens all the time

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Sri Sankaran
The one at http://marc.theaimsgroup.com/?l=struts-userm=99715571123697w=2 is little more than a year old but it's a good one. Sri -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 9:14 AM To: 'Struts Users Mailing List' Subject: RE: [OT]

Re: Struts Validator Debug output? What is it doing?

2003-01-28 Thread Evan Schnell
PILGRIM, Peter, FM wrote: There must be a better way! Is there anyway figure what the Struts validator is doing? Something like getting a log dump to stdout console. If there is any error then output is silent! Are you are still using the default logging configuration? The Struts

RE: Applet Struts

2003-01-28 Thread Richard Doust
Hi Nathalie, There are several products available that want to make it easier for developers to develop more sophisticated front-end clients to back-end J2EE type systems that aren't limited to the html controls that you're limited to with the browser, the ultimate consumer of the struts output. I

ProcessAction - Scaffold package

2003-01-28 Thread Senthivel U S
Greetings, We are using ProcessAction and Access Layer. Our Access Layer Component throws SQLException. If exception is thrown , it should be caught by BaseAction but that is not happening in my case. It gives java.sql.SQLException: Could not process (--our error message from stored

RE: Applet Struts

2003-01-28 Thread Mark Galbreath
I use applets to deliver Flash to the client. It melts the hard drive and blows the monitor. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 8:38 AM ...and theres always Flash! (hehe - just seeing if Mark's awake yet ;-) -- To

Re: need help for struts - EJB

2003-01-28 Thread Kevin . Bedell
In my book Struts Kick Start, I included a chapter on accessing EJB's including design notes, sample code and build scripts. The CD-Rom that comes with the book included copies of xdoclet, jboss and ant as well as all the example code. Kevin

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Andrew Hill
Mmm. That is a good one. Thanks for looking that up and posting it :-) -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 28 January 2003 23:00 To: Struts Users Mailing List Subject: RE: [OT] Synchronizing Session Objects The one at

JSP precompilation - how with Struts ?

2003-01-28 Thread Iris
Hello, I want to precompile my jsp to win time on the first loadings. I know there is a target jspc in ant but I don't know where to put the resulting classes in my war, and if there is something to declare in the file web.xml. Can someone help me ? Thanks, Iris PS: I use ant 1.5, struts

RE: Struts Validator Debug output? What is it doing?

2003-01-28 Thread PILGRIM, Peter, FM
-Original Message- From: Evan Schnell [mailto:[EMAIL PROTECTED]] PILGRIM, Peter, FM wrote: There must be a better way! Is there anyway figure what the Struts validator is doing? Something like getting a log dump to stdout console. If there is any error then output is

Re: bean:message backups to default message ressource with error

2003-01-28 Thread David Graham
This is a struts-user question so I'm forwarding over there... Why are you prefixing message keys with locales? AFAIK, you name your properties file with the locale prefix and the keys stay the same. David From: Jörg Maurer [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL

RE: getting values from session

2003-01-28 Thread acorona
Are you getting a Null pointer exception or is it that you are just not getting anything displayed? Your code seems to be fine...How are you setting the UserContainer into the session? Could you post the code you are using to set the ben in the session? -Original Message- From: Pani,

Re: [AXIS4STRUTS]Generating XML from Struts JSP

2003-01-28 Thread Kevin . Bedell
The XTags that are part of the Jakarta taglibs may be worth evaluating. http://jakarta.apache.org/taglibs/doc/xtags-doc/index.html Also, here's a link to a a pretty current article describing one method of generating XML responses from Struts. It looks like a good reference in general.

Re: Design Patterns

2003-01-28 Thread David Graham
I've always seen the business delegate and facade patterns as basically the same. You could read in the uri of the webservice from a file so it's configurable and put it in your facade. David From: alexj [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread James Turner
From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 9:14 AM To: 'Struts Users Mailing List' Subject: RE: [OT] Synchronizing Session Objects LISP boy is correct, and I brought this subject up about a year ago and Craig answered pretty definitively - try a

Re: Design Patterns

2003-01-28 Thread alexj
Ok I will do that. Thanks David. -- Alexandre Jaquet - -BEGIN GEEK CODE BLOCK- Version: 3.12 GCM d+ s: a-- C U*+ P L--- E--- W+++ N+++ o K w+ O M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X R* tv b DI--- D G++ e* h++ r% y* --END GEEK CODE BLOCK-- -

Re: Applet Struts

2003-01-28 Thread Puneet Agarwal
Well Well Well.. First thing even we plan to use applets client with struts. To be precise not Applet its Swing with the help of webstart. Mostly because we require some special screens that are simply not possible in HTML. Like we have certain electronic devices attached to the client machines

RE: Struts Validator Debug output? What is it doing?

2003-01-28 Thread PILGRIM, Peter, FM
-Original Message- From: PILGRIM, Peter, FM -Original Message- From: Evan Schnell [mailto:[EMAIL PROTECTED]] PILGRIM, Peter, FM wrote: There must be a better way! Is there anyway figure what the Struts validator is doing? Something like getting a log

Re: Struts on IPlanet Web server 6

2003-01-28 Thread Ka-Wai Chan
Hi Trevor We are currently using iPlanet WS 6 w/ struts b3. It works, with some tweaking of the class paths and stack sizes. We develop on Tomcat and then deploy to iPlanet. If you have configuration problems, I can help you out. Good luck Ka-Wai Chan -- To unsubscribe, e-mail:

Re: Struts on IPlanet Web server 6

2003-01-28 Thread ajTreece
I am in the process of deploying under iPlanet v6sp5. I would appreciate any guidelines, tricks, or tweaking you can make available. What specifically are you doing to class paths and stack sizes? Thanks, ajTreece Ka-Wai Chan wrote: Hi Trevor We are currently using iPlanet WS 6 w/ struts

Cannot find global ActionForward for

2003-01-28 Thread jmattucci
Im new to struts. Bought several books and now starting to put a simple program together. My web app simply contains one page and im trying to register the number of hits. Im getting the following error. I cant figure out why.If you require more info please let me know. Thank you all for your

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Mark Galbreath
I actually taught myself Scheme (the MIT version) on the Macintosh in the early 90s :-) -Original Message- From: James Turner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 10:35 AM LISP boy is correct, and I brought this subject up about a year ago and Craig

RE: Cannot find global ActionForward for

2003-01-28 Thread Jarnot Voytek Contr AU HQ/SC
the path in forward... doesn't match (case) the path in action... - is that a typo, or the source of your problem? -- Voytek Jarnot Quidquid latine dictum sit, altum viditur. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 10:06

RE: [OT] Synchronizing Session Objects

2003-01-28 Thread Chappell, Simon P
Not something to admit in public! Actually, I really enjoyed learning POP-11 back at university. Ahh, those were the days. -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 10:14 AM To: 'Struts Users Mailing List' Subject: RE: [OT]

Re: AW: Transforming a String to valid HTML encoding

2003-01-28 Thread Affan Qureshi
Hi, I was facing the same problem in displaying the copyright and trademark symbols. Did you find some solution for this? I shall be greatfeul if you can share you experience with me. What I did was I created a utility class which transforms special characters into their HTML encodings and also

RE: [AXIS4STRUTS]Generating XML from Struts JSP

2003-01-28 Thread Mike Oliver
Object Oriented Programmer Syndrome, aka OOPS. I forgot to say this is up on the web and you can play (not abuse please, it is my pipe/bandwidth) at: http://soap2k.appsaspeers.com:8080/struts-example/ Logon and enter your registration info and then go back to Edit Registration and change the

RE: Java Pet Store rewritten with Flash Remoting Front End

2003-01-28 Thread Haseltine, Celeste
Micael, My company does not use Flash remoting at this time, although we do use JRUN as our application server for our internal J2EE applications. The owner of this company cannot afford the costs of BEA Weblogic or IBM Websphere, and I prefer NOT to try to run Tomcat on a Windows

RE: Cannot find global ActionForward for

2003-01-28 Thread jmattucci
no its not a typo Jarnot Voytek Contr AU HQ/SC To:

Re: [OT] Synchronizing Session Objects

2003-01-28 Thread Jacob J. Hookom
LISP - Lots of InSignifigant Parens Prolog is where it's at :-) - Original Message - From: Chappell, Simon P [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, January 28, 2003 10:16 AM Subject: RE: [OT] Synchronizing Session Objects Not something to

RE: [OT] Obscure Programming Languages

2003-01-28 Thread Mark Galbreath
Close: http://www.paulgraham.com/jargon96.html I have the hard copy of this book - it's great! POP-11? -Original Message- From: Jacob J. Hookom [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:24 AM LISP - Lots of InSignifigant Parens Prolog is where it's at :-) -

if-then-else condition in validation xml

2003-01-28 Thread Dinesh Samson J
Greetings, Can we have something like an if-then-else block in validation.xml? What I am looking for is that, a. if nothing is entered in field A, then do not validate field B and field C b. if something is entered in field A, then check for (depends=required) for field B and field C can

[OT] Obscure Computer Languages

2003-01-28 Thread James Turner
From: Jacob J. Hookom [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:24 AM To: Struts Users Mailing List Subject: Re: [OT] Synchronizing Session Objects LISP - Lots of InSignifigant Parens Prolog is where it's at :-) Don't go there man... Not only was I once fluent in

ProcessAction - scaffold package

2003-01-28 Thread Senthivel U S
Greetings, Actually in the failure of one action mapping , i am forwarding to another action mapping which is not getting executed. (i.e if any sqlexception from component, it has to execute another action) Regards, Sen Greetings, We are using ProcessAction and Access Layer. Our Access Layer

JavaScript / struts submit problems

2003-01-28 Thread tbachta
Hello All, I am having a little problem that hopefully someone can help me with. I have a form that has a hidden field in it, I am not populating this hidden field on the page load but rather I am populating the value in a JavaScript function and then using the form.submit() in JavaScript to

Re: [OT] Obscure Computer Languages

2003-01-28 Thread jbaker
Wow. That takes me back. I still miss Algol (before they messed it up) and Simula. The PDP assemblers were awfully pretty. Joe Baker Director of Internet Communications Amnesty International USA 600 Pennsylvania Ave SE 5th Floor Washington, DC 20003 202-544-0200 x285

RE: [OT] Obscure Computer Languages

2003-01-28 Thread Chappell, Simon P
Hmmm, ok, let's dig into the memory here for the icky stuff: Forth POP-11/POPLOG Smalltalk RPG/400 There are a ton of others, but those are the weirdest. -Original Message- From: James Turner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 10:42 AM To: 'Struts Users Mailing

RE: if-then-else condition in validation xml

2003-01-28 Thread James Turner
-Original Message- From: Dinesh Samson J [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:37 AM To: [EMAIL PROTECTED] Subject: if-then-else condition in validation xml Greetings, Can we have something like an if-then-else block in validation.xml? What I am

RE: Struts Validator Debug output? What is it doing?

2003-01-28 Thread PILGRIM, Peter, FM
Is there anyone out there who is an expert on Struts validator? -- Peter Pilgrim, Struts/J2EE Consultant, RBoS FM, Risk IT Tel: +44 (0)207-375-4923 Visit our Internet site at http://www.rbsmarkets.com This e-mail is

RE: JavaScript / struts submit problems

2003-01-28 Thread Mei Zhu
In your jsp page, the hidden field should be: html:hidden property=xMLQueryString/ The first character of the property name should be lower case. Mei -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 10:49 AM To: [EMAIL PROTECTED]

RE: JavaScript / struts submit problems

2003-01-28 Thread Mei Zhu
Just to add another note, it may not work(you need to verify by looking at Java Bean spec) if you define your property name like xMLQueryString, but xmlQueryString will work. Mei -Original Message- From: Mei Zhu [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:06 AM To:

Re: Struts Validator Debug output? What is it doing?

2003-01-28 Thread Evan Schnell
PILGRIM, Peter, FM wrote: Cut the rubbish. Do you see your forms load from validator.xml on startup? You should see something like: 15633 [main] DEBUG - New match='form-validation/formset/form' 15643 [main] DEBUG - Fire begin() for

RE: Struts Validator Debug output? What is it doing?

2003-01-28 Thread PILGRIM, Peter, FM
-Original Message- From: PILGRIM, Peter, FM Is there anyone out there who is an expert on Struts validator? ---- Don't bother! Soy un Tonto mas grande de la Dia -- Peter Pilgrim, Struts/J2EE Consultant, RBoS FM, Risk IT Tel: +44 (0)207-375-4923

Re: Please review code for LookupDisptach using Image Buttons

2003-01-28 Thread Ashish Kulkarni
Hi, Did any one look at this code?? Ashish --- Ashish Kulkarni [EMAIL PROTECTED] wrote: Hi, I have a jsp with 2 image buttons, and i needed to forward the request to different jsp depending upon the image button clicked by the user, and I want to do it without using javascript ( I was using

RE: JavaScript / struts submit problems

2003-01-28 Thread Nelson, Laird
-Original Message- From: Mei Zhu [mailto:[EMAIL PROTECTED]] In your jsp page, the hidden field should be: html:hidden property=xMLQueryString/ The first character of the property name should be lower case. No; see

RE: [OT] Obscure Programming Languages

2003-01-28 Thread Kevin . Bedell
You mean PDP-11 the old DEC machines that ran RSX-11M? They were fun - if you enjoyed learning proprietary OS's and writing real-time control applications. Gosh I'm old.

logging

2003-01-28 Thread Damm, Gary
I've recently switched to struts 1.1-b3. My previous log configuration has stopped working and I'm wondering why. I'm using commons-logging with log4j. My previous commons-logging jar was Implementation-Version: 1.0.1 and my commons-logging.properties is as follows:

RE: [OT] Obscure Programming Languages

2003-01-28 Thread Chappell, Simon P
No, actually, I mean POP-11, one of the languages in the POPLOG environment. http://www.poplog.org/ http://www.cs.bham.ac.uk/research/poplog/freepoplog.html Simon -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:40 AM To: Struts

Problem using SSL with Struts, Tomcat 4.1.12 on IIS

2003-01-28 Thread Gogte, Sushrut
I am using Struts 1.0.2 with Tomcat 4.1.12 running on IIS 4.0 web server. In my application, I am using a template which inserts a navigation menu on the left hand side of the screen, using Struts. This menu is composed of links and images. When I run my application in non-secure mode, it is

Re: Flash+Struts how?

2003-01-28 Thread V. Cekvenich
Nothing wrong with Flash as View, in fact Flash is a good practice IMO (when used w/o Remoting or runtime costs). Javascript/DHTML is just OK. We try to remove navigation and vlidation (menu and validator) but still its a mess in a JSP. Applets are a bad practice, in my experience. JSF is not

RE: [OT] Obscure Programming Languages

2003-01-28 Thread Mike Oliver
Don't forget COBOL, RPG, SNOBOL, GW-BASIC and the days of drum memory, core memory and what will we ever do with more than 64k of memory. Or Windows in 640k RAM. 160k floppies, one for boot, one for programs and one for data on a single drive machine. Michael Oliver AppsAsPeers LLC 7391 S.

RE: [OT] Obscure Programming Languages

2003-01-28 Thread Mark Galbreath
Some odd British concoction, no doubt. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 12:50 PM To: Struts Users Mailing List Subject: RE: [OT] Obscure Programming Languages No, actually, I mean POP-11, one of the languages in the

logic:match

2003-01-28 Thread Denis Wang
Hello, all, There is something wrong with the following piece of code: logic:match name='userBean' property='userName' value=nested:write property='checkOutUserVO.userName'/ ... /logic:match I double-checked the nested:write works. nested:write property='checkOutUserVO.userName'/ if I change

Re: logic:match

2003-01-28 Thread David Graham
You can't use a tag as the input into another tag's attribute. David From: Denis Wang [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: logic:match Date: Tue, 28 Jan 2003 13:13:58 -0500 Hello, all, There is

application resource/ prop messages of org.apache.struts.util.PropertyMessageResource NEVER GET FILLED WITH DATA ?!?!?!

2003-01-28 Thread Jörg Maurer
Hi ! I am currently working on struts project with source code of struts 1.1 beta 3. As i was wondering why my texts aka message resource never get loaded, i followed the problem form Action Servlet PropetyMessageResource, where the property messages, being a HashMap IS NEVER FILLED with

RE: logic:match

2003-01-28 Thread Wendy Smoak
There is something wrong with the following piece of code: logic:match name='userBean' property='userName' value=nested:write property='checkOutUserVO.userName'/ ... /logic:match What error are you getting? I don't think you can put tags inside of tags like that. I ran into the same

Problem capturing text property using logic:iterate

2003-01-28 Thread Vinicius Boson
I´m having problem capturing data from an html created with the following code: The JSP file: bean:define id=week name=weekForm property=week/ logic:iterate id=item name=week property=days !-- LOOP -- tr td html:text name=item property=name_of_the_Day / * /td /tr

RE: Problem capturing text property using logic:iterate

2003-01-28 Thread Pani, Gourav
you haven't specified the value= in the tag. -Original Message- From: Vinicius Boson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 1:46 PM To: [EMAIL PROTECTED] Subject: Problem capturing text property using logic:iterate I´m having problem capturing data from an html

RE: JavaScript / struts submit problems

2003-01-28 Thread tbachta
Ok, so if the name is not the problem then what is? What do I need to do, or look at to fix this? Tim Bachta Information Technology MC 48

RE: JavaScript / struts submit problems

2003-01-28 Thread tbachta
Sorry forgot to add this code to the fray, here is the ActionForm class where I have the get and set methods private void setXMLQueryString(String sXML) { this.XMLQueryString = sXML; } public String getXMLQueryString() { return XMLQueryString; } Tim Bachta Information

  1   2   >