Cannot find any information on property X in bean of type Y

2001-01-19 Thread Steven Newton
I recently was getting a JasperException on page execution saying "Cannot find a method to read property 'X' in a bean of type 'Y'." I checked the tomcat-users archives and found mention of a message "Cannot find any information on property X in bean of type Y". Replies to that question were most

RE: admin user/password

2000-10-24 Thread Steven Newton
> What bugs me is that, if you enter a valid username/password > combination, > tomcat gives no indication that they're valid... it behaves > as though the > name/password are invalid. I would have expected that it > would come up with > a page that said that I didn't have the appropriate right

RE: Ctx( ): IOException in: R( + /tomcat-power.gif + null) socket w rite error

2000-12-12 Thread Steven Newton
> I am running tomcat 3.2 on NT. While trying to access > http://localhost/index.html I get the following errors: > > 2000-12-12 09:27:41 - Ctx( ): IOException in: R( + > /index.html + null) > socket write error (code=10053) > 2000-12-12 09:27:41 - Ctx( ): IOException in: R( + > /tomcat-pow

RE: Apache SOAP 2.0 w/Tomcat 3.2

2000-12-12 Thread Steven Newton
> I know that this must have come up before, but can any one tell me if > I can safely run Tomcat 3.2 with Apache SOAP 2.0 (latest version) Yes it works just fine, at least as far as running the demos included with the distribution. s

RE: webapps are useless toys?!

2000-12-18 Thread Steven Newton
> So assuming the site requires "single sign-on". And that there are > several segmentations of the site, each of which could > be handled by a different web-app: > > I'm getting the impression that I'm supposed to do some > kind of magic with the session cookie. Is it necessary > to persist al

RE: using xalan with Tomcat

2000-12-19 Thread Steven Newton
You can manually re-order to classpath to put xerces.jar before parser.jar. At least with 3.2, Tomcat adds the jars to its classpath in alphabetical order, so you can renamed parser.jar to zparser.jar and it will be loaded last.  I've been using this trick for a while.  BTW does anyone know

RE: runtime.exec() problem

2000-12-20 Thread Steven Newton
> > Hello. Does anyone know why this call never completes? > It used to work under Jserv 1.1.1 / blackdown jdk_117_v3 > > // Send the order in an email to the sales admin person > // > String command = > ("/home/httpd/cgi-bin/ike_send_submitted_order.cgi " + > userId + " " + userSessionId + " "

RE: WAP Gateway - Chunked HTTP Responses and CRLF

2000-12-20 Thread Steven Newton
> > I have noticed a "problem" with Tomcat JSP generation on Unix > systems. We > are currently attempting to generate dynamic WML via JSP > which we then send > to a WAP Gateway for compilation into bytecode. While testing > our JSP pages > via the Nokia SDK we noticed no problems. When we st

RE: IDE

2000-12-22 Thread Steven Newton
> -Original Message- > From: Christian Wenz [mailto:[EMAIL PROTECTED]] > chew wrote: > > > I have followed the article "Apache Tomcat Servlet > JavaServer Pages Development with JBuilder Foundation" > > written by Debbie Carson amnd Ken Chan. > > > where can I find this article? Is it av

RE: IDE

2000-12-26 Thread Steven Newton
> interested to hear > if somebody successfully had set up JB4 with Tomcat 3.2 or 4. > I followed the directions there pretty much as given, for JBuilder 4/Tomcat 3.2.1 on win2k. Ignore the Tomcat bundled with JB4 (it's a nice thought but it doesn't support configuring webapps very well), just f

RE: java.net.SocketException: Too many open files

2000-12-27 Thread Steven Newton
Actually it's quite easy on linux 2.2.x kernels: echo 32768 > /proc/sys/fs/file-max echo 65536 > /proc/sys/fs/inode-max increases the system limit on open files, and ulimit -n 32768 increases the current process' limit. See http://www.kegel.com/c10k.html#limits.filehandles and the multiple terr

RE: Setting properties outside of the WAR

2001-01-03 Thread Steven Newton
> server's I've seen offer some sort of "deployment tool" that > lets you perform > customizations like this as you deploy an application. > Off the top of my head, it seems that the right way to do it would be to specify a properties extension mechanism with more expressiveness than the simple

RE: Session problem with WAP protocol

2001-01-17 Thread Steven Newton
> -Original Message- > From: Grzegorz Skorupa [mailto:[EMAIL PROTECTED]] > > But you can't be sure that all wap browsers do. > If you would like to prepare 100% available service, you must use url > rewriting. IMHO. > phone.com WAP browsers using the UP.link gateway insert a header

RE: Session problem with WAP protocol

2001-01-17 Thread Steven Newton
> phone.com WAP browsers using the UP.link gateway insert a header > "x-up-subno" that is unique per device. Instead of writing out Oh I forgot to also mention the Mobile Subscriber ISDN Number used by some phones works similarly via the X_Network_Info HTTP header. s -