DO NOT REPLY [Bug 39552] - Jakarta ISAPI Filter Patch

2006-05-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39552





--- Additional Comments From [EMAIL PROTECTED]  2006-05-12 08:54 ---
Hi,

Can you split the patch to multiple ones, each for each file.
Also please use spaces instead tab characters.

Thanks.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Proposed [PATCH] /tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java

2006-05-12 Thread Vicenç

Hi all,

This patch moves the StackThreadPool implementation to a new file and 
implements the Executor interface.
Now the JIoEndpoint only uses the Executor interface, but the problem is 
that now getCurrentThreadCount()

and getCurrentThreadsBusy() don't work anymore. Any idea?


Regards,

- Vicenç


Index: java/org/apache/tomcat/util/net/JIoEndpoint.java
===
--- java/org/apache/tomcat/util/net/JIoEndpoint.java(revision 405803)
+++ java/org/apache/tomcat/util/net/JIoEndpoint.java(working copy)
@@ -81,12 +81,6 @@
 
 
 /**
- * Available workers.
- */
-protected WorkerStack workers = null;
-
-
-/**
  * Running state of the endpoint.
  */
 protected volatile boolean running = false;
@@ -105,18 +99,6 @@
 
 
 /**
- * Current worker threads busy count.
- */
-protected int curThreadsBusy = 0;
-
-
-/**
- * Current worker threads count.
- */
-protected int curThreads = 0;
-
-
-/**
  * Sequence number used to generate thread names.
  */
 protected int sequence = 0;
@@ -256,11 +238,11 @@
 }
 
 public int getCurrentThreadCount() {
-return curThreads;
+return 0; // XXX curThreads;
 }
 
 public int getCurrentThreadsBusy() {
-return curThreads - workers.size();
+return 0; // XXX curThreads - workers.size();
 }
 
 
@@ -363,115 +345,6 @@
 
 }
 
-
-// - Worker Inner Class
-
-
-protected class Worker implements Runnable {
-
-protected Thread thread = null;
-protected boolean available = false;
-protected Socket socket = null;
-
-
-/**
- * Process an incoming TCP/IP connection on the specified socket.  Any
- * exception that occurs during processing must be logged and 
swallowed.
- * NOTE:  This method is called from our Connector's thread.  We
- * must assign it to our own thread so that multiple simultaneous
- * requests can be handled.
- *
- * @param socket TCP socket to process
- */
-synchronized void assign(Socket socket) {
-
-// Wait for the Processor to get the previous Socket
-while (available) {
-try {
-wait();
-} catch (InterruptedException e) {
-}
-}
-
-// Store the newly available Socket and notify our thread
-this.socket = socket;
-available = true;
-notifyAll();
-
-}
-
-
-/**
- * Await a newly assigned Socket from our Connector, or 
null
- * if we are supposed to shut down.
- */
-private synchronized Socket await() {
-
-// Wait for the Connector to provide a new Socket
-while (!available) {
-try {
-wait();
-} catch (InterruptedException e) {
-}
-}
-
-// Notify the Connector that we have received this Socket
-Socket socket = this.socket;
-available = false;
-notifyAll();
-
-return (socket);
-
-}
-
-
-
-/**
- * The background thread that listens for incoming TCP/IP connections 
and
- * hands them off to an appropriate processor.
- */
-public void run() {
-
-// Process requests until we receive a shutdown signal
-while (running) {
-
-// Wait for the next socket to be assigned
-Socket socket = await();
-if (socket == null)
-continue;
-
-// Process the request from this socket
-if (!handler.process(socket)) {
-// Close socket
-try {
-socket.close();
-} catch (IOException e) {
-}
-}
-
-// Finish up this request
-socket = null;
-recycleWorkerThread(this);
-
-}
-
-}
-
-
-/**
- * Start the background processing thread.
- */
-public void start() {
-thread = new Thread(this);
-thread.setName(getName() + "-" + (++curThreads));
-thread.setDaemon(true);
-thread.start();
-}
-
-
-}
-
-
 //  Public methods 
 
 public void init()
@@ -515,10 +388,8 @@
 running = true;
 paused = false;
 
