I replied about the same time Zack replied, didn't know he was taking care of
this.
From you recent reply, by compilation do you mean JSPC pre-compilation? Or on
the fly compile?
Because I do get this error with on the fly compile (didn't try JSPC):
org.apache.jasper.JasperException: Unable to
Xuekun Hu wrote:
Zack, thanks for replying.
Xuekun,
The reason why you are probably getting a file size thats one byte
larger than expected is that the JSP processor doesn't remove any
whitespace after it includes the other pages content. For example, <%@
include page="request.getParameter("f
Hi, Rashmi, thanks for replying.
On 1/15/07, Rashmi Rubdi <[EMAIL PROTECTED]> wrote:
I recommend SDN's JSP forum : http://forum.java.sun.com/forum.jspa?forumID=45
And for JSP Tag Libraries this mailing list :
http://jakarta.apache.org/taglibs/#MailingLists
Great. Thanks again. :-)
1) I tes
Zack, thanks for replying.
Xuekun,
The reason why you are probably getting a file size thats one byte
larger than expected is that the JSP processor doesn't remove any
whitespace after it includes the other pages content. For example, <%@
include page="request.getParameter("f") %> is going to
I recommend SDN's JSP forum : http://forum.java.sun.com/forum.jspa?forumID=45
And for JSP Tag Libraries this mailing list :
http://jakarta.apache.org/taglibs/#MailingLists
1) I tested your jsp: include, both files returned the same size when tested
with Firefox's page size extension tool. I got
Xuekun Hu wrote:
Hi,
Sorry for the off-topic questions, since I didn't find a good forum to
discuss JSP programming. :-). If you have any recommendations, I would
be very appreciated.
I have two questions.
1. I wrote a test.jsp to test dynamically return a static file from
the request paramete
Hi,
Sorry for the off-topic questions, since I didn't find a good forum to
discuss JSP programming. :-). If you have any recommendations, I would
be very appreciated.
I have two questions.
1. I wrote a test.jsp to test dynamically return a static file from
the request parameter.
--- test.js
hui zhang wrote:
Zack Grafton wrote:
hui zhang wrote:
Zack Grafton wrote:
hui zhang wrote:
Hi Everybody,
Now I am trying to launch an external application, for example,
"top" ,in my web application, and killing it by PID after a while.
But when I execute Runtime.getRuntime.exec("top") in m
hui zhang wrote:
Zack Grafton wrote:
hui zhang wrote:
Zack Grafton wrote:
hui zhang wrote:
Hi Everybody,
Now I am trying to launch an external application, for example,
"top" ,in my web application, and killing it by PID after a while.
But when I execute Runtime.getRuntime.exec("top") in m
Zack Grafton wrote:
hui zhang wrote:
Zack Grafton wrote:
hui zhang wrote:
Hi Everybody,
Now I am trying to launch an external application, for example,
"top" ,in my web application, and killing it by PID after a while.
But when I execute Runtime.getRuntime.exec("top") in my JSP page or
Ser
Hi all,
I've used tomcat for quite a long time but not until last week did I notice
the APR stuff. Since I don't quite understand a few things, I want to ask
your folks.
First, how can I use APR on a windows install version of tomcat 5.5.x. I've
found several tutorials about setting APR, all of
hui zhang wrote:
Zack Grafton wrote:
hui zhang wrote:
Hi Everybody,
Now I am trying to launch an external application, for example,
"top" ,in my web application, and killing it by PID after a while.
But when I execute Runtime.getRuntime.exec("top") in my JSP page or
Servlet, Tomcat is stuck
"hui zhang said"
>
> Zack Grafton wrote:
> > hui zhang wrote:
> >> Hi Everybody,
> >>
> >> Now I am trying to launch an external application, for example, "top"
> >> ,in my web application, and killing it by PID after a while. But when
> >> I execute Runtime.getRuntime.exec("top") in my JSP page
Zack Grafton wrote:
hui zhang wrote:
Hi Everybody,
Now I am trying to launch an external application, for example, "top"
,in my web application, and killing it by PID after a while. But when
I execute Runtime.getRuntime.exec("top") in my JSP page or Servlet,
Tomcat is stuck in that page and
Instead of relative URLs, it's better to use context relative URLs.
With context relative URLs if the page containing the context relative links is
moved to a different folder the code won't have to change. Context relative
URLs always begin with / and start from the root folder of your app, for
Have you map the AppletLogin to the servlet path at web.xml ?
if you haven't dont forget in doing so ^^
On 1/15/07, Teh Noranis Mohd Aris <[EMAIL PROTECTED]> wrote:
Hi,
I'm doing applet-to-servlet programs. I've put the applet in directory
c:\jakarta-tomcat-4.1.31\webapps\ROOT\application\Log
hui zhang wrote:
Hi Everybody,
Now I am trying to launch an external application, for example, "top"
,in my web application, and killing it by PID after a while. But when
I execute Runtime.getRuntime.exec("top") in my JSP page or Servlet,
Tomcat is stuck in that page and do not display anythi
Hi Everybody,
Now I am trying to launch an external application, for example, "top"
,in my web application, and killing it by PID after a while. But when I
execute Runtime.getRuntime.exec("top") in my JSP page or Servlet, Tomcat
is stuck in that page and do not display anything because it can
Hi,
I'm doing applet-to-servlet programs. I've put the applet in directory
c:\jakarta-tomcat-4.1.31\webapps\ROOT\application\LoginApplet. I've put the
servlet in directory
c:\jakarta-tomcat-4.1.31\webapps\application\WEB-INF\classes\AppletLogin. When
I run it in the web browser using
http://
Note that if you allow the browser to refer to directories without the
trailing slash, you will break the handling of relative URLs on those
pages. When the user clicks on a link with a relative URL, the browser
has to convert that to an absolute URL. If the browser doesn't know
that the current p
I think you can customize it with URL Rewriting Filters.
Google URLRewriteFilter to find pre-built packages, or you can write your own.
-Rashmi
- Original Message
From: Tim Funk <[EMAIL PROTECTED]>
To: Tomcat Users List
Sent: Sunday, January 14, 2007 12:26:39 PM
Subject: Re: Trailing
Why are you using UTF8 in stead on UTF16. With UTF8 you have to escape
all the characters, right?
I was on a project for a Japanese site once and we used UTF16. It was a
lot easier to work with.
Eclipse will show it to you just like normal text(Chinese). All you have
to do is set the encoding to
Caldarale, Charles R wrote:
> > From: Pulkit Singhal [mailto:[EMAIL PROTECTED]
> > Subject: Re: How to display chinese chars in JSP / encoding
> > UTF-8 without <@page encoding> tag
> >
> > I think you can set the -DFileEncoding flag or something
> > to be UTF-8 in the java options of the script yo
There is no way to customize this behavior other than overriding the
default servlet with your own implementation.
-Tim
lightbulb432 wrote:
I noticed that Tomcat adds a trailing slash automatically when it detects
that the requested resource points to an existing directory. While I know
that A
What about HttpServletRequest.getRequestURI()?
-Tim
[EMAIL PROTECTED] wrote:
Is it possible to get the unparsed URI from inside the service method
of an HttpServlet? I am using tomcat 5.5.9.
I notice that the HttpServletRequest parameter to this method is
- implemented by org.apache.catalina.
> From: Pulkit Singhal [mailto:[EMAIL PROTECTED]
> Subject: Re: How to display chinese chars in JSP / encoding
> UTF-8 without <@page encoding> tag
>
> I think you can set the -DFileEncoding flag or something
> to be UTF-8 in the java options of the script you use to
> start tomcat.
It's -Dfile
I think you can set the -DFileEncoding flag or something to be UTF-8 in the
java options of the script you use to start tomcat.
On 1/11/07, PATTUS, Jean-Philippe <[EMAIL PROTECTED]> wrote:
Hello the list,
i'm trying to display chinese chars in my web application.
I have managed to display thes
LambdaProbe has all of the state information which I have been seeking for years
To one and all please look at http://lambdaprobe.org and view Cluster, Status,
System Information as well as a plethora of categories too numerous
to list here..I am heartened by threads/ClassLoader metrics availabili
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Subject: Re: yet another SSL question
>
> Is it possible to have multiple different Login pages in one webapp?
Yes; look at section 12.8 of the Servlet spec:
http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html
Use different se
1.. Choose Tools > Options.
2.. Click Fonts & Colors in the left pane of the Options window.
3.. In the right pane, click the Annotations tab.
4.. Select a Category.
5.. Select foreground and background colors from the drop-down list.
To specify a color not contained in the list, c
Hi All!
For the Visual Web Pack in Netbeans 5.5 : Please does anyone know how to change
the TabSet header color from the default blueish to something else, preferrably
gray. and the Table component and Table Column component headers too.
Million thanx in advance!
lekan
-
Hello there,
I am using the Apache Commons Digester to load an XML config file via
a servlet with init params...
I keep getting this error when I start Tomcat 5.5.9 and have deployed
the war file via my build script:
INFO: Deploying web application archive coffeebreak.war
2007-01-14 03:10
32 matches
Mail list logo