RE: FormBean array properties

2003-01-16 Thread Wendy Smoak
> I have a multiple select html element named "countries" in a form. > How should my FormBean getters and setters be? > public String[] getCountries() > { return this.countries; } > public String getCountries(int index) > { return this.countries[index]; } > public void setCountries(St

Struts application

2003-01-16 Thread EMilitante
I applied struts in the simplest form and received the below error message. This application resides on a Weblogic 6.0 server. Scenario: It involves two JSP's, two form classes and an action class. The Index.jsp is loaded first where you key in the username and click the ok submit button. It take

Re: struts servlet-mapping

2003-01-16 Thread geoff
If you want your action to be available from http://localhost:8080/ppp/layout/test.do then you need to make a mapping like this: Regards, Geoff Bennett Multitask Consulting Pty Ltd Level 8, 20 Loftus Street, Sydney NSW 2000 Australia Tel +61 2 9252 1462Fax +61 2 9252 4636 www.multitask

Re: Struts app design for multiple client types

2003-01-16 Thread Dan Jacobs
Hi Kris, Unless your application data starts off as XML in the first place, and assuming you're a Java programmer, I recommend using JPlates (http://www.jplates.com) for multi-target transformations. JPlates is a fully object-oriented template language, and I've used it very sucessfully both

application of Struts

2003-01-16 Thread EMilitante
I tried to use the s <[WebAppServletContext(6821348,wrox-struts,/wrox-struts)] Servlet failed with Exception java.lang.NullPointerException CONFIDENTIAL MATERIAL. This electronic message contains information from Princeton eCom Corporation, is confidential and may be privileged. It is inte

RE: ActionErrors getting lost between action and JSP

2003-01-16 Thread Parnell, Giles (AU - Sydney)
Hi there Giri I seem to have got this working... although not sure why it's doing what it is. I've included my jsp. I basically traced though the SaveErrors method and saw that it appears to be changing the name of the actionErrors object on the request. - In my action i save it with the

struts servlet-mapping

2003-01-16 Thread Cagan Senturk
Hello, I am using Struts 1.1-b2 and Tomcat4.1.18. My web app is deployed under a context named 'ppp'. In web.xml, url-pattern for struts action servlet is set to '*.do': action *.do And in struts-config.xml, I have the following element setup: type="com.emir

FormBean array properties

2003-01-16 Thread guigar
Hi I have a multiple select html element named "countries" in a form. How should my FormBean getters and setters be? public String[] getCountries() { return this.countries; } public String getCountries(int index) { return this.countries[index]; } public void setCountries(String

Re: (Another test) App Modules and multiple tiles configuration files...

2003-01-16 Thread ajTreece
Thanks Cedric... I'm using 01/16 nightly build. My web server is Tomcat v4.1.18. Here is the output when I re-deploy the webapp: [INFO] TilesRequestProcessor - -Tiles definition factory found for request processor ''. [INFO] TilesRequestProcessor - -Tiles definition factory found for request

Re: regular expressions

2003-01-16 Thread Alex
try... $regex = '[a-zA-Z]*([(].*?[)] [a-zA-Z]+)'; On Thu, 16 Jan 2003, Gilbert, Antoine wrote: > Hi > > Sorry about this out of topic message... > > I have a problem with some regular expressions processing... > > String input = "(1+f(8,8)) >pe,concat(concat(CO_LONGITUDE,';'),CO_LAT

Re: The best way for learning struts (stupid question)

2003-01-16 Thread Joyce Gu
Hello, Do you have the web address and we can refer to when you start your training session? I have worked on Strut for seven months now. I learned by myself. However, I would like to have a formal training and I really like that the idea that you will give home work too. Thanks At 08:31 AM 1/1

regular expressions

2003-01-16 Thread Gilbert, Antoine
Hi Sorry about this out of topic message... I have a problem with some regular expressions processing... String input = "(1+f(8,8)) pe,concat(concat(CO_LONGITUDE,';'),CO_LATITUDE) UNIQUEID,CO_LONGITUDE,CO_LATITUDE,count(CO_LONGITUDE) QTE, ant"; String regex = "[a-zA-Z

RE: server side validation

2003-01-16 Thread Mark Galbreath
I am probably missing something here because this is too obvious, but try this: http://jakarta.apache.org/struts/userGuide/dev_validator.html Mark -Original Message- From: Ginger Cheng [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 5:00 PM As a matter of fact, I did try v

RE: [OT] RE: A Struts Haiku

2003-01-16 Thread Durham David Cntr 805CSS/SCBE
You mark that frame an 8 and you're entering a world of pain. > -Original Message- > From: Joe Barefoot [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 3:27 PM > To: Struts Users Mailing List > Subject: RE: [OT] RE: A Struts Haiku > > > Mark it zero! > > > -Original Me

Re: Is Server Side Validation Working in Struts 1.1 Beta 3?

2003-01-16 Thread Rick Reumann
On Thursday, January 16, 2003, 5:01:28 PM, John wrote: HJ> Has anyone been able to get server side validation to work with HJ> beta 3? Seems to be working fine for me. -- Rick mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: For additional commands, e-mail:

Re[2]: server side validation

2003-01-16 Thread Rick Reumann
On Thursday, January 16, 2003, 5:00:19 PM, Ginger wrote: GC> As a matter of fact, I did try version1.0 from that one and it did GC> not work out for me because the init method in validateForm GC> requires a filed that doesn't exist. When you install the latest struts it comes with all the valid

RE: Is Server Side Validation Working in Struts 1.1 Beta 3?

2003-01-16 Thread Raible, Matt
I've used it and it works fine. What you have below should be sufficient for disabling client-side validation. An even easier way is to turn off Javascript on your browser (easy in Mozilla or Phoenix, harder in IE). One think to make sure of is that the "input" value is set on your action-mappin

RE: Struts app design for multiple client types

2003-01-16 Thread Jacob Hookom
| -Original Message- | From: Kris Schneider [mailto:[EMAIL PROTECTED]] | Sent: Thursday, January 16, 2003 3:58 PM | To: Struts Users Mailing List | Subject: RE: Struts app design for multiple client types | | Any take on having the filter perform the transform vs. JSTL (see original | exam

RE: Is Server Side Validation Working in Struts 1.1 Beta 3?

2003-01-16 Thread Kevin Peters
You can also remove the tag as this inserts the JavaScript for client-side validation. -Original Message- From: Hohlen, John [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 5:01 PM To: Struts-User (E-mail) Subject: Is Server Side Validation Working in Struts 1.1 Beta 3? Has

RE: server side validation

2003-01-16 Thread Ginger Cheng
As a matter of fact, I did try version1.0 from that one and it did not work out for me because the init method in validateForm requires a filed that doesn't exist. At 04:45 PM 1/16/2003 -0500, you wrote: http://home.earthlink.net/~dwinterfeldt/ -- Read the very first sentence. One word of advis

Is Server Side Validation Working in Struts 1.1 Beta 3?

2003-01-16 Thread Hohlen, John
Has anyone been able to get server side validation to work with beta 3? My team is using client-side (JavaScript) validation, but I decided to test the server-side validation to make sure it works (as a safety net). However, when I did this, server-side validation does not appear to throw any err

RE: Struts app design for multiple client types

2003-01-16 Thread Pani, Gourav
Stxx might be a model you could consider as a solution as well. http://www.oroad.com/opencode/stxx/ -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:40 PM To: Struts Users Mailing List Subject: RE: Struts app design for multiple client

RE: Indexed Properties and Population

2003-01-16 Thread Raible, Matt
I think what I'll do is to create a new method called getChildrenSize() that does what Mark suggests below - then I'll put this as a hidden field on my form. Since all my form's contents are dumped into a JSP (and gone), I've lost the size of the children - unless I save it as a hidden field, or c

RE: Struts app design for multiple client types

2003-01-16 Thread Pani, Gourav
Actually someone else on the team was looking into JSTL but I got the XSL based model up and running much faster so we went with it. This is how the model works. The forms and action objects are controlled by struts-config.xml. The Action object interracts with the Business Logic layer in comb

RE: Struts app design for multiple client types

2003-01-16 Thread Kris Schneider
Any take on having the filter perform the transform vs. JSTL (see original example)? Seems like you ought to be able to work up a caching approach with JSTL as well. How 'bout the fact that by creating XML you give up some of the Struts tags? Quoting Jacob Hookom <[EMAIL PROTECTED]>: > If you ar

Re: Indexed Properties and Population

2003-01-16 Thread Kris Schneider
Just make sure you've got a way to cap the max number you auto-create... Quoting David Morris <[EMAIL PROTECTED]>: > Matt, > > You really don't need to know how many there are, just create them > on demand. You can intercept gets and auto-extend the underlying > Collection. One implementation

RE: Indexed Properties and Population

2003-01-16 Thread Mark Galbreath
int elements = children.size() ? Where are you defining this method? -Original Message- From: Raible, Matt [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:31 PM If I have: private ArrayList children; public void setChildren(int index, ChildForm childForm) { this

Re: Indexed Properties and Population

2003-01-16 Thread David Morris
Matt, You really don't need to know how many there are, just create them on demand. You can intercept gets and auto-extend the underlying Collection. One implementation that should work based on your example as long as you are willing to create a child factory is in the commons collection pack

RE: server side validation

2003-01-16 Thread Alvarado, Juan (c)
http://home.earthlink.net/~dwinterfeldt/ -- Read the very first sentence. One word of advise: Before you post to this list, make sure that you do some research into what you are looking for and that you are not looking to be spoon fed the answers to your questions. If you bother to do a search on

RE: Struts app design for multiple client types

2003-01-16 Thread Kris Schneider
Was JSTL an option that you considered and then discarded? If so, I'd be interested in hearing why. How did you duplicate the functionality provided by the Struts html and nested tags (forms, URLs, indexed properties, tokens)? Did this cause the stylesheets to be overly complex? Quoting "Pani, Go

RE: [OT] RE: A Struts Haiku

2003-01-16 Thread Joe Barefoot
Mark it zero! > -Original Message- > From: Durham David Cntr 805CSS/SCBE > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 6:45 AM > To: Struts Users Mailing List > Subject: [OT] RE: A Struts Haiku > > > looks like he is right on with 5-7-5 > > http://www.dada.at/geoff/ha

Indexed Properties and Population

2003-01-16 Thread Raible, Matt
I have an ArrayList on a form... let's call the form Parent and the ArrayList Children. If I have: private ArrayList children; public void setChildren(int index, ChildForm childForm) { this.children.set(index, childForm); } Then saving my form results in a NPE for BeanUtils.copyProperti

RE: Struts app design for multiple client types

2003-01-16 Thread Jacob Hookom
If you are dealing with two platforms, I would say use filters. Request processes would go like such: www.mysite.com/public/viewAll.html -->Filter catches request, wraps the response and forwards to: www.mysite.com/viewAll.do?format=html&forward=xml -->Struts generates beans and forwards to JSP f

server side validation

2003-01-16 Thread Ginger Cheng
Hello, can some tell me what package (from where) to download to make the server side validation works? for struts-1.1. Thank you. ginger -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Struts app design for multiple client types

2003-01-16 Thread Pani, Gourav
We developed an application using Struts Model 2X where instead of using JSPs we used XSLs. We wrote an XMLSerializer that serialized all Objects into XML DOM and then parsed it with XSLs to provide the necessary results. There were no apparent performance issues and I am sure such a solution will

RE: Struts app design for multiple client types

2003-01-16 Thread Raible, Matt
You *might* be able to use XHTML and let everything through for you HTML clients, and then you'd only require a XSL stylesheet for the VoiceXML client. Since XHTML *is* XML - this might work? HTH, Matt -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Thursday, Ja

Struts app design for multiple client types

2003-01-16 Thread Kris Schneider
I'm in the process of designing a single web app to support two different client types: HTML and VoiceXML. Yes, yes, I know, XSLT is just the ticket. That was my initial take at least, but I'd like to bounce some things off the Struts hive before committing to it. To add some context, I'll be deplo

set-property from action tag chances?

2003-01-16 Thread Adolfo Miguelez
Hi all, currently there is a nice feature for action configuration, in which is possible to send parameters to the Action through the ActionMapping. It uses the tag. By example: type="com.out.control.DoQueryAction" className="com.out.control.DoQueryActionMapping"> And, by extending th

Re: action input

2003-01-16 Thread Giri Alwar
Yes. The "input" attribute can point to JSPs as well as actions. Make sure the input attribute begins with the "/" character ("/mypage.jsp" or "/myAction2.do") - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 16, 2003 1:58 PM Subject: action in

RE: action input

2003-01-16 Thread Mark Galbreath
Try it and see. input is the application-relative path to the input form to which control should be returned if a validation error is encountered and you have to specify the name attribute of the form bean associated with the action. Mark -Original Message- From: [EMAIL PROTECTED] [mailt

RE: complexed structures/objects

2003-01-16 Thread Jacob Hookom
| -Original Message- | From: news [mailto:[EMAIL PROTECTED]] On Behalf Of V. Cekvenich | Sent: Thursday, January 16, 2003 10:34 AM | To: [EMAIL PROTECTED] | Subject: Re: complexed structures/objects | | Check out nested tags for starters. No! JSTL, is the best way to go and quickly be

RE: action input

2003-01-16 Thread Phase Web and Multimedia
yes Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 12:58 PM To: [EMAIL PROTECTED] Subject: action input Can I se

RE: [Validator] Validating only when the element has a property

2003-01-16 Thread Phase Web and Multimedia
Great Thanks, I am using 1.1b3 but I did not update my validation-rules.xml. I will replace that with the 1.1b3 version and see if it works. When I place minlenght alone it still validates the input. But if i use "integer,minlength" it works. kinda wierd huh? Anyways, thanks for the help. Brandon

action input

2003-01-16 Thread pqin
Can I set input="myAction2.do"? Regards, PQ "This Guy Thinks He Knows Everything" "This Guy Thinks He Knows What He Is Doing"

Re: [Validator] Validating only when the element has a property

2003-01-16 Thread Giri Alwar
Yes. In Struts 1.1b2, all built-in rules (except the required rule) had a depends attribute which was set to "required" in the validator-rules.xml file. With this setup, when you used a minlength rule without explicitly specifying the required rule and the user did not enter anything, the required

Re: [OT] rewards for persevering and becoming [WAS: RE: The bestway for learning struts (stupid question)]

2003-01-16 Thread Vincent Stoessel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Maybe true in many cases but ask yourself this question: In an economy as bad as this one is, are you still employed/employable? Andrew Hill wrote: Yes, that list is very long. But the rewards for persevering and becoming an expert are very great :

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread Robert Leland
From: Harinath DP [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 6:02 AM To: Struts-User Subject: Struts taglibs - Is data grid possible Hi, I need to implement Data grid using Struts. Can anybody guide me to how about doing this? Do we have any taglib, which can do this? This i

Re: ActionErrors getting lost between action and JSP

2003-01-16 Thread Giri Alwar
This was what I was looking for as well when I requested that he provide the action mapping (specifically the forward element) in my reply below. - Original Message - From: "James Mitchell" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, January 16,

How to access the current action mapping from the jsp

2003-01-16 Thread Garth Ramakant Patil
i'm trying to build a dynamic navigation widget in a header.jsp that will be included in all my display jsps. i have elected not to use tiles. in order to correctly render the navigation, i need to know what the current action forward is that is being executed. how can i access that from the jsp pa

Re: Using validate() along with commons-validator

2003-01-16 Thread Giri Alwar
In your example below, you need to call super.validate(...) in the overridden validate method so that the validate method in ValidatorForm is called. The validate method in ValidatorForm is the one that does the form validation based on validation.xml and validator-rules.xml. Here is an example of

Re: ActionErrors getting lost between action and JSP

2003-01-16 Thread James Mitchell
Sorry if this was mentioned, but are you using redirect="true" for that action-mapping? -- James Mitchell - Original Message - From: "Giri Alwar" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, January 16, 2003 1:55 PM Subject: Re: ActionErrors

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
Vincent, Yes, I am currently trying it out with Struts 1.02. If it works out, I will utilize the DBForms tab library extensively in our new application. I don't know DBForms will work with Struts 1.1Beta. By the way, I believe Struts is incorporated into DBForms, but don't quote me on that.

Re: ActionErrors getting lost between action and JSP

2003-01-16 Thread Giri Alwar
See my comments below. - Original Message - From: "Parnell, Giles (AU - Sydney)" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 10:03 PM Subject: RE: ActionErrors getting lost between action and JSP > Hi there Giri > > Thanks f

RE: The best way for learning struts (stupid question)

2003-01-16 Thread Mark Galbreath
Yep - the product (BizFlo) I was just hired to use for EAI for clients all over North America uses Tomcat 4.x as its container: www.handysoft.com Mark -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 12:47 PM On Thu, 16 Jan 2003,

Re: bean:write - No getter method for property

2003-01-16 Thread TK
llya, Let me first confess that I am newbie to Struts! I use RowSetDynaClass (rsdc) to copy the contents of a ResultSet. and rsdc.getRows() returns a List of DynaBeans. I need to iterate this list now. Since the list contains DynaBean-s, I believe you dont need to write getter methods .. Or

Re: Digester getting recursive tag types.

2003-01-16 Thread Craig R. McClanahan
On Thu, 16 Jan 2003, Simon Kelly wrote: > Date: Thu, 16 Jan 2003 14:52:11 +0100 > From: Simon Kelly <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: Digester getting recursive tag types. > > Hi all, > > I

Using validate() along with commons-validator

2003-01-16 Thread Pani, Gourav
I am not using DynaForms currently. If I stay with my Form beans extending ValidatorForm, is there any way to call the validate() method and use the validator.xml at the same time. For example, I have the following Form bean. public class LoginForm extends ValidatorForm implements Glob

RE: bean:write - No getter method for property

2003-01-16 Thread Sterin, Ilya
Can we see the class, what happens is that bean:write will call employee.getEmpname so if you don't have the getEmpname function is your bean class, that explains it. Ilya -Original Message- From: TK To: 'Struts Users Mailing List' Sent: 1/16/03 10:22 AM Subject: bean:write - No getter m

Re: The best way for learning struts (stupid question)

2003-01-16 Thread Craig R. McClanahan
On Thu, 16 Jan 2003, joni santoso wrote: > Date: Thu, 16 Jan 2003 14:13:38 +0700 > From: joni santoso <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: Re: The best way for learning struts (stupid question

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread James Mitchell
I was referring to server-side web-based component development (dll). BTW, you don't create a GUI 'inside' of a JavaBean (and I used the wrong term, I meant to say class), you code to an API/Framework, so in that sense, its the same thing. -- James Mitchell - Original Message - From:

Re: numberFormat

2003-01-16 Thread V. Cekvenich
Formating could be done in the view, for example using JSTL format tag: http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html Gabrovsky, Ivaylo wrote: You can find it in JDK API http://java.sun.com/j2se/1.4.1/docs/api/ java.text.NumberFormat -Original Message- From: [EMAIL PROT

Re: [tiles] suggested importAttribute improvement

2003-01-16 Thread Cedric Dumoulin
Hi, The can already import attributes one by one, allowing to import only the relevant attributes: If you want to import an attribute under another name, you can use What you want to do is to import all the attribute under a map. This make sense when used with jstl. Can you fill an enh

bean:write - No getter method for property

2003-01-16 Thread TK
Hi, Can someone tell what is wrong in this code. The write tag gives 'No getter method for property empname in bean... ' Below code works fine. I just use employeebean.get method and it seems to work fine. <%=employee.get("empname")%> I am using org.apache.commons

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
James, There are two type of COM components in the MS library, those with a visual interface, and those without (just plain dll's). Yes, I do equate a COM component that contains a visual interface to a Java Applet. Both run inside of a "container", and both have a visual interface by which you

RE: Action Servlet

2003-01-16 Thread James Childers
Amazing what can be accomplished by actually familiarizing yourself with the technologies you use. I think I'm just going to throw that ESR essay on asking smart questions into my sig. -= J http://www.tuxedo.org/~esr/faqs/smart-questions.html > -Original Message- > From: Mark Galbreat

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread Vincent Stoessel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Wow, I learn something new every day on this mailing list. Dbforms looks kinda cool. Has anyone used it with struts? Haseltine, Celeste wrote: You might want to check into using DBForms tag library instead of writing an applet. You can get more inf

RE: Specifying Application Root in links

2003-01-16 Thread Durham David Cntr 805CSS/SCBE
I had a similar problem that I solved by removing the tag. It seems like you need to take a look in that direction. > -Original Message- > From: Pani, Gourav [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 10:47 AM > To: '[EMAIL PROTECTED]' > Subject: Specifying Applicatio

RE: Action Servlet

2003-01-16 Thread Mark Galbreath
this.getServlet() -Original Message- From: JONATHAN PHILIP HOLLOWAY [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 11:46 AM Could somebody tell me if it's possible to get a handle on the action servlet from an action class and if so how this is actually done. -- To unsub

RE: [OT] COM vs CORBA

2003-01-16 Thread Mark Galbreath
DCOM/COM+ is closer in functionality, but it is totally proprietary whereas CORBA/RMI are open standards. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 11:31 AM COM is similar to CORBA/RMI but not CORBA, am I right? Regards, P

Re: complexed structures/objects

2003-01-16 Thread V. Cekvenich
Check out nested tags for starters. Michael Mashian wrote: guys. can someone please help with retrieving data from complexed structures/objects using tags ? ---

Specifying Application Root in links

2003-01-16 Thread Pani, Gourav
I am using Struts 1.1 with Resin 2.1.5 and have encountered the following problem. Whenever I try to link to an action mapping specified in my struts-config.xml file within a JSP, I have to specify the application root in the path. For example, the following is my setup in struts-config.xml.

Action Servlet

2003-01-16 Thread JONATHAN PHILIP HOLLOWAY
Could somebody tell me if it's possible to get a handle on the action servlet from an action class and if so how this is actually done. Many thanks in advance, Jonathan Holloway. *-* Jonathan Holloway, Dept. Of Computer Science,

RE: [OT] RE: Not spam...I swear--

2003-01-16 Thread Mark Galbreath
Ahhh...that explains a lot. You are a fisherman. Thank goodness they don't look like you (http://simonpeter.com/spm/biographies.html)! And what's with that limey flag being bigger than the Star-Spangled Banner? But I sense Craig is going to squash this thread any time now -Original Mes

RE: ATTN: Java Developers

2003-01-16 Thread Mark Galbreath
MQ Series may have been the second relase (M$ was the first), but BizFlo is the best (www.handysoft.com). Mark -Original Message- From: Aileen Cardenas [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 11:28 AM P.S. I also have a position for a Java developer who has experien

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Aileen Cardenas
-Original Message- From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 7:41 AM To: 'Struts Users Mailing List' Subject: RE: Struts taglibs - Is data grid possible You must be coming from a VB background, as a DataGrid and a MSFlexGrid are both MS COM com

RE: complexed structures/objects

2003-01-16 Thread Mark Galbreath
Sure: http://www.tuxedo.org/~esr/faqs/smart-questions.html Mark -Original Message- From: Michael Mashian [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 11:19 AM can someone please help with retrieving data from complexed structures/objects using tags ? -- To unsubscribe

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread pqin
COM is similar to CORBA/RMI but not CORBA, am I right? Regards, PQ "This Guy Thinks He Knows Everything" "This Guy Thinks He Knows What He Is Doing" -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: January 16, 2003 11:15 AM To: 'Struts Users Mailing List' Su

RE: [OT] RE: Not spam...I swear--

2003-01-16 Thread Chappell, Simon P
http://simonpeter.com/family/2003/01jan/P1051973.JPG :-) >-Original Message- >From: Mark Galbreath [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 16, 2003 10:05 AM >To: 'Struts Users Mailing List' >Subject: RE: [OT] RE: Not spam...I swear-- > > >Maybe, but who would date you? > >-

ATTN: Java Developers

2003-01-16 Thread Aileen Cardenas
I will be unsubscribing, but may be back. Please keep my contact information for future reference, and please refer your friends. We are a national company and work with Fortune 500 companies. I look forward to hearing from you! Cheers! Aileen P.S. I also have a position for a Java developer w

RE: complexed structures/objects

2003-01-16 Thread pqin
Dot notation always works. For example public class ClassA { private ClassB b public class ClassB { private String c in struts, logic or bean:write, you refer a.b.c Regards, PQ "This Guy Thinks He Knows Everything" "This Guy Thinks He Knows What He Is Doing" -Origina

RE: numberFormat

2003-01-16 Thread pqin
That means struts supports all the java number formats. Great. Regards, PQ "This Guy Thinks He Knows Everything" "This Guy Thinks He Knows What He Is Doing" -Original Message- From: Gabrovsky, Ivaylo [mailto:[EMAIL PROTECTED]] Sent: January 16, 2003 11:21 AM To: [EMAIL PROTECTED] S

RE: numberFormat

2003-01-16 Thread Gabrovsky, Ivaylo
You can find it in JDK API http://java.sun.com/j2se/1.4.1/docs/api/ java.text.NumberFormat -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 11:11 AM To: [EMAIL PROTECTED] Subject: RE: numberFormat Is there a struts documentation that

complexed structures/objects

2003-01-16 Thread Michael Mashian
guys. can someone please help with retrieving data from complexed structures/objects using tags ? - The information contained in this message is proprietary of Amdocs, protected from disclosure, and may be privil

RE: numberFormat

2003-01-16 Thread Gemes Tibor
2003-01-16, cs keltezéssel [EMAIL PROTECTED] ezt írta: > Is there a struts documentation that explains what those formats are? C'mon, it is java. java.text.NumberFormat, DecimalFormatSymbols and friends. Tib -- To unsubscribe, e-mail: For additional commands, e-mail

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Mark Galbreath
I come from a VB/ASP background and COM has no similarity to an applet. COM is server-side technology and applets are client-side technology. The closest similarity between Java and M$ would be JSP = ASP/VB Script. Also, it is easy to auto-download the correct JVM to IE if an appropriate JVM is

Re: Important Struts Question

2003-01-16 Thread V. Cekvenich
Regarding jobs: Consider one could write a vertical killer app. in Struts and become an employer (not an employee). It's kind of working out for me. The side benefit is you become the PHB. ("Everyone must use MVC") (Maybe we can get Robin Givens in here?) .V Haseltine, Celeste wrote: But at le

RE: [OT] RE: Not spam...I swear--

2003-01-16 Thread Durham David Cntr 805CSS/SCBE
That was a pun. > -Original Message- > From: Mark Galbreath [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 10:05 AM > To: 'Struts Users Mailing List' > Subject: RE: [OT] RE: Not spam...I swear-- > > > Maybe, but who would date you? > > -Original Message- > From: C

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Mark Galbreath
I come from a VB/ASP b -Original Message- From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:41 AM To: 'Struts Users Mailing List' Subject: RE: Struts taglibs - Is data grid possible You must be coming from a VB background, as a DataGrid and a MSFle

RE: numberFormat

2003-01-16 Thread pqin
Is there a struts documentation that explains what those formats are? Regards, PQ "This Guy Thinks He Knows Everything" "This Guy Thinks He Knows What He Is Doing" -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: January 16, 2003 10:13 AM To: 'Struts Users M

Re: Struts taglibs - Is data grid possible

2003-01-16 Thread James Mitchell
> The equivalent of a COM component in Java is an applet. Where did you get that idea? The Java version of a COM component is like using a JavaBean in a jsp page (jsp:useBean). The M$ version of using an Applet in a web page iswell.using an Applet in a web page. -- James Mitchell -

RE: Struts taglibs - Is data grid possible

2003-01-16 Thread Haseltine, Celeste
You must be coming from a VB background, as a DataGrid and a MSFlexGrid are both MS COM components. The equivalent of a COM component in Java is an applet. But I caution you on using applets in a web/browser based application UNLESS you are writing an application for intranet (read: internal comp

RE: [OT] RE: Not spam...I swear--

2003-01-16 Thread Chappell, Simon P
He didn't say I was any good, just up to date! :-P -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 5:39 AM To: 'Struts Users Mailing List' Subject: RE: [OT] RE: Not spam...I swear-- So much for your school's credentials -Origin

RE: problem with messagesPresent?

2003-01-16 Thread Andy Kriger
Ignore this message. I found the problem and I'm ashamed (missing logic taglib declaration). -a -Original Message- From: Andy Kriger [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:44 To: Struts Users Mailing List Subject: problem with messagesPresent? I'm using to test f

problem with messagesPresent?

2003-01-16 Thread Andy Kriger
I'm using to test for messages when displaying errors (standard stuff described in the docs). There are form errors However, I am seeing 'There are form errors' on my page even when there are no ActionMessages or ActionErrors (like w

RE: Important Struts Question

2003-01-16 Thread Haseltine, Celeste
But at least that means the job market must be picking up in some areas of the US, if she has to go to a user list to find talent. Here in the Dallas/Ft. Worth, Tx area, the market is still pretty bad, since most of the telecom companies (WorldCom, Alcatel, Northern Telecom), and a number of dot.c

Re: Struts Modules

2003-01-16 Thread Gemes Tibor
2003. január 16. 16:11 dátummal Christoph Rooms ezt írtad: > Hi, > > I have my Action Servlet to react with the servlet mapping "/do/*". > > I have the feeling this does not work when I am using Struts Modules. > Anyone who got modules working with this servlet mapping ? http://jakarta.apache.org

RE: changing ActionForm to be a Java interface

2003-01-16 Thread Sri Sankaran
The logic validate method is so closely coupled with the form-bean properties that it wouldn't help to look at a sample. What I do in form-bean-X's validate() is nothing like the validate() for form-bean-Y. If you still want to look at sample code you should be able to find it in the sample ap

RE: Struts Modules

2003-01-16 Thread Raible, Matt
Nope - I tried with no success. -Original Message- From: Christoph Rooms [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 8:12 AM To: [EMAIL PROTECTED] Subject: Struts Modules Hi, I have my Action Servlet to react with the servlet mapping "/do/*". I have the feeling this do

RE: ScanMail Message: To Sender, sensitive content found and action taken.

2003-01-16 Thread Durham David Cntr 805CSS/SCBE
Maybe it was the giving a shit about the rules part. > -Original Message- > From: Mark Galbreath [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 9:10 AM > To: struts > Subject: FW: ScanMail Message: To Sender, sensitive content found and > action taken. > > > Apparently, "H

RE: [OT] RE: Not spam...I swear--

2003-01-16 Thread Mark Galbreath
Don't believe it! The bloody limey doesn't even drink beer!! *gasp* -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:19 AM Lands' End is interested in hiring J2EE developers. I know of one opening, there may be more. The main benef

  1   2   >