-// Create worker collection
-if (executor == null) {
-workers = new WorkerStack(maxThreads);
-}
+if (executor == null)
+executor = new SimpleThreadPoolExecutor(maxThreads);
 

svn commit: r405811 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2006-05-12 Thread rjung
Author: rjung
Date: Fri May 12 10:59:50 2006
New Revision: 405811

URL: http://svn.apache.org/viewcvs?rev=405811&view=rev
Log:
Adding myself to the committers list.

Modified:
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/whoweare.xml

Modified: tomcat/site/trunk/docs/whoweare.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/whoweare.html?rev=405811&r1=405810&r2=405811&view=diff
==
--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Fri May 12 10:59:50 2006
@@ -278,6 +278,11 @@
 
 
 
+Rainer Jung (rjung at apache.org)
+
+
+
+
 Jan Luehe (luehe at apache.org)
 
 

Modified: tomcat/site/trunk/xdocs/whoweare.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/xdocs/whoweare.xml?rev=405811&r1=405810&r2=405811&view=diff
==
--- tomcat/site/trunk/xdocs/whoweare.xml (original)
+++ tomcat/site/trunk/xdocs/whoweare.xml Fri May 12 10:59:50 2006
@@ -74,6 +74,9 @@
 Jim Jagielski (jim at apache.org)
 
 
+Rainer Jung (rjung at apache.org)
+
+
 Jan Luehe (luehe at apache.org)
 
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r405827 - /tomcat/container/tc5.5.x/webapps/docs/developers.xml

2006-05-12 Thread rjung
Author: rjung
Date: Fri May 12 11:37:14 2006
New Revision: 405827

URL: http://svn.apache.org/viewcvs?rev=405827&view=rev
Log:
Adding myself to the list of developers.

Modified:
tomcat/container/tc5.5.x/webapps/docs/developers.xml

Modified: tomcat/container/tc5.5.x/webapps/docs/developers.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/webapps/docs/developers.xml?rev=405827&r1=405826&r2=405827&view=diff
==
--- tomcat/container/tc5.5.x/webapps/docs/developers.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/developers.xml Fri May 12 11:37:14 
2006
@@ -41,6 +41,7 @@
   Kin-Man Chung (kinman): Jasper
   Mladen Turk (mturk): Connectors
   Peter Rossbach (pero): Catalina, Clustering, JMX
+  Rainer Jung (rjung): Catalina, Clustering, Connectors
   Remy Maucherat (remm): Catalina, Connectors, Docs
   Tim Funk (funkman): Catalina, Docs
   Yoav Shapira (yoavs): Docs, JMX, Catalina, balancer, Release 
Manager



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: svn commit: r405811 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2006-05-12 Thread Peter Rossbach

Welcome at board!

Peter

Am 12.05.2006 um 19:59 schrieb [EMAIL PROTECTED]:


Author: rjung
Date: Fri May 12 10:59:50 2006
New Revision: 405811

URL: http://svn.apache.org/viewcvs?rev=405811&view=rev
Log:
Adding myself to the committers list.

Modified:
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/whoweare.xml

Modified: tomcat/site/trunk/docs/whoweare.html
URL: http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/ 
whoweare.html?rev=405811&r1=405810&r2=405811&view=diff
== 


--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Fri May 12 10:59:50 2006
@@ -278,6 +278,11 @@


 
+Rainer Jung (rjung at apache.org)
+
+
+
+
 Jan Luehe (luehe at apache.org)
 


Modified: tomcat/site/trunk/xdocs/whoweare.xml
URL: http://svn.apache.org/viewcvs/tomcat/site/trunk/xdocs/ 
whoweare.xml?rev=405811&r1=405810&r2=405811&view=diff
== 


--- tomcat/site/trunk/xdocs/whoweare.xml (original)
+++ tomcat/site/trunk/xdocs/whoweare.xml Fri May 12 10:59:50 2006
@@ -74,6 +74,9 @@
 Jim Jagielski (jim at apache.org)
 

+Rainer Jung (rjung at apache.org)
+
+
 Jan Luehe (luehe at apache.org)
 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: svn commit: r405811 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2006-05-12 Thread Rainer Jung
