Container
Of course the mysql driver is copied into $CATALINA_BASE/lib.
Has the JNDI initialization changed between tomcat 8.0.0-RC10 and 8.0.1?
Regards,
Christian
-
To unsubscribe, e-mail: users-unsubscr...
xtBindings.isClassLoaderBound() - both return false.
In tomcat 8.0.0-RC10 ContextBindings.isThreadBound() returns true and the name
resolution succeeds.
Maybe this directs to the cause of the problem.
Regards,
Christian
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
e.boot.registry.
> classloading.internal.ClassLoaderServiceImpl.withTccl(ClassLoaderServiceImpl.java:397)
Great pointer! You're right, I use hibernate 4.3.
I followed your suggestion an asked at hibernate forums.
https://forum.hibernate.org/viewtopic.php?f=1&t=
There is already a hibernate issue on this bug
(https://hibernate.atlassian.net/browse/HHH-8818).
Regards,
Christian
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h
gards,
Christian
[1] https://tomcat.apache.org/tomcat-8.0-doc/jdbc-pool.html
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
my case it wasn't systemd killing tomcat but jsvc. By default jsvc waits
only 10 seconds. After configuring
SERVICE_START_WAIT_TIME=90
in setenv.sh, everything is fine now.
Thanks for your heads up.
Regards
Christian
-
To
odule implementing org.apache.juli.logging.Log and
org.apache.juli.logging.LogFactory?
Regards
Christian
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
"main" java.lang.NoClassDefFoundError:
org/apache/juli/logging/LogFactory
This message results from the attempt to load the logger into
org.apache.catalina.startup.ContextConfig's static log field.
Just to prevent misunderstandings: I'm using tomcat-embed-core 8.5.3.
Regards
Christian
[1] a
On 29.06.2016 18:34, Christian wrote:
On 29.06.2016 17:54, Mark Thomas wrote:
Those just wrap java.util.logging so follow the instructions (from
log4j2) to redirect that to log4j2.
Mark
Thank you for your quick reply.
That's what I did already[1], but it still results in an exce
application itself and its management site. Both
parts should run at the context root, at different domains. The application
needs a shared (spring-)context in which the
application's beans are stored.
Regards,
Christian
---
Regards,
Christian
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
Mark,
On 28.06.2015 19:58, Mark Eggers wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Christian,
On 6/28/2015 9:01 AM, Christian wrote:
Hello all,
is it somehow possible to create a web application with multiple
servlets that are registered to different domains for the same url
paths
André,
On 28.06.2015 23:11, André Warnier wrote:
Christian wrote:
Mark,
On 28.06.2015 19:58, Mark Eggers wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Christian,
On 6/28/2015 9:01 AM, Christian wrote:
Hello all,
is it somehow possible to create a web application with multiple
André,
On 29.06.2015 12:15, André Warnier wrote:
Christian wrote:
André,
On 28.06.2015 23:11, André Warnier wrote:
Christian wrote:
Mark,
On 28.06.2015 19:58, Mark Eggers wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Christian,
On 6/28/2015 9:01 AM, Christian wrote:
Hello all
Chris,
thanks for your brief description of the different options.
On 30.06.2015 19:38, Christopher Schultz wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Christian,
On 6/28/15 12:01 PM, Christian wrote:
is it somehow possible to create a web application with multiple
servlets that
anyone?
Christian Andersson wrote:
> Hi there, I have a small problem that I'. hoping that you can help me solve.
>
> I want to be able to run tomcat on a server that we have available at a
> hosting firm.
>
> I can get tomcat up and running on it witohut problem, as l
;why"? Why are the session ids from the
rewritten url and the cookie different? What am I missing?
Christian
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mai
ation with a 2-level path is to
put it's Context inside /conf/server.xml.
Hence an application with a 2-level context path cannot be hot-deployed by
touching it's WEB-INF/web.xml
Am I right? Or have I misunderstood?
br. Christian Surlykke
--
Tirsdag 10 oktober 2006 22:54 skrev Caldarale, Charles R:
>
> Not true. Name the file containing your elements like this:
> conf/[engine]/[host]/salg#netbutikken.xml
>
> The pound sign serves as the path component delimiter.
Great! Thanks a lot.
br. Chr
ot;%7E" is the URL-encoded "~", but the users shouldn't have
to enter that manually...
What is doing this and how can I fix it?
--
Christian Rudh
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I forgot to mention that I am using Tomcat through Apache and mod_jk.
Christian Rudh wrote:
> Hi
>
> I have set up so all users on my server can use Tomcat from their home
> directories. They access servlets through
> "domain/~user/java/servlet/TestServlet" and it wor
Hello out there,
I want to build a servelt which access a database. To avoid
race-conditions and to realize synchronous access, I decited to make a
"Singe Thread" Servlet. But Eclipse told me that this is no longer a
usable code.
So what can I do else?
Thank you...
Gruss
e any alternative for such purposes?
Gruss Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
HttpServletRequest.
I tried it this way:
String mystring = req.getParameter("Objekt");
Document mydoc = mystring.? <- no method found
I thought there was a method anyway. What can I do here?
Thank you and...
Gr
ydoc = mystring.? <--- and now?
Thank you...
Gruss Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Duan, Nick schrieb:
Don't forget type casting the object.
String mystring = req.getAttribute("Object").toString();
Document mydoc = mystring.?
Casting from String to JDOM doesn't work!!!
So which way you prefer?
Thank you
uot;single threaded" servlet.
This servlets does nothing but to access the database.
Gruss Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
to JDOM again.
I just thought that's the way. So if there is a way to send JDOM-objects
directly, I will choose it ;-)
Gruss Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
().getAttribute("jdom_object);
Frode Halvorsen
My only question now is, after I wrote this object, somewhere any
servelt on that container can access on to it, how I can call the other
servlet to start and process? With an UR
roblem finding a class. Hmmm but maybe tomcat.
Anyway I send this mail away.
Gruss Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
cause of this exception.
Gruss Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
ervlet.service(HttpServlet.java:740)
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
BUT, when I do this in just one servlet ( creating a JDOM-object and put
it into this Tamino-Object ) it works!!!
Where ist the problem?
Thank you.
Gruss Christian
if you just want to do it for this file, just add the filename instead
of the *, for example
jsp
/path/file
in your web.xml
this has worked for me, when I've done it for files in the main path
anyway, but I suppose it will work for other parts also..
/Christian Ande
where the catalina.out
file is..
now the question I have is now, how can I here setup jsvc so that it
uses logrotation, I've searched the net 8google, commons daemon) but not
been able to get a satisfying answer, but perheps the commons-daemon
folk in their mailing list knows more and I
I had this problem also and if you need to seperate the 2
webapplications on different ports you need to define 2 services in
server.xml, like this.
...
...
/Christian Andersson
Anna Krajewska wrote:
Hi
I wonder is it possible with
referring to Java system properties, but it's not clear if
that's what they are or not. Does anyone know?
Thanks!
Christian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
C and
Tomcat D. I have noticed that the JkWorkersFile directive cant be used
per vhost, but rather in the main apache configuration context, is there
any solution to work this out with vhosts, besides running 2 different
apache instances?
Thanks in advance,
Cheers
Chri
Thanks for the help, its working now ;)
Cheers
Christian
Ryan McDonald wrote:
apache + mod_jk, but I'd need 2 sets of worker.properties, one per
each virtual host, ie, virtual host 1 would forward requests to
Tomcat A and Tomcat B, and virtual host 2, would follow the request
p.xml file stays in place
during a redeploy? Is there a chance to redeploy even over a slow link without
tomcat trying to expand an unfinished archive?
Kinnd regards / Mit freundlichen Grüßen
Christian Aust
Development mySAP Human Resources
file?
The other issue remaining is Tomcat trying to deploy an unfinished war file.
Kind regards,
- Christian
> -Original Message-
> From: Kevin Klinemeier [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, March 21, 2006 9:44 PM
> To: Tomcat Users List
> Subject: Re: Redeploying w
x27;s different documentation about this.
2) Can I increase logging somehow, to see what's going on inside the SSL
factory/connector?
Any help is appreciated...
Kind regards
Christian Aust
Development mySAP Human Resources
Pecaso Deutschland
Im Breitspiel 5 - 69126 Heidelberg - Germany
Pho
war file under META-INF/context.xml would mean to produce
different war files for each deployment server. That's why it's annoying that
tomcat keeps deleting those manually edited files from it's configuration. Kind
regards,
- Christian
> -Original Message-
> Fro
d.
I'd like to propose that startup logging should include a line about APR being
activated or not. Kind regards and thank you,
- Christian
> -Original Message-
> From: Markus Schönhaber [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 23, 2006 9:39 AM
> To: Tomcat Users L
Hi,
is it possible to set values in server.xml to something referencing a variable?
Like in ANT build files, where I could do
Kind regards,
Christian Aust
This email has been scanned for all viruses by the MessageLabs
Please help, my production server is down because of this mess
I've been successfully using various version of Tomcat for serveral years
with the same certificate... all worked well.
The last server I was using was 5.0.28... which kept crashing every day!
Looking at the log files did not giv
hi,
if you have a lot of different webapps with the same third party libs in
the WEB-INF/lib folder it might help if you move them to the shared/lib
folder. i recommend to put only the third party libs there, who are
definitely the same for all webapps, for example jdbc-driver and similar
thi
JDK 1.5 (AMD 64-bit) had been installed for several months already with
JAVA_HOME configured correctly.
Jeach!
On 6/6/06, Bob Hall <[EMAIL PROTECTED]> wrote:
--- Christian Jean <[EMAIL PROTECTED]> wrote:
> I've been successfully using various version of
> Tomcat for se
Here is the result for 'jakarta-tomcat-5.0.28/conf/server.xml':
wrote:
In both tomcat/conf directories do a
grep 'port=' server.xml
Regards
Andrew
On 06/06/2006, at 4:25 PM, Christian Jean wrote:
> JDK 1.5 (AMD 64-bit) had been installed for severa
8080
change port 8443 to 18443
Regards
Andrew
On 06/06/2006, at 4:39 PM, Christian Jean wrote:
> Here is the result for 'jakarta-tomcat-5.0.28/conf/server.xml':
>
>
>
> Here is the result for 'apache-tomcat-5.5.17/conf/server.xml':
>
>
eously.
Thanks,
Jeach!
On 6/6/06, Grant Johnson <[EMAIL PROTECTED]> wrote:
I am not an expert but
Both tomcat's look like they are trying to "do stuff" on ports 8005,
and connector ports 8080 and 8443.
What if you stopped both tomcat's and started one. Does t
The problem whith PermGen space also occurs when I redeploy too often in a
short amount of time. Does that point in any direction?
it points to the "class loader not released-problem" or at least to a
"class loader not released immediately-problem".
some more infos:
http://opensource.atlassi
In regards to my original problem sent a few hours ago, if someone could
test the following, it would be greatly appreciated...
1. If you have a version of Tomcat 5.0.28 running on ports 8080 and 8443
using a valid (signed) certificate and NOT running as root.
2. Make sure that the above both res
s beeing compiled as a 32bit executable
but java is a 64bit executable..
I've tried reading/changing more stuff to get it working, but sofar I
have been unable to do so.
/Christian Andersson
-
To start a new topic, e-mail:
Is there a work around? Or is it a Bug?
I using Tomcat 5.5.17 on Gentoo charset is ISO-8859-1.
Thanks for any advice!
Christian
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
F
What I have tried is: encode the String by encodeURI. But then I've Problems
with my German Characters (ÄÖÜ).
Maybe you have some more suggestions.
Many thanks in advance
Christian
> For example with:
>
> http://localhost/myapp/index.jsp?test=test&test2=%u2013test2&t
hi,
have a look at your tomcat-users.xml file in "%TOMCAT_HOME%/conf".
There should be a role named "manager" and a user for this role like the
following...
chris
Am Thu, 9 Nov 2006 22:16:31 -0800, schrieb Ernie Ho:
> Hi,
>
> Thanks for the prompt reply.
>
> 1) I cannot locate the "RUNN
Cordialement,
Christian Mennequin
Barclays IRCB / DI
183 avenue Daumesnil 75575 Paris Cedex 12
Phone : 0033 (0)1.55.78.43.05
Email : [EMAIL PROTECTED]
"robert lazarski" <[EMAIL PROTECTED]>
09/01/2007 21:49
Veuillez répondre à
"Tomcat Users List"
A
"Tomcat
Cordialement,
Christian Mennequin
Barclays IRCB / DI
183 avenue Daumesnil 75575 Paris Cedex 12
Phone : 0033 (0)1.55.78.43.05
Email : [EMAIL PROTECTED]
Rainer Jung <[EMAIL PROTECTED]>
09/01/2007 21:58
Veuillez répondre à
"Tomcat Users List"
A
Tomcat Users List
cc
Obj
Cordialement,
Christian Mennequin
Barclays IRCB / DI
183 avenue Daumesnil 75575 Paris Cedex 12
Phone : 0033 (0)1.55.78.43.05
Email : [EMAIL PROTECTED]
"Leon Rosenberg" <[EMAIL PROTECTED]>
09/01/2007 22:04
Veuillez répondre à
"Tomcat Users List"
A
"T
Cordialement,
Christian Mennequin
Barclays IRCB / DI
183 avenue Daumesnil 75575 Paris Cedex 12
Phone : 0033 (0)1.55.78.43.05
Email : [EMAIL PROTECTED]
Christopher Schultz <[EMAIL PROTECTED]>
09/01/2007 22:09
Veuillez répondre à
"Tomcat Users List"
A
Tomcat Users List
c
Cordialement,
Christian Mennequin
Barclays IRCB / DI
183 avenue Daumesnil 75575 Paris Cedex 12
Phone : 0033 (0)1.55.78.43.05
Email : [EMAIL PROTECTED]
"Leon Rosenberg" <[EMAIL PROTECTED]>
09/01/2007 23:51
Veuillez répondre à
"Tomcat Users List"
A
"Tomcat
Hi,
I need to bind objects using JNDI in my servlet running on apache tomcat
. Since I'm new to the JNDI topic, I did a lot of reading the last few
days and got mixed up a little. The tomcat documentation says that the
initialContext is read-only, but then I found the hint to a solution
in the
I have a similar question. I would like to know the path to the tomcat home
directory so that I can store a file there, which won't be deleted when
reploying. I want to use this as an alternative to storing some values in a
database.
Thanks,
Max
- Original Message -
From: "David Delbecq"
Hi,
I have create the new domain on tomcat admin and I've create the context
/manager but after login I receiving this error:
type Exception report
message
description The server encountered an internal error () that prevented it
from fulfilling this request.
exception
javax.servlet.ServletExc
early), any other relevant details.
>
> --David
>
> Christian Bianchini wrote:
>
>> Hi,
>> I have create the new domain on tomcat admin and I've create the context
>> /manager but after login I receiving this error:
>>
>> type Exception report
>
tool? You might be better off just editing the appropriate config
> files. It was dropped from tomcat 6 because it hadn't been maintained in a
> long time.
>
> --David
>
>
> Christian Bianchini wrote:
>
>> The version of tomcat is: 5.5.26
>> The server
Peter Crowther skrev:
From: Edi [mailto:[EMAIL PROTECTED]
consider, i had 4 java application running in one tomcat, if
one application
crashes, all the other 3 application gets crashes. right?
Correct. But it's not always that simple :-).
It's your choice how you want to split up your
one more JDK1.5 (each tomcat needs, separate
jdk1.5 or not ?)
Please advise
Peter Crowther wrote:
From: Christian Andersson [mailto:[EMAIL PROTECTED]
Peter Crowther skrev:
If you
are not careful when tuning the system, you might find that
one application in one Tomcat/JVM run
Hi there,
I am currently investigating a problem with our web app (Tomcat 5.5.23, Java
1.5, JSF 1.2) where the servlet cache does not always get updated when a JSF
include is changed. This happend after changing an included JSF. The
JSF-snippet that includes is:
<[EMAIL PROTECTED] file="/pages/i
Thanks a bunch Luca. I inherited quite some messy code before the old
developer said goodbye. So far the big architectural issues in the Data
Access and Logic layers have been cleaned up, but the problems in the view
still exist. I will live with this issue for now and refactor the view later
to u
kohanm wrote:
>
> Hi,
> I have Tomcat 5.5 installed and a Java web applicaion is running.
> How could* *I *se*t up Tomcat that if I copy and past the URL of the web
> application to anoather browser the session could be tranferred to the new
> browser, in other words:
> Session can be transfe
sionid cookie to the server)
How can we prevent to get the cookie reset with 'secure=yes' when
switching to https and already having a established sessionid?
Help would be appretiated.
With kind regards,
christian kupferschmid
sorry for any disturbence our question might have caused.
With kind regards,
christian kupferschmid
-Original Message-
From: Kupferschmid Christian
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, 28. February 2007 17:02
To: users@tomcat.apache.org
Subject: Tomcat 5.5 JSESSIONID gets overwritten
ment I have redirected the port 80 to 8080 in the firewall and
starting up tomcat manually as user apache since I don't want to run
tomcat as root.
--
Christian Andersson - [EMAIL PROTECTED]
Configuration and Collaboration for OpenOffi
.
regards
Christian Hvitved
The code in my filter looks like this:
HttpServletRequest req = (HttpServletRequest)request;
String headerValue = req.getHeader("Accept-Encoding");
System.out.println("encoding: " + headerValue);
Enum
t I cannot see why this should have anything to do with reading headers
from the request.
I'm really stuck in this weird problem
regards, and thanks again.
Christian
On 4/13/07, Rashmi Rubdi <[EMAIL PROTECTED]> wrote:
> The problem arose when I was writing a special compression f
running.
Another thing is, that I think this is a big problem if many firewalls make
it impossible to compress responses using the accept-encoding header.
again thanks to all the people here helping tomcat users.
regards
Christian
On 4/14/07, Martin Gainty <[EMAIL PROTECTED]> wrote:
Good M
Hi
The firewall on my laptop pc used is norton internet security 2005. It is
running on a danish windows xp. It is possible it has some customized
settings controlled by the administrators.
regards Christian
On 4/14/07, Hassan Schroeder <[EMAIL PROTECTED]> wrote:
On 4/14/07, Chr
t" element in my "context.xml" file didn't work, too.
Is this possible at all if I only have access to the "webapps" directory
(and not, for example, to the manager application)?
Thanks a lot for your help,
Christian
My context.xml file:
My web.xml fil
override the META-INF/context.xml file that you
> may have in your webapp.
>
Do I have any chance if I don't have access to any directory outside of
the webapps directory?
Regards,
Christian
--
Deriva GmbH Tel.: +49 551 489500-42
Financial IT and Consulti
,
Christian Becker
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
google & co., but found only errors of this type appearing every
request - or not. A second filter works great.
I wonder if this could be a problem with threads?
Any help (direct or by giving a hint of how to debug this problem)
would be appreciated.
Regards,
Christian Aschoff
A normal ur
Dear list,
it was in fact the 'bug' described below. (ImageOutputWriter not
closed).
Many thanks for the hints!
Regards,
Christian Aschoff
Am 07.12.2007 um 22:51 schrieb Konstantin Kolinko:
E.g., I have found http://issues.apache.org/bugzilla/show_bug.cgi?
id=41772
---
Dipl
/collections/fileupload) but this does not
helped.
Any hint for me?
Regards,
Christian
---
Dipl. Ing. (FH) Christian Aschoff
Büro:
Universität Ulm
Kommunikations- und Informationszentrum
Abt. Informationssysteme
Raum O26/5403
Albert-Einstein-Allee 11
89081 Ulm
Tel. 0731 50-22432
Fax. 0731 50
En l'instant précis du 07/01/08 12:09, Christian Aschoff
s'exprimait en ces termes:
Hi,
i have a webapplication developed with NetBeans 5.5. Everything is
fine. But when i recompile it with NetBeans 6.01, i get a
2008-01-07 10:13:51,244 ERROR [http-8084-2] (RetrobibA
could
not find any usable settings in Solaris itself, so I am hoping this can
be solved with mod_jk configuration.
What is the correct way to have mod_jk recognize the tomcats as
unavailable more quickly on Solaris?
Below you can find my current mod_jk configuration.
Thanks
Christian
a bug in 1.2.25 that makes max_reply_timouts useless.
> Consider upgrading to 1.2.26 (even if this is not the solution to the
> problem you are asking for).
I will upgrade as soon as possible.
Thanks,
Christian
-
To
Rainer Jung wrote:
> Christian Schausberger wrote:
>> Rainer Jung wrote:
>>> I would start adding a prepost_timeout. See:
>>>
>>> http://tomcat.apache.org/connectors-doc/generic_howto/timeouts.html
>>> and
>>> http://tomcat.apache.or
t fit the problem,
because I have more than one app, which schould be reachable over a sub
domain.
regards,
christian
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For addit
e type of connection (for example you need RSA
with 256bit key to access some parts but other parts you only need
3DES), so the the less secure connection, the less information/options
will be provided.
--
Christian Andersson - [EMAIL PROTECTED]
Configuration and Collaboration for OpenOffice.org
Open
ead of "no port"
if I remove the :80 in the url I get the real page, and I am logged in..
so somewhere (I think it is tomcat) the browser is told to go to port 80
can anyone help me with this?
--
Christian Andersson - [EMAIL PROTECTED]
Configuration and Collaboration for OpenOffic
apparently https WAS working without all of this SSL parameters, but
mod_jk sent the wrong information to the server.
so even if your suggestions on what to check did not leave me to an
answer, your message still helped :-)
Rainer Jung wrote:
Hi Christian,
with the combination of mod_jk and
s I said ALL pages in the system uses UTF-8 as encoding (including
the login page)
can anyone give me a hint on where to look next, I've searched for an
answer using google and in the mailinglist but either I'm nort searching
for the right thing, or I just cann
anyone ?
Christian Andersson skrev:
Hi, we have setup Tomcat (6.0.10) to authenticate using form
authentication against openldap (2.3.27) with the jndirealm and
everything works alright except one little bit of a problem.
if the user name has national characters in it (åæø for norwegian) or
stored in
utf-8 in ldap..
and since now all our system is configured for utf-8 it is strange that
this 1 part (the jndirealm) looks like it is using iso-8859-1 .-(
Antonio Petrelli skrev:
2008/2/20, Christian Andersson <[EMAIL PROTECTED]>:
all our html pages uses the utf-8 encoding,
after time have similar problems ...
Andris Eiduks
On Fri, Feb 29, 2008 at 9:53 AM, Antonio Petrelli <
[EMAIL PROTECTED]> wrote:
2008/2/20, Christian Andersson <[EMAIL PROTECTED]>:
all our html pages uses the utf-8 encoding, using slapcat and looking
at
the content the data insi
the whole data is sent
to the server and not immediately.
I am using Tomcat 6.0.16 with jdk 1.6.0_04 on windows xp.
Regards,
Christian
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECT
Christopher Schultz schrieb:
Christian Kindler wrote:
| I want to interrupt a multipart post request (e.g. if the content-length
| exceeds a given limit). The problem is, that the client seems to
| continue sending the data to the server and gets no response from the
| server until the whole
Christian Kindler schrieb:
Christopher Schultz schrieb:
Christian Kindler wrote:
| I want to interrupt a multipart post request (e.g. if the
content-length
| exceeds a given limit). The problem is, that the client seems to
| continue sending the data to the server and gets no response from
Christopher Schultz wrote:
Christian Kindler wrote:
| Is something like Thread.currentThread().interrupt() the only way to
| stop a multipart post request?
I'm pretty sure you don't want to do that. The javadoc for
Thread.interrupt states that any blocked I/O calls will be aborte
1 - 100 of 167 matches
Mail list logo