I want to request reports from a third party and they require "Basic Access Authentication" via POST:
Your client application must use Basic Access Authentication
to send the user name and password.
Can someone point me in the right direction or recommend a tutorial on how to do this with C#?
Edit: I did see this post but there ar...
I'm working on a project where we have several SOAP Web Services developed on different programming languages, like Java, Perl and Python.
I need to authenticate users that will use each Web Service, denying users that we do not want.
I have already seen OAuth, but I didn't found any documentation that helped me on this way. And with OA...
The Django framework easily handles redirecting when a user fails to log in properly. However, this redirection goes to a separate login page. I can set the template to be the same as the page I logged in on, but none of my other objects exist in the new page.
For example, I have a front page that shows a bunch of news articles. On the ...
specifically what I'm trying to achieve is to have the possibility of supporting both types of authentication, but giving priority to integrated security
I mean, if the credentials are passed, use integrated security (and I could see who logged in thru ServerVariables["logon_user"], if no credentials are passed, then fall back to anonym...
Hi, I have followed the answer to http://stackoverflow.com/questions/950885/http-authentication-in-j2me by setting the request property for HttpConnection object with
setRequestProperty("Authorization", "Basic "+ encodedUserAndPass)
but it didn't work.
When make request to Http protocol -> 401 Unauthorized
When make request to H...
I've got a membership site using the default ASP.NET membership setup. The user accounts are free, with capability of paying to activate other key parts of the site.
In keeping with the nature of the site, i.e. embedded Google maps, Street View, and using Google's CDN to host jQuery/jQueryUI for me... it'd be nice to offload the authent...
I've been searching for a solution on the internet for this, and can not find it anywhere.
I've setup a simple POST request through Fiddler for an ASP page on my local machine:
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, application/x-shockwav...
I'm using Visual Studio 2005, C#, and IIS 5.x on WinXP developement machine. In my VStudio solution I have these projects:
FileServiceDemo (a web application project) hosted at http://localhost/FileServiceDemo2005
default.aspx
- displays System.Security.Principal.WindowsIdentity.GetCurrent().Name and
...
We have a website whose users supply HTML links to a virtual directory on the website. (Think www.website.com/dir1; dir1 is actually a virtual directory to a different server.) The server that the virtual directory links to requires authentication, however the username and password needed is constant.
Whenever a user tries to access a ...
I have several computers... only one of which cannot authenticate to either my exchange or TFS server. (2 of the computers are at my home trying to connect to our exchange/tfs server at work, one of which as the problem). Several other employees have not had any connectivity problems.
The errors I am seeing are
401 2 2148074254
401 ...
Hi all.
What is default hash algorithm that asp.net membership uses? And how i can change it?
Thanks.
...
In my web application which is a ASP.Net site using Framework 3.5 at few places i need a popup to appear for user to fill out information. The problem is at majority of the IE it runs fine but at few IEs it takes the user back to login page. I am also sending the windows properties as argument in the showModalDialog function so as to re...
The basic question
How do I know that it is my publicly accessible (client) application that is sending my service messages? How do I know that it is just not some other application that is impersonating my application?
Some Background
Currently we log all errors that occur on our websites via log4net and WCF to a database. This works w...
When testing various authentication solutions (my own LoginModule etc) in JBoss, it seemed to me that sometimes when I redeployed a change or otherwise provoked the login form to show, that JBoss didn't actually call the authentication module.
Just wondering if there is some type of short term caching going on?
I tested both from a web...
HI,
I have a problem with cake php built in auth - i cannot log in ...
1)user is added through app control pannel and hashed using $this->auth->password('xxx') - i've checked it's corrent in db
2)security salt is not emtpy
3) in action User/Login data['User']['password'] is empty (i don't know if this is correct but i've read t...
I'm building Active Directory Authentication into my application and I am planning to link my application's internal accounts to a user's domain SID. It is easier for me to work with the string format of the sid than a byte array so I was planning to store it in the database as a string. How long should I make the field to ensure SID's...
I'm having trouble deciding between the two. They both seem like great plugins but I'd like to know which is easier to control.
What are your guy's experiences with these plugins? Which would you recommend?
...
I'm currently using a modified HTTP::Daemon::Threaded server in
combination with SOAP::WSDL and Pod::WSDL to provide web services
used by a variety of client types and roles.
---- that's not the question, the following is -----
I'd like to arrive at an optimal solution (as far as is possible) with respect to the following topics:
Req...
Hi,
I have found what looks like a good, secure PHP login script, however i am having trouble figuring out how to implement it. (It is located here http://www.adesdesign.net/php/tutorials/php/php_login1.php)
I am new to PHP so don't know much yet. I can't figure out how you actually authenticate a user and return a message to them if i...
Hi,
This is one of this things that should be extremely simple and I just can't work out why it's not working.
I'm trying to set up some very quick authentication for an ASP.net 3.5 app but storing the usernames and passwords in the web.config file (I know it's not very secure but it's an internal app that I keep getting asked to add a...