Thanks! Finally I managed enable submit messages from my asf account to 
tomcat-dev without subscribing to the list from my asf account ;)


More to come.

Peter Rossbach wrote:

Welcome at board!

Peter

Am 12.05.2006 um 19:59 schrieb [EMAIL PROTECTED]:


Author: rjung
Date: Fri May 12 10:59:50 2006
New Revision: 405811

URL: http://svn.apache.org/viewcvs?rev=405811&view=rev
Log:
Adding myself to the committers list.

Modified:
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/whoweare.xml

Modified: tomcat/site/trunk/docs/whoweare.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/whoweare.html?rev=405811&r1=405810&r2=405811&view=diff 

== 


--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Fri May 12 10:59:50 2006
@@ -278,6 +278,11 @@


 
+Rainer Jung (rjung at apache.org)
+
+
+
+
 Jan Luehe (luehe at apache.org)
 


Modified: tomcat/site/trunk/xdocs/whoweare.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/xdocs/whoweare.xml?rev=405811&r1=405810&r2=405811&view=diff 

== 


--- tomcat/site/trunk/xdocs/whoweare.xml (original)
+++ tomcat/site/trunk/xdocs/whoweare.xml Fri May 12 10:59:50 2006
@@ -74,6 +74,9 @@
 Jim Jagielski (jim at apache.org)
 

+Rainer Jung (rjung at apache.org)
+
+
 Jan Luehe (luehe at apache.org)
 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--
kippdata informationstechnologie GmbH
Bornheimer Str. 33a
53111 Bonn

Tel.: 0228/98549-0
Fax:  0228/98549-50
www.kippdata.de
===
kippdata informationstechnologie GmbH
Bornheimer Str. 33a
D-53111 Bonn

Tel.: +49/0228/98549-0
Fax:  +49/0228/98549-50
www.kippdata.de

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 39572] New: - fixes to use CompressionFilter in WebSphere app server

2006-05-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39572

   Summary: fixes to use CompressionFilter in WebSphere app server
   Product: Tomcat 5
   Version: 5.5.17
  Platform: Other
OS/Version: other
Status: NEW
  Keywords: PatchAvailable
  Severity: normal
  Priority: P3
 Component: Webapps:Examples
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


There are a couple of small bugs in the compression filter classes that are
triggered by using the filter in WebSphere 5.1 or 6. Here are patches.

- CompressionResponseStream should not compress the output stream if the
response has been committed (because then it cannot write the Content-Encoding:
gzip header, and the browser displays the compressed output as-is)
- CompressionServletResponseWrapper causes a NullPointerException if you flush
before writing anything

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 39572] - fixes to use CompressionFilter in WebSphere app server

2006-05-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39572





--- Additional Comments From [EMAIL PROTECTED]  2006-05-12 22:30 ---
Created an attachment (id=18266)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=18266&action=view)
patch to not compress committed response stream


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 39572] - fixes to use CompressionFilter in WebSphere app server

2006-05-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39572





--- Additional Comments From [EMAIL PROTECTED]  2006-05-12 22:32 ---
Created an attachment (id=18267)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=18267&action=view)
avoid NullPointerException when flushing before writing


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r405932 - /tomcat/connectors/trunk/jni/native/os/unix/system.c

2006-05-12 Thread rjung
Author: rjung
Date: Fri May 12 16:11:02 2006
New Revision: 405932

URL: http://svn.apache.org/viewcvs?rev=405932&view=rev
Log:
Changes for Solaris:
- proper casting to allow bigger counters, especially for memory
- prepare for the case, that the number of system ticks per second
  gets bigger than 1000.

Modified:
tomcat/connectors/trunk/jni/native/os/unix/system.c

