Re: Problems serving PDF to Netscape browsers

2002-05-09 Thread greyson . smith
Have you tried it from a machine other than your own? Just to isolate whether or not there's a problem with your browser. I've served PDFs created with FOP to Netscape 4 browsers using tomcat 3

Re: help plz urgent

2002-05-06 Thread greyson . smith
How are you reading the data in the servlet? # Lalit Nagpal #

Re: jsp and VB

2001-11-15 Thread greyson . smith
What are you trying to do? Are you trying to tie the two systems together, or are you instead trying to develop a core set of functions that both systems can use?

Re: Determining if Tomcat is running

2001-07-02 Thread greyson . smith
Probably not foolproof, but off the top of my head: ps -aux --cols 500 |grep $TOMCAT_HOME Fredrik Liden

Re: Problem with cookie

2001-06-29 Thread greyson . smith
Have you looked at the message header (not really sure if that's the real name) to see if any cookies are coming back from the server? You can telnet into the server and port and do a get to see if the program is trying to send a cookie. It could be that the cookie is expiring as it arrives.

What is the value of auto-assigning beans?

2001-05-30 Thread greyson . smith
This question may be asked out of ignorance, but it seems to me that using the tag: jsp:useBean id=MyBean scope=session class=Test.MyBean / jsp:setProperty name=MyBean property=* / to assign values from form fields to the bean is of limited use. Let's assume that there are 2 text fields, A and

RE: What is the value of auto-assigning beans?

2001-05-30 Thread greyson . smith
Yes, I considered that, but I need the values to persist. The only data in the bean that needs to change in the bean is the data that corresponds to the form fields. Perhaps the answer is to have several beans that expire every request, but if you need to persist the data, you still end up

Was there an answer to this? (setProperty and repeating form fields)

2001-05-29 Thread greyson . smith
I find myself in a situation similar to this, and I wondered if there was ever an answer to the question. In order to set my bean properties based on an incoming (POST'ed) HTML form, I'm using the following construct in a JSP page: jsp:useBean id=ord class=ord.OrderBean scope=request

Re: Tomcat install on Cobalt.

2001-04-27 Thread greyson . smith
I've never installed tomcat on a cobalt server, but I'll take a crack at your question. You need to have the JAVA_HOME environment variable pointed to the place you installed the jdk. So if your jdk is in /usr/local/jdk1.3, then your JAVA_HOME variable would equal /usr/local/jdk1.3. And the

How to get the working directory?

2001-04-26 Thread greyson . smith
Apologies if this is off topic, but I was able to rationalize the post. How do you get the working directory of a jsp or servlet -- short of hard-coding the path? The system property seems to point to where tomcat was started, which makes a great deal of sense, but I'm not sure what other

RE: xalan and xerces

2001-04-18 Thread greyson . smith
Yes, that worked. Thanks. "Samson, Lyndon [IT]" To: "'[EMAIL

xalan and xerces

2001-04-17 Thread greyson . smith
I know this has been asked before, so I went to the archives. I was a bit unsure as to what the answer was, though. Would someone be willing to restate how to get xalan and xerces working for Tomcat 3.1? I have a class that works fine outside of Tomcat, but when I parse inside of Tomcat or use

Re: Database Pooling

2001-03-15 Thread greyson . smith
] yahoo.com cc: (bcc: Greyson Smith/CCMG/CVG) Subject: Database Pooling 15-03-01 12:14

RE: Mod_jk error (worker.ajp12.host=localhost)

2001-03-12 Thread greyson . smith
[EMAIL PROTECTED] tudio.com cc: (bcc: Greyson Smith/CCMG/CVG) Subject: RE: Mod_jk error (worker.ajp12.host=localhost) 09-0

RE: Mod_jk error

2001-03-07 Thread greyson . smith
. "Simmons, Donald" To: [EMAIL PROTECTED] joe.simmons@cc: (bcc: Greyson Smit

Re: mailinglist vs newsgroup

2001-01-02 Thread greyson . smith
Molen" To: [EMAIL PROTECTED] [EMAIL PROTECTED] cc: (bcc: Greyson Smith/CCMG/CVG) om Subject: mail

Re: How to use JDBC in JSP servlet

2001-01-02 Thread greyson . smith
Smith" sat-guru@homTo: [EMAIL PROTECTED] e.com cc: (bcc: Greyson Smith/CCMG/CVG) Subject: Re: How to use JDBC in JSP

Question about Buffering

2000-12-07 Thread greyson . smith
I have a simple jsp that turns off buffering, and writes to the output stream, then loops for 30 seconds and writes again to the output stream (source at the bottom). My expectation was that, since there was no buffering that as I wrote to the stream, the result would print to the browser as