Tagged Questions

Basic authentication is a method for a web browser or other client program to provide a user name and password when making a request.

learn more… | top users | synonyms

13
votes
6answers
7k views

Using HTTP Basic-Auth with Google App Engine URLFetch service

How can I specify the username and password for making Basic-Auth requests with App Engine's URLFetch service (in Java)? It seems I can set HTTP headers: URL url = new ...
13
votes
2answers
11k views

Pure Javascript code for HTTP Basic Authentication?

Where can I find reference code that implements a HTTP Basic Authentication client in pure Javascript, suitable for Ajax? (Yes, I could read the spec and implement it myself, but it's for a side ...
11
votes
2answers
3k views

ASP.NET MVC - HTTP Authentication Prompt

Is it possible to make my application ask for username and password prompting for it before render a view? Just like on twitter API to get information about your account: ...
10
votes
3answers
198 views

How to pass more data then the username/password to the service method in WCF 4.0 RESTful service, using basic authentication

The requirements: WCF 4.0 IIS host Basic authentication with custom source RESTful There are plenty of examples and ways how to implement the basic authentication, from using ...
9
votes
3answers
10k views

How do I make a request using HTTP basic authentication with PHP curl?

I'm building a REST web service client in PHP and at the moment I'm using curl to make requests to the service. How do I use curl to make authenticated (http basic) requests? Do I have to add the ...
8
votes
1answer
6k views

HTTP Basic Authentication credentials passed in URL and encryption

I have a question about HTTPS and HTTP Authentication credentials. Suppose I secure a url with HTTP Authentication: <Directory /var/www/webcallback> AuthType Basic AuthName "Restricted Area" ...
8
votes
2answers
3k views

How do I make a JSONP call with JQuery with Basic Authentication?

Using JQuery, how would I call a JSONP API that required basic authentication? Can I programatically handle this, or does the user have to interact and enter the username and password into the logon ...
8
votes
2answers
2k views

Issue FORM POST Request From PHP using HTTP Basic Authentication

I hope this is a relatively straight forward thing to do, and that my google skills have simply failed me on this occasion. I have a BASIC authentication protected resource which I want to have PHP ...
7
votes
2answers
3k views

Self-hosted WCF REST service and Basic authentication

I've created a self-hosted WCF REST service (with some extra's from WCF REST Starter Kit Preview 2). This is all working fine. I'm now trying to add Basic authentication to the service. But I'm ...
7
votes
1answer
2k views

Testing HTTP Basic Auth in Rails 2.2+

As part of an API I am building, there is a user authentication method which upon success, returns a payload of useful user information, API token, etc. In writing functional tests for the controller ...
6
votes
2answers
3k views

http basic authentication “log out”

HTTP basic authentication credentials are stored until the browser is closed, but is there a way to remove the credentials before the browser is closed? I read about a trick with HTTP 401 status ...
6
votes
3answers
8k views

Custom HTTP Basic Authentication for ASP.NET Web Services on .NET 3.5/VS 2008

I am refactoring a working ASP.NET Web Application to expose Web Services interface using ASP.NET Web Service. According to Web Services authentication - best practices, Basic Auth over https is the ...
5
votes
2answers
1k views

Rails 3, Authlogic, NGINX and HTTP basic authentication no working nicely together

I am in the early stages of building an app using Rails 3. User authentication is powered by Authlogic which I have setup pretty much as standard (as per the example docs) and everything is working as ...
5
votes
4answers
5k views

Preemptive Basic authentication with Apache HttpClient 4