Modified: tomcat/connectors/trunk/jni/native/os/unix/system.c
URL: 
http://svn.apache.org/viewcvs/tomcat/connectors/trunk/jni/native/os/unix/system.c?rev=405932&r1=405931&r2=405932&view=diff
==
--- tomcat/connectors/trunk/jni/native/os/unix/system.c (original)
+++ tomcat/connectors/trunk/jni/native/os/unix/system.c Fri May 12 16:11:02 2006
@@ -172,23 +172,23 @@
 else {
 ret_sysconf = sysconf(_SC_PHYS_PAGES);
 if (ret_sysconf >= 0) {
-pvals[0] = (jlong)(sys_pagesize * ret_sysconf);
+pvals[0] = (jlong)((jlong)sys_pagesize * ret_sysconf);
 }
 else {
 rv = apr_get_os_error();
 }
 ret_sysconf = sysconf(_SC_AVPHYS_PAGES);
 if (ret_sysconf >= 0) {
-pvals[1] = (jlong)(sys_pagesize*ret_sysconf);
+pvals[1] = (jlong)((jlong)sys_pagesize * ret_sysconf);
 }
 else {
 rv = apr_get_os_error();
 }
 res=swapctl(SC_AINFO, &info);
 if (res >= 0) {
-pvals[2] = (jlong)(sys_pagesize*info.ani_max);
-pvals[3] = (jlong)(sys_pagesize*info.ani_free);
-pvals[6] = (jlong)(100 - (info.ani_free * 100 / info.ani_max));
+pvals[2] = (jlong)((jlong)sys_pagesize * info.ani_max);
+pvals[3] = (jlong)((jlong)sys_pagesize * info.ani_free);
+pvals[6] = (jlong)(100 - (jlong)info.ani_free * 100 / 
info.ani_max);
 }
 else {
 rv = apr_get_os_error();
@@ -222,9 +222,9 @@
  prusg.pr_create.tv_sec));
 }
 pvals[10] = (jlong)(creation);
-pvals[11] = (jlong)(prusg.pr_stime.tv_sec * 1000 +
+pvals[11] = (jlong)((jlong)prusg.pr_stime.tv_sec * 1000 +
 (prusg.pr_stime.tv_nsec / 100));
-pvals[12] = (jlong)(prusg.pr_utime.tv_sec * 1000 +
+pvals[12] = (jlong)((jlong)prusg.pr_utime.tv_sec * 1000 +
 (prusg.pr_utime.tv_nsec / 100));
 pvals[15] = (jlong)(prusg.pr_majf);
 }
@@ -278,10 +278,17 @@
 if (new_kid >= 0) {
 long tck_r = tck_dividend / tck_divisor;
 cpu = ((cpu_stat_t *)kstat_cpu[i]->ks_data)->cpu_sysinfo;
-pvals[7] += (jlong)(((long)cpu.cpu[CPU_IDLE]) * tck_r);
-pvals[7] += (jlong)(((long)cpu.cpu[CPU_WAIT]) * tck_r);
-pvals[8] += (jlong)(((long)cpu.cpu[CPU_KERNEL]) * tck_r);
-pvals[9] += (jlong)(((long)cpu.cpu[CPU_USER]) * tck_r);
+if ( tck_divisor == 1 ) {
+pvals[7] += (jlong)(((jlong)cpu.cpu[CPU_IDLE]) * 
tck_dividend);
+pvals[7] += (jlong)(((jlong)cpu.cpu[CPU_WAIT]) * 
tck_dividend);
+pvals[8] += (jlong)(((jlong)cpu.cpu[CPU_KERNEL]) * 
tck_dividend);
+pvals[9] += (jlong)(((jlong)cpu.cpu[CPU_USER]) * 
tck_dividend);
+} else {
+pvals[7] += (jlong)(((jlong)cpu.cpu[CPU_IDLE]) * 
tck_dividend / tck_divisor);
+pvals[7] += (jlong)(((jlong)cpu.cpu[CPU_WAIT]) * 
tck_dividend / tck_divisor);
+pvals[8] += (jlong)(((jlong)cpu.cpu[CPU_KERNEL]) * 
tck_dividend / tck_divisor);
+pvals[9] += (jlong)(((jlong)cpu.cpu[CPU_USER]) * 
tck_dividend / tck_divisor);
+}
 }
 }
 }



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r405933 - /tomcat/connectors/trunk/jni/native/os/unix/system.c

