case sensitive property names ??

2002-01-13 Thread Paradis, André
Hi, i had the following case where another process calls an action in my application with a parameter in url named A. like: .../actions/process?A=1UNAME=andre I coded a form bean with a getA/setA pair, but it never gets called. if I use a in the call to the action, it works. however,

Re: case sensitive property names ??

2002-01-13 Thread Arron Bates
This has to do with the bean spec. And what you say is right. If you use all uppercase, it will leave the first letter alone, otherwise it will uppercase the first letter. And this would include your a example. Arron. Paradis, André wrote: Hi, i had the following case where another