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

0
votes
0answers
101 views

Authentication Procedure through Domain Controller or Database

We have a Web Application hosted internally and the same Application is accessible from outside too. Currently this Application is authenticating against the database stored login details. What we ...
0
votes
2answers
223 views

understanding basic authentication with a 401

I'm a little confused about Basic authentication in regards to web browsers. I had thought that the web browser would only send an Authorization header after having received an HTTP 401 status in the ...
1
vote
1answer
96 views

Implement both FormsAuthentication and BasicAuthentication ASP.Net

We currently have a website which has formsauthentication implemented on it. One of the client requested us to implement a single sign on solution to this website with basic authentication and we ...
0
votes
1answer
165 views

open https://xyz.com Basic Auth external website url in Android using PhoneGap View

How can we open external site URL which has basic Auth in phoneGap View? super.loadUrl("https://google.com"); //it works super.loadUrl("https://xyz.com"); //this site has Basic Auth, it's not ...
1
vote
2answers
305 views

Are User in WebApiController and HttpContext.Current.User different?

After referring this post, I wrote an attribute for Basic Http Authentication to be used in the web api. In the attribute class, if the credentials provided match, then I am setting the ...
-2
votes
1answer
94 views

how to authentication given username password to login in Browserfield in blackberry

I am new to blackberry. I want how to authentication in browserfield BrowserField web; String Usname="yahoo@yahoo.com"; String password="123456788"; setTitle("sample"); ...
1
vote
1answer
288 views

Load basic auth secured images in phonegap app

I have a phonegap application that communicates with a web api that is secured using HTTP Basic Auth. The api returns html with img tags, which reference images that are also on the secured server. ...
0
votes
0answers
134 views

Prevent site from redirecting to login URL

I've developed a simple set of pages using ASP.NET MVC - then hosted them in IIS 7.5. These are just visual pages with no data behind them. The server is online and I didn't want the casual observer ...
0
votes
0answers
68 views

WCF Data service and custom basic authentication

I'm trying to figure out how to get custom basic authentication to work with a WCF Data Service. I have been following the tutorial given here WCF Data Service Blog By doing this way I get the ...
0
votes
1answer
327 views

How to do basic authentication over HTTPs in Ruby?

After looking a lot, I've found some solutions that seem working, but not for me... For example, I have this script: require 'net/http' require "net/https" @http=Net::HTTP.new('www.xxxxxxx.net', ...
1
vote
0answers
85 views

Basic Auth working locally but not on Travis

In order to use my API, I need to be authentified to do some actions. I'm using Behat + Mink for my tests. I have two ways to authentificate : either by a token (sending a POST request with some ...
0
votes
0answers
127 views

Orientdb Restful API

We are using Orientdb for our project. Our orientdb is installed to http://orientdbserver.com:2480/ Our project is in another server, let's call it http://development.com/ Now my question, how are ...
0
votes
0answers
811 views

Selenium WebDriver Java - org.openqa.selenium.UnhandledAlertException: Modal dialog for Basic Authentication Window in IE

I am using Java, Selenium-WebDriver (2.25) , Maven, JUnit to Develop tests for one of the website. The tests are working fine for [Firefox and Chrome]. The same tests are not working for IE. ...
0
votes
0answers
300 views

jQuery Ajax basic authentication security

I am using jQuery ajax to post request to a Restful webservice hosted on another domain, that webservice requires API username and password for authentication, if pass then it will return a token so I ...
0
votes
1answer
463 views

Weblogic server BASIC Authentication not prompting for username

I created a very simple Weblogic 10.3.5 web application with BASIC Authentication that for some reason doesn't prompt for the username and password. I believe the web.xml and weblogic.xml are created ...
0
votes
0answers
107 views

How to avoid login window on basic authentication when server response with 401 status

I'm looking for a way to suppress login popup basic authentication, when server response with 401 status. All i need is somehow make that user never see this basic authentication login popup. Client ...
0
votes
0answers
152 views

urllib2: HTTP Basic Auth after redirect

I am using suds to connect to an HTTPS Exchange Web Service (EWS) endpoint https://some.domain.com/EWS/Exchange.asmx that uses Basic Auth for authentication. This redirects with a 302 to ...
0
votes
1answer
132 views