2006-05-12 Thread rjung
Author: rjung
Date: Fri May 12 16:13:44 2006
New Revision: 405933

URL: http://svn.apache.org/viewcvs?rev=405933&view=rev
Log:
Change for Solaris only:
- drop tck_r

Modified:
tomcat/connectors/trunk/jni/native/os/unix/system.c

Modified: tomcat/connectors/trunk/jni/native/os/unix/system.c
URL: 
http://svn.apache.org/viewcvs/tomcat/connectors/trunk/jni/native/os/unix/system.c?rev=405933&r1=405932&r2=405933&view=diff
==
--- tomcat/connectors/trunk/jni/native/os/unix/system.c (original)
+++ tomcat/connectors/trunk/jni/native/os/unix/system.c Fri May 12 16:13:44 2006
@@ -276,7 +276,6 @@
 for (i = 0; i < cpu_count; i++) {
 new_kid = kstat_read(kstat_ctl, kstat_cpu[i], NULL);
 if (new_kid >= 0) {
-long tck_r = tck_dividend / tck_divisor;
 cpu = ((cpu_stat_t *)kstat_cpu[i]->ks_data)->cpu_sysinfo;
 if ( tck_divisor == 1 ) {
 pvals[7] += (jlong)(((jlong)cpu.cpu[CPU_IDLE]) * 
tck_dividend);



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 39573] New: - CPU SPIKING HIGH TO 100%

2006-05-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39573

   Summary: CPU SPIKING HIGH TO 100%
   Product: Tomcat 4
   Version: 4.1.0
  Platform: Other
OS/Version: AIX
Status: NEW
  Severity: blocker
  Priority: P1
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


WE NEED YOUR HELP PLEASE PLEASE !!!, as we are encountering the issue where 
the CPU is hiking 100%, when one of the thread in tomcat is getting in the 
loop


 [ 12 May 2006 21:02:28,650 ]
 [ ERROR ]  [Thread-31]  - caught throwable: java.net.SocketException: A 
connection with a remote s
ocket was reset by that socket.: A connection with a remote socket was reset 
by that socket.
 java.net.SocketException: A connection with a remote socket was reset by that 
socket.: A connection wi
th a remote socket was reset by that socket.
at java.net.SocketInputStream.socketRead(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java(Compiled 
Code))
at org.apache.coyote.http11.InternalInputBuffer.fill
(InternalInputBuffer.java:777)
at 
org.apache.coyote.http11.InternalInputBuffer$InputStreamInputBuffer.doRead
(InternalInputBuff
er.java:807)
at org.apache.coyote.http11.filters.IdentityInputFilter.doRead
(IdentityInputFilter.java:158)
at org.apache.coyote.http11.InternalInputBuffer.doRead
(InternalInputBuffer.java:742)
at org.apache.coyote.Request.doRead(Request.java(Inlined Compiled 
Code))
at org.apache.coyote.tomcat4.CoyoteInputStream.readBytes
(CoyoteInputStream.java(Inlined Compile
d Code))
at org.apache.coyote.tomcat4.CoyoteInputStream.read
(CoyoteInputStream.java(Compiled Code))
at org.apache.coyote.tomcat4.CoyoteInputStream.read
(CoyoteInputStream.java(Compiled Code))
at com.sun.xml.rpc.server.http.ea.JAXRPCServletDelegate.readFully
(JAXRPCServletDelegate.java(Co
mpiled Code))
at com.sun.xml.rpc.server.http.ea.JAXRPCServletDelegate.doPost
(JAXRPCServletDelegate.java(Compi
led Code))
at com.sun.xml.rpc.server.http.JAXRPCServlet.doPost(JAXRPCServlet.java
(Compiled Code))
at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled 
Code))
at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled 
Code))
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
(ApplicationFilterChain.java
(Compiled Code))
at org.apache.catalina.core.ApplicationFilterChain.access$0
(ApplicationFilterChain.java(Inlined
 Compiled Code))
at org.apache.catalina.core.ApplicationFilterChain$1.run
(ApplicationFilterChain.java(Compiled C
ode))
at java.security.AccessController.doPrivileged(Native Method)

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]