From: rcoder Date: 2007-02-20T08:25:08+09:00 Subject: Re: Web service client help needed On Feb 19, 11:57 am, "dima" wrote: > = Response > > HTTP/1.1 401 Access Denied > Server: Microsoft-IIS/5.0 > Date: Mon, 19 Feb 2007 19:40:40 GMT > WWW-Authenticate: Negotiate > WWW-Authenticate: NTLM > Connection: close > Content-Length: 4431 > Content-Type: text/html Your web server is rejecting your connection attempt, because you haven't authenticated. If your client will only run on Windows systems, you could try the patch below[1], which supports NTLM authentication; otherwise, consider using client IP address, or some application-level control, for authentication, as NTLM is a proprietary Microsoft auth mechanism, and will block most client platforms from being able to access your service. -Lennon 1 - http://rubyforge.org/tracker/index.php?func=detail&aid=5177&group_id=426&atid=1700