-
Hi James.
We are experiencing the same issue in our application.
Into the error.log file exists these lines:
[Thu Sep 17 10:52:53 2009] [error] [client 172.29.13.196] (70014)End of file found: proxy: error reading status line from remote server exiwai14.baires.techint.net, referer: http://ebd.exiros.techint.net/ebd/gi/shell.jsp?jsxapppath=/ebd/gi/JSXAPPS/MAIN
[Thu Sep 17 10:52:53 2009]...
2009-09-17 18:17:25 UTC by gastoncourtois
-
I'm using the Michael Cai's enhanced mod_ntlm module with Apache 2.0.54.
When I look at my Apache access.log I can see that for each successful HTTP 200 response
connection I also get two HTTP 401 responses
Is there a reason why I get the two 401 responses?
e.g.
Apache access.log (I've anonymised ip addresses here)
999.999.99.99 - - [04/Mar/2009:18:46:26 +0000] "GET...
2009-03-05 20:08:33 UTC by ch33kymonkey
-
Hi,
I have a linux (rhel4) based apache server outside my domain.
I want to use mod_ntlm simply to get the username from the browser.
Would it be a problem, considering the server is outside the domain?
Thanks in advance.
2009-02-08 13:03:56 UTC by amir_moualem
-
Hi, I would like to use mod_ntlm purely to obtain the username for the user currently visiting the page.. this works fine with mod_ntlm as is but if the user has a browser that does not provide the NTLM information or that isn't on the intranet then this will fail and access will be blocked all together.
I would like to be able to use an alternative logon method (through PHP) in case this...
2009-01-08 18:42:43 UTC by naatan
-
When a domain controller specified in the NTLMServer directive responds to an SMB request with:
SMB Session Setup AndX Response, Error: Out of memory (from a WireShark decode. Sorry, don't have the capture)
mod_ntlm does not treat this as a failure and attempt to use the NTLMBackup but instead logs:
NTLM/SMB user "X": authentication failure for "Y".
2009-01-02 17:29:42 UTC by mgothard
-
mbaltaks committed revision 46 to the NTLM auth module for Apache/Unix SVN repository, changing 1 files.
2008-03-31 20:34:51 UTC by mbaltaks
-
Hi,
for me the recent module sourcedoesnt compile anymore;
it seems to me that you forgot some defines when you copied over some stuff from the AP 2.x source;
the patch below fixes this:
--- mod_ntlm.h.orig Fri Dec 8 02:18:18 2006
+++ mod_ntlm.h Sat Jul 28 18:06:06 2007
@@ -7,6 +7,11 @@
#define NTLM_PACKAGE_NAME "NTLM"
#define NTLM_AUTH_NAME "NTLM"
+#define PROXYREQ_NONE 0.
2007-07-28 16:15:31 UTC by gknauf
-
Hi,
the module is missing support for EAPI; this path corrects this:
--- mod_ntlm.c.orig Fri Dec 8 02:23:23 2006
+++ mod_ntlm.c Wed Jul 25 16:22:26 2007
@@ -851,4 +851,10 @@
NULL, /* child_init */
NULL, /* child_exit */
NULL /* post read-request */
+#ifdef EAPI
+ ,NULL,
+ NULL,
+ NULL...
2007-07-28 16:13:12 UTC by gknauf
-
Since an API change of apr you need this patch in mod_ntlm.c to run the module in apache-2.2.x
greetz
ischi
590c590
< apr_pool_sub_make(&sp,p,NULL);
---
> apr_pool_create_ex(&sp,p,NULL,NULL);.
2007-03-28 10:12:00 UTC by nobody
-
mbaltaks committed revision 45 to the NTLM auth module for Apache/Unix SVN repository, changing 12 files.
2006-12-08 01:23:23 UTC by mbaltaks