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
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.
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
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
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
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
>
&
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 :)
>
>
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
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
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
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
&
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
>
>
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
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?
>
> =
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());
/
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
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
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
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
19 matches
Mail list logo