Is there an easier way to setup the http client for preemptive basic authentication than what described here? In previous version (3.x) it used to be a simple method call (eg, ...
5
votes
2answers
3k views

nginx and auth_basic

I am trying to get basic authentication working with nginx in Ubuntu Jaunty. In nginx.conf, I added these two lines under the server context: server { ... auth_basic "Restricted Access"; ...
5
votes
3answers
15k views

JAX-WS and BASIC authentication, when user names and passwords are in a database

I'm new to JAX-WS and there's a thing which I don't understand. There's a ton of tutorials available on how to set up JAX-WS security, but in pretty much all cases BindingProvider.USERNAME_PROPERTY ...
5
votes
1answer
2k views

Accessing an Artifactory/Maven Repo that requires basic-auth

I have an Artifactory repo that sits behind basic authentication. How would I configure the settings.xml to allow access? <mirrors> <mirror> <id>artifactory</id> ...
5
votes
2answers
8k views

Apache2 Reverse Proxy to an end-point that requires BasicAuth but want to hide this from user

Basically my scenario is that I have an internal website that requires a SINGLE hard-coded username and password to access (and this can't be turned off, only changed). I am exposing this website ...
4
votes
4answers
526 views

Authenticate Windows Authentication using Javascript

I have to transfer my client from one website to another website. This happens in client side. In this 2nd website, its using windows basic authentication system. So It popups the login window. I need ...
4
votes
1answer
389 views

In Restful web services how to get username or password programmatically (basic authentication)

I have restful web services in a jee application (ejb3) running on jboss. And do not know how to get username or password programmatically, like when service method is called I want to be able to get ...
4
votes
1answer
884 views

How Do I Get By The Basic Authentication Handshake When Using Fiddler To Test A WCF REST Service?

The title sort of says it all. Can somebody explain to me how to do this? Thanks.
4
votes
1answer
234 views

Basic Authentication with PHP gives an endless loop

For some reason I can't get Basic Authentication to work using PHP on my server. I am using the exact code from the manual page: <?php if (!isset($_SERVER['PHP_AUTH_USER'])) { ...
4
votes
1answer
517 views

XmlSlurper.parse(uri) with HTTP basic authentication

I need to grab a data from XML-RPC web-service. new XmlSlurper().parse("http://host/service") works fine, but now I have a particular service that requires basic HTTP authentication. How can I set ...
4
votes
3answers
891 views

IIS7 basic authentication to protect a site that uses forms authentication

This should be much simpler than it has proven to be! I have an ASP.Net web app which uses FORMS authentication to secure part of the site (i.e. the member login area). Now I simply want to put a ...
4
votes
1answer
498 views

Is basic auth with SSL secure enough?

I am developing an application which need to handle a massive amount of REST requests. Using basic auth will save a lot of computing resources since I don't have to compute the signatures. Also, the ...
3
votes
1answer
93 views

Pass basic authentication without prompting login box from browser in JSP frames

I have created frame in JSP which takes some site in source which has basic authentication implemented <frameset frameborder="0" border="0" framespacing="0"> <frame name="content" ...
3
votes
0answers
70 views

How to handle HTTP Basic Authentication in AVURLAsset?

I am trying to develop a custom movie player in iPhone using AVPlayer. But I am just wondering that if the m3u8 url response sends back an authentication challenge, how do I handle that. I do know ...
3
votes
2answers
129 views

Basic Authentication with ASP.Net Web Services on IIS7.5 in Classic Mode

I have implemented web service with Basic Authentication with .Net 4. To implement basic authentication I have implemented HttpModule. When I call my web service via Internet Explorer, it prompts for ...
3
votes
1answer
174 views

How to debug urllib2 request that uses a basic authentication handler

I'm making a request using urllib2 and the HTTPBasicAuthHandler like so: import urllib2 theurl = 'http://someurl.com' username = 'username' password = 'password' passman = ...
3
votes
2answers
360 views

Getting a value from HttpServletRequest.getRemoteUser() in Tomcat without modifying application

(Using Java 6 and Tomcat 6.) Is there a way for me to get HttpServletRequest.getRemoteUser() to return a value in my development environment (i.e. localhost) without needing to modify my ...
3
votes
2answers
240 views

Apache 2.2 redirect to SSL *then* do auth (with solution < but is it crap?)

Seems to be the place for apache so here goes :) Age old problem: how so I redirect HTTP->HTTPS, then and only if HTTPS, do an auth? Oh - and I'd like most of it in a single snippet that can be ...
3
votes
1answer
669 views

Cannot integrate Spring Security BASIC Authentication into Jersey/JAX-RS and Tomcat

I am attempting to add BASIC authentication to a RESTful web service that I have created using Jersey/JAX-RS and Tomcat Apache 7.0. In the future I want to deploy this web service on WebSphere so I ...
3
votes
2answers
182 views

HTML5 Manifest Cache behind Basic Auth?

I've got a site that's using HTML5 caching and working lovely. When I protect the site using Basic Auth (.htpasswd) the caching doesn't seem to work. Ideally I'd like the site to cache for ...
3
votes
1answer
238 views

How to get login attributes from a servlet/jsp

Lately I've been working on implementing security for my web application, running on a Glassfish v3. I successfully managed to secure some resources by setting a basic authentication up like ...
3
votes
2answers
1k views

How to clear basic authentication details in chrome

I'm working on a site that uses basic authentication. Using chrome I've logged in using the basic auth. I now want to remove the basic authentication details from the browser and try a different ...
3
votes
2answers
195 views

Using php or javascript to log a user into a directory protected with Apache Basic Authentication (htaccess/htpasswd)

Is it possible to use PHP or Javascript to login to a directory protected with Apache Basic Authentication? A simple example: I have a directory called 'protected' (ie. http://myurl/protected) ...
3
votes
6answers
3k views

Basic HTTP authentication using KSOAP for android

I need to consume a SOAP web service using Android. The issue is that before request for a particular function I need to authenticate a client using basic http request. Do you know how to do this ...
3
votes
2answers
408 views

Basic Authentication Required Dialog

For starters; Im not so literate in coding. I am pretty interested in a script on how to trigger/ or throw a Basic/Standard "Authentication Required" Dialog on a specific directory or site and the ...
3
votes
3answers
989 views

Using basic authentication over SSL on Windows Phone 7

I know that variations on this question have been asked, but I've tried all suggested solutions to no avail. We are trying to connect to a WCF service that uses basic authentication and transport ...
3
votes
1answer
692 views

Adding basic authentication to ASP MVC action

I have an ASP MVC app that uses it's own custom authentication mechanism. However there is only one Action in one controller that I need to secure using Basic Authentication. The idea is when the URL ...
3
votes
3answers
361 views

Is basic access authentication secure?

Using Apache, it is quite simple to set up a page that uses basic access authentication to prompt a user for a name/password and use those credentials in some way to grant access to that user. Is ...
3
votes
2answers
369 views

Login Form For Http Basic Auth

I am running a Perl application named bitlfu.For login it is using something like Apache HTTP Basic Auth but not a form.I want to make form for the login with username and password filed. I have tried ...
3
votes
1answer
893 views

Basic CouchDB Local-to-Remote Replication

I am playing around with CouchDB Replication and I'm wondering how to copy a local database of name "myDatabase" to a remote database on www.mySite.com that requires ssh access, and rename it to ...
3
votes
2answers
11k views

IIS7 and Authentication problems

i've got a stock standard ASP.NET web site, deployed to our development machine (internal machine in our server room). Now, this dev site can be accessed by both INTERNAL and EXTERNAL users. Now, in ...
2
votes
5answers
78 views

Does an authenticated REST request ALWAYS implies a database request?

I'm using RESTeasy framework to develop my web service. I've managed to set up BASIC authentication, and it is working properly now. Of course, I do plan to use SSL on top of this. The process is ...
2
votes
1answer
34 views

Setting cookie when an Ajax requested is returned from a different domain

I have a mobile web app which requires basic authentication. I managed to invoke a basic authentication with Ajax on a server that is of different domain. However, I have a problem with the response. ...
2
votes
2answers
161 views

How do I set the remote user in Tomcat? [closed]

Possible Duplicate: Getting a value from HttpServletRequest.getRemoteUser() in Tomcat without modifying application Short version: How can I configure Tomcat to use a specific name (say, ...
2
votes
1answer
390 views

ASIHTTPRequest Basic Authentication failing

I am using the following code: NSString *params = [NSString stringWithFormat:@"{\"username\": \"%@\", \"password\": \"%@\", \"client_id\": \"%@\", \"client_secret\": \"%@\"}", ...
2
votes
0answers
191 views

How do you set the Access-Control-Allow-Origin header for the HTTP basic authentication response in Apache?

I want to use XHR to log in to a site that uses HTTP basic authentication. The following piece does this. http = new XMLHttpRequest(); http.open("get", "http://...", false, username, password); ...
2
votes
2answers
63 views

What encoding should I use for HTTP Basic Authentication?

The RFC2617 says to encode the username and password to base64 but don't say what character encoding to use when creating the octets for input into the base64 algorithm. Should I assume US-ASCII or ...

1 2 3 4 5 7