Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
cjdunkerley #1
Access to page with web authentication
Hi,
I want to automatically access the data on a web page that is protected by
basic web authentication.
I have tried <cfinvoke> with a password and username but I don't know what to
use as the method... what is a method?
I have also tried CFhttp with username and password but it just returns an
error.
My username and password work fine when I enter them manually.
Any help is appreciated.
Regards,
Chris.
<cfhttp method="post" url="#xmlPath#" charset="iso-8859-1">
<cfhttpparam type="formfield" name="username" value="removed">
<cfhttpparam type="formfield" name="password" value="removed">
</cfhttp>
cjdunkerley Guest
-
Access Authentication
Hi, I have an ASP.Net Application, This application is accessed based on user identiy authorization. This application is hosed on server locted on... -
an "access denied" page for unauthorised page access
I would like to show an "access denied" page when an authenticated user tries to access a page for which they are not authorised (role-based). ... -
Access Denied using Windows Authentication. WSE 2.0
Subject: Access Denied using Windows Authentication. WSE 2.0 When using custom authentication (using the UsernameTokenManager interface.) I... -
asp.net, basic authentication, file access
I have a asp.net application that is configured to use "basic authentication". The application needs to have access to delete a file in let's say... -
Basic Access Authentication
I found this article http://www.dotnet247.com/247reference/msgs/22/113795.aspx, but unfortunatly it no longer exists here, so I'm re-opening it. ... -
Kronin555 #2
Re: Access to page with web authentication
The http basic auth popup box isn't a form, so your method of passing the
username and password is incorrect.
[url]http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p58.htm#wp1632966[/url]
<cfhttp method="post" url="#xmlPath#" charset="iso-8859-1" username="blah"
password="blah" />
Kronin555 Guest
-
cjdunkerley #3
Re: Access to page with web authentication
Thanks for the reply. I realise the mistake now... however I am still getting
errors and beleive it is something to do with this:
[url]http://support.microsoft.com/kb/834489[/url]
So the data provider is now looking at securig the data in another way.
Regards,
Chris.
cjdunkerley Guest



Reply With Quote

