You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2010/02/17 16:32:26 UTC

svn commit: r911020 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/miscellaneous/changelog.xml

Author: rjung
Date: Wed Feb 17 15:32:26 2010
New Revision: 911020

URL: http://svn.apache.org/viewvc?rev=911020&view=rev
Log:
BZ48223: Propagate correct backend error code to IIS.

Modified:
    tomcat/jk/trunk/native/iis/jk_isapi_plugin.c
    tomcat/jk/trunk/xdocs/miscellaneous/changelog.xml

Modified: tomcat/jk/trunk/native/iis/jk_isapi_plugin.c
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/native/iis/jk_isapi_plugin.c?rev=911020&r1=911019&r2=911020&view=diff
==============================================================================
--- tomcat/jk/trunk/native/iis/jk_isapi_plugin.c (original)
+++ tomcat/jk/trunk/native/iis/jk_isapi_plugin.c Wed Feb 17 15:32:26 2010
@@ -2180,7 +2180,7 @@
                         }
                         else {
                             rc = HSE_STATUS_SUCCESS;
-                            lpEcb->dwHttpStatusCode = HTTP_STATUS_OK;
+                            lpEcb->dwHttpStatusCode = s.http_response_status;
                             if (JK_IS_DEBUG_LEVEL(logger))
                                 jk_log(logger, JK_LOG_DEBUG,
                                        "service() returned OK");

Modified: tomcat/jk/trunk/xdocs/miscellaneous/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/miscellaneous/changelog.xml?rev=911020&r1=911019&r2=911020&view=diff
==============================================================================
--- tomcat/jk/trunk/xdocs/miscellaneous/changelog.xml (original)
+++ tomcat/jk/trunk/xdocs/miscellaneous/changelog.xml Wed Feb 17 15:32:26 2010
@@ -86,6 +86,9 @@
         then 1024 sockets. (mturk)
       </fix>
       <fix>
+        <bug>48223</bug>: IIS: Propagate correct backend error code to IIS. (rjung)
+      </fix>
+      <fix>
         <bug>47867</bug>: IIS: crash during startup, when compiled with VS2008
         and workers.properties contains unsupported properties.
         Patch provided by Indrek Juhani (rjung)



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org