Re: jsp & javascript

2002-08-26 Thread Walter Meyer
Not to be an ass, but what if you write and applet but they disable java? Does your company have any type of browser rules? There's only so much hand holding that you can should be expected to do. "If you make it idiot proof, someone will make a better idiot." I'm not sure exactly what you're tr

Re: Java Application as a NT Service

2002-07-31 Thread Walter Meyer
The tomcat.exe that is distibuted with the Tomcat binary will run a java program as a service. From a command prompt, run "%CATALINA_HOME%\bin\tomcat -help" for more info. I've been working on a graphical installer for it. If you're interested, I can post a link to it.

Re: Tomcat NT Service

2002-07-24 Thread Walter Meyer
The bug was fixed in 1.3.1. You have to start the service with the -Xrs argument to the jvm. For more info, type "java -X" at a command prompt and look for the -Xrs line. If you're going to switch away from the tomcat.exe, I recommend JNT. http://www.eworksmart.com/JNT/ -- Wa

Re: XML parsing in a Tomcat3.2.3 world

2002-07-16 Thread Walter Meyer
Thanks, Hans. I've obviously lost my mind. Not sure why I thought that. Walt Hans Bergsten <[EMAIL PROTECTED]> wrote: > Walter Meyer wrote: > > My understanding is that there are two JSTL 1.0 releases. Sun's is > JSP > > 1.1 compliant and Apache&#x

Re: XML parsing in a Tomcat3.2.3 world

2002-07-16 Thread Walter Meyer
My understanding is that there are two JSTL 1.0 releases. Sun's is JSP 1.1 compliant and Apache's is JSP 1.2 compliant. http://java.sun.com/products/jsp/taglibraries.html http://jakarta.apache.org/taglibs/index.html Walt "Gare, Tref" <[EMAIL PROTECTED]> wrote: > Thanks Joel and Shawn for t

Re: java and tomcat stability

2002-06-26 Thread Walter Meyer
lable in the later versions are > worth > using now... > > Thanks for your help! > > -Original Message- > From: Walter Meyer [mailto:[EMAIL PROTECTED]] > Sent: Thursday, 27 June 2002 2:13 AM > To: [EMAIL PROTECTED] > Subject: Re: java and tomcat stability > &

Re: java and tomcat stability

2002-06-26 Thread Walter Meyer
hs. The live production servers are actually already there but > the dev > ones are not. This is where we will be deploying the new environment > for > testing etc. (also looking into struts as a framework) > > Sorry about the OS detail, I was only just told myself :) > >

Re: java and tomcat stability

2002-06-26 Thread Walter Meyer
ere but > the dev > > ones are not. This is where we will be deploying the new environment > for > > testing etc. (also looking into struts as a framework) > > > > Sorry about the OS detail, I was only just told myself :) > > > > brendan > > > &g

Re: A very new game

2002-06-25 Thread Walter Meyer
The mime-type is: image/tiff Isn't tif a binary format? You can't generate binary files from JSP. -- Walter Meyer http://www.ThatWaltGuy.com - web [EMAIL PROTECTED] - email (303) 949-8369 - cell Atal Bihari Upadhyay <[EMAIL PROTECTED]> wrote: > I have jsp page where

Re: JSP Tomcat for developers

2002-06-23 Thread Walter Meyer
Are you sure this is a browser issue? Have you tried holding down the "shift" key while you click reload in the browser? This forces the browser to reload the document rather than using the cached version. If you're using <%@ include file="... to include files in Tomcat, modifying the included fi

Re: Benchmark Tools

2002-06-09 Thread Walter Meyer
You might try JMeter. http://jakarta.apache.org/jmeter/index.html -- Walter Meyer http://www.ThatWaltGuy.com - web [EMAIL PROTECTED] - email (303) 949-8369 - cell techhead4life <[EMAIL PROTECTED]> wrote: > Does anyone know any good benchmark tools to test your applications &

Re: How to send mail from JSP?

2002-05-04 Thread Walter Meyer
What kind of email? text message? HTML mail? with text attachments? with binary attachments? Murali Mohan <[EMAIL PROTECTED]> wrote: > Hai, > > What is the easy way to send mail from JSP? > > Thanks in advance, > Murali > >

Re: Dreamweaver MX (announced today) adds JSP custom tag library

2002-05-02 Thread Walter Meyer
Anyone know which JSP versions they're going to support? I don't see anything on their website. "M. Simms" <[EMAIL PROTECTED]> wrote: > This is typical of Macro. > they listen to NO ONEand have this "know it all" attitudeso > California-like. > > We told them about the terrible l

Re: Tomcat Installation Question

2002-04-02 Thread Walter Meyer
What do the logs show? Anything? David <[EMAIL PROTECTED]> wrote: > I just installed Tomcat 4.0 on Windows 2000. > The install found the working Java2 JDK 1.3.1 fine and Apache 1.3 runs > fine. > But the Start Tomcat Service just hangs. > Did I miss something? > > =

Re: Email attachment

2002-04-02 Thread Walter Meyer
Assuming that you're attaching a binary file public boolean sendTheEmail() { boolean messageSent = true; try { //Get the system properties Properties properties = new Properties(); //Set the mail server properties.put("mail.host", getHost()); /

Re: Weblogic Connection Pooling !! (Urgent)

2001-08-13 Thread Walter Meyer
You don't really explain the problem you're having, but if the connection pool if filling up, you should make sure that you're closing database connections in your code. Abhishek Vishwakarma <[EMAIL PROTECTED]> wrote: > Placed At : > > > > Hi a

Re: Tomcat + JavaMail

2001-03-29 Thread Walter Meyer
You'll need access to an SMTP server. Your hosting provider should have one you can use, or you might be able to use one provided by your ISP. I have some example code at http://www.thatwaltguy.com/src/twg/beans/email It isn't well commented at this point, but it has been tested against an Excha

Re: JSP + weblogic

2001-03-29 Thread Walter Meyer
Have you enabled JSP in the weblogic.properties file? # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # WEBLOGIC JSP PROPERTIES # # Sets up automatic page compilation for JSP. Adjust init args for # directory locations and uncom

Re: JSP equals problem ???

2001-03-13 Thread Walter Meyer
I think it's because you aren't initializing flag with anything, so if you don't receive "flag" in the query string it stays null. (I haven't had my coffee yet, so I could be way off.) Try this and see if it works... String flag = null; if (request.getParameter("flag") !=null) { flag = (String)r