David
Wed Oct 06 19:09:35 CDT 2004
Use AuthDiag to troubleshoot.
http://www.microsoft.com/downloads/details.aspx?FamilyId=E90FE777-4A21-4066-BD22-B931F7572E9A&displaylang=en
You are getting 401.1 for those requests (invalid username/password to
login), and if you only have anonymous authentication enabled, it means that
you have the wrong anonymous username/password configured on this machine.
Fix that.
BTW, ISAPI DLL will run with the remote authenticated identity (depends on
authentication protocol that you select), so you should ACL resources on the
server accordingly. If you do not want the remote user to have access to
what the ISAPI is reading/writing on the server, then you need to look into
additional impersonation inside the ISAPI such that the identity performing
those actions is DIFFERENT than the remote user (this is what impersonation
is all about). Randomly changing ACLs is unlikely to work -- security
always requires precise configuration to be 100% correct or else it won't
work, and IIS6 is no exception.
--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Bill Beacom" <BillBeacom@discussions.microsoft.com> wrote in message
news:F60047A4-BE0B-4FF0-B701-8CBAD3533F35@microsoft.com...
Here are the entries from the log files for the attemtped request:
2004-10-05 13:21:47 10.236.21.25 GET / - 80 - 10.102.112.15
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0;+T312461;+IE5.5_+SP2_wOLE;
+.NET+CLR+1.1.4322) 401 1 0
2004-10-05 13:21:47 10.236.21.25 GET / - 80 - 10.102.112.15
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0;+T312461;+IE5.5_+SP2_wOLE;
+.NET+CLR+1.1.4322) 401 1 0
2004-10-05 13:21:47 10.236.21.25 GET /Broker.htm - 80 PROD-AM\beacwh
10.102.112.15
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0;+T312461;+IE5.5_+SP2_wOLE;
+.NET+CLR+1.1.4322) 200 0 0
2004-10-05 13:21:52 10.236.21.25 GET /isapi/eoeapi.dll
EoeApiProcess?User=MYUSER&PassWord=8939CE78B126&EoeApiRequest=0000002560110.
102.112.15+++++++54++0000000020+++20041005082152++++++++++++++++++++MYUSER++
++++++++8939CE78B126++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++01++++++++
80 - 10.102.112.15
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0;+T312461;+IE5.5_+SP2_wOLE;
+.NET+CLR+1.1.4322) 401 1 0
2004-10-05 13:21:52 10.236.21.25 GET /isapi/eoeapi.dll
EoeApiProcess?User=MYUSER&PassWord=8939CE78B126&EoeApiRequest=0000002560110.
102.112.15+++++++54++0000000020+++20041005082152++++++++++++++++++++MYUSER++
++++++++8939CE78B126++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++01++++++++
80 - 10.102.112.15
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0;+T312461;+IE5.5_+SP2_wOLE;
+.NET+CLR+1.1.4322) 401 1 0
2004-10-05 13:21:52 10.236.21.25 GET /isapi/eoeapi.dll
EoeApiProcess?User=MYUSER&PassWord=8939CE78B126&EoeApiRequest=0000002560110.
102.112.15+++++++54++0000000020+++20041005082152++++++++++++++++++++MYUSER++
++++++++8939CE78B126++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++01++++++++
80 PROD-AM\beacwh 10.102.112.15
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0;+T312461;+IE5.5_+SP2_wOLE;
+.NET+CLR+1.1.4322) 500 0 126
I was able to get "Network Service" added to the folder with permissions to
create, write and append to files, but I still get the error....
Thanks,
Bill