Integration Testing ServiceSecurityContext Fake Strategy Needed

I have a WCF service which uses HTTP+SSL for authentication. I am now writing integration tests (Visual Studio 2012 Unit Test Projects) that instance the actual service class and make calls. The ...
3
votes
1answer
370 views

svn version control authentication fails when run from emacs

I'm using on my desktop native windows emacs 24.2 configured to use cygwin bash. When I run SVN from cygwin bash everything works fine. It remembers my authorization credentials and connects to a ...
5
votes
3answers
764 views

Commit to VisualSVN fails auth rejected

I have trouble making commits to a subversion repository powered by VisualSVN server. I can checkout code and update, so the username and password I am using is correct. However, when I am trying to ...
1
vote
1answer
112 views

Why Base64 in Basic Authentication

why has the resulting string literal of "username:password" be encoded with Base64 in the Authorization header? Whats the background of it?
2
votes
1answer
1k views

PHP cURL Basic Authentication Alternatives for CURLOPT_HTTPHEADER & CURLOPT_USERPWD…?

Are there any alternatives to using CURLOPT_HTTPHEADER & CURLOPT_USERPWD for supplying Basic Authentication for cURL PHP? I have a super long password, so CURLOPT_USERPWD wont work as it ...
0
votes
0answers
75 views

Basic Auth with Tomcat behind IIS

I am running a Tomcat behind an IIS on Windows Server 2008R2 machine. If I am connecting directly to Tomcat my Basic Auth (for API-Calls) are working. But as soon as I am connection via the IIS the ...
1
vote
1answer
92 views

How to dynamically load a javascript file from a server with Basic Authentication

We have a website that is protected by Basic Authentication and has a particular javascript file underneath it. I want to load that javascript file from a different MVC3 site by putting details on ...
3
votes
1answer
636 views

SignalR - how does a web client connect to a self-hosted hub with basic auth and SSL

We have a self-hosted (in a console app) SignalR hub that uses both Basic Authentication and SSL. The hub class is: [HubName("TestingHub")] [Authorize(Mode=AuthorizeMode.Both)] public class ...
2
votes
2answers
685 views

Securing Glassfish REST Service with basic auth using annotations

I have been trying to secure an application, which is deployed to glassfish 3 using annotation instead of the deployment descriptor. However, I haven't been able to get it working correctly. If I try ...
2
votes
1answer
536 views

How to do ASP.NET Web API integration tests with authorize attribute

I do have authorize attribute applied on my Web API. I am calling Web API from MVC4 application in which I am using standard cookie based authentication. I need to call Web API method on controllers ...
4
votes
1answer
140 views

PHP cURL: Max Length on CURLOPT_USERPWD?

I have a simple GET request in PHP using cURL. It is using basic auth for authentication. However when the {username}:{password} is longer than 266 characters, it appears to be getting truncated. I ...
2
votes
1answer
129 views

How to disable ServiceStack sessions while keeping authentication features to implement per-request authentication

I'm trying to force per request authentication, but by adding the AuthFeature the SessionFeature gets added automatically, which appears to cache the authentication result (I'm not getting multiple ...
2
votes
0answers
199 views

MVC4 and IIS Basic Authentication

I have a legacy classic asp application that uses basic authentication. I will be slowly migrating portions of the app to MVC4 and would like to 'drop them in' as they are completed -- this may take ...
0
votes
1answer
84 views

Blank page after user cancels basic authentication

I've googled a lot about the problem, but still did not find, why it is happening. When user cancels BASIC auth form in browser, blank page is appeared. 401 page is setup in Tomcat webapp, in ...
-1
votes
1answer
109 views

Set apache basic authentication server side? [closed]

Is it possible to set the Basic Authentication username and password from a server response? I have a site www.example.com where you can log in with any given cookie auth system. The site also has ...
2
votes
1answer
1k views

ServiceStack Web Service with Basic Authentication and SetCredentials

Right now I'm playing with ServiceStack and its Authentication and authorization support. Working on the CustomAuthenticationMvc (the Web Service Host app) from the Use Cases project and while trying ...
1
vote
1answer
374 views

Error - connectionStringName attribute is not allowed

I am using basic authentication for my web api and am getting the following error *{"Message":"An error has occurred.","ExceptionMessage":"A network-related or instance-specific error occurred while ...
0
votes
1answer
91 views

Unable to connect to the server when using Basic Authentication for my website

I am using basic authentication for my web api which has been hosted on a server. It works fine on my local with the basic authentication. But when i hosted it to the server it results in the ...
1
vote
0answers
52 views

Enable basic authentication on appharbor

How to enable basic authentication in app deployed on appharbor.com? I've enabled it on local IIS and everything works fine, but when making requests to WCF on apphb, all responsee hav status 400.
0
votes
0answers
121 views

Websphere Basic Authentication doesn't work

I'm struggling with basic http authentication and I didn't find a solution yet. Here are my steps, please tell me where I'm wrong at: Create a new policy set Add HTTP transport policy to this set ...
5
votes
1answer
102 views

Unable to fetch iOS webapp files on manifest update. 401 unauthorized

I have a HTML5 webapp which is running perfectly when served via the IIS without authentication. Is is using a cache.manifest file. Both when running in safari, and as an "add to homescreen" ...
0
votes
1answer
160 views

asp.net Webservice with basis authentication, how to configure username and password

We've got a WCF-REST service running on http://www.domain.com/service.svc. An external company is making calls towards this webservice and since sensitive data can be transmitted we want the service ...
0
votes
0answers
121 views

Authorizing Basic authentication fails for rest calls using javascript in php

API calls from javascript fails and from PHP curl they are fine. PHP Script to check authentication if (!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="Test ...
0
votes
1answer
3k views

How to enable Basic Authentication for WebDAV on Windows 8

Previously I used to be ebale to access external data from an http:// URL using only Basic Authentication (Username / Password) as text file from within an Excel (2003 version) on a Windows XP ...
0
votes
1answer
162 views

Programmatically login to site with Apache basic authentication from WPF .net application

We have a requirement to open a web site URL in default browser of the client machine from our WPF application. All this time we were using simple Process.Start(URL) and it was working fine. Until now ...
0
votes
3answers
687 views

Basic Authentication URL Handling

We have a new b2b vendor that wants to use basic auth via URL. They want to authenticate like this: //URL coming into our server ...
0
votes
0answers
146 views

API CAKEPHP REST Basic Authentication, POST for the add method wont work

I'm using CakePHP 2 to create an API, I'm currently using the Basic Authentication with users from the database. So i was having problems with the Add functions or any other functions that used POST ...
0
votes
0answers
179 views

WCF custom basic authentication

I'm using the ServiceAuthorizationManager class to authenticate users in a WCF application hosted in IIS 7 (over SSL) against a SQL Server database. I am using the authentication method from Allen ...
1
vote
1answer
133 views

Basic authentication IHttpModule unexpected behaviour

I have enabled Basic Authentication in IIS7 for my site and followed this link to create handler for basic authentication requests. The problem is that no matter what credentials user enters, the site ...
0
votes
1answer
28 views

Trying to implement login restricted area with ModRewrite

I am trying to implement a login restricted area using basic authentication and ModRewrite. The logic I am trying that unless the referer page is within the extranet or the login page, the request ...
4
votes
1answer
283 views

Configure Maven to use CXF wsdl2java with Basic Authentication

I have an application that needs to integrate with one of SharePoint's web services. This web service cannot be accessed freely and needs authentication. As such, the standard wsdl2java Maven plugin ...
1
vote
1answer
431 views

BasicAuthProvider in ServiceStack

I've got an issue with the BasicAuthProvider in ServiceStack. POST-ing to the CredentialsAuthProvider (/auth/credentials) is working fine. The problem is that when GET-ing (in Chrome): ...
0
votes
0answers
149 views

file_get_contents not work with authentication (IIS server)

When i try to get content of file on the IIS Server with authentication, it doesn't work, but when i use the same code to get content of file on ubuntu server with authentication, it works. <?php ...

1 2 3 4 5 15