> > Can cfhttp access to https site and get the files with username
> > and password provided?
> 
> <cfhttp url="https://www.blah.com";
>         method="GET"
>         port="443"
>         username="DOMAIN\USERNAME"
>         password="**********"
>         resolveurl="TRUE"
>         throwonerror="YES">
> </CFHTTP>
> 
> I've been following this thread and had a question. I thought 
> I had read that the code above would only work on NT if the Web 
> server was not using NT Challenge/Response for security. Is that 
> correct? 

That is correct. If you're using HTTPS, there's no reason to use NTLM
Authentication anyway; Basic Authentication will do.

> Also, does that mean that it work won't on the server if it is 
> running or only for the directory you choose to secure that way? 
> Ok, that's two questions.

Web server authentication can be set on a per-directory (and for IIS, a
per-file) basis. Only those directories and files secured using NTLM
Authentication will require that authentication.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to