Basic authentication is a method for a web browser or other client program to provide a user name and password when making a request.
0
votes
0answers
8 views
500 error after updating htaccess
I've been working through "PHP, MySQL, JavaScript, & CSS" by Robin Nixon, and have hit a brick wall with the Basic Authentication in PHP section: the login pop-up won't accept a correct username ...
0
votes
0answers
4 views
Web API: User.Identity.Name empty for just one action in a controller using BASIC authentication
I have had BASIC authentication set up on my Web API project for a while, using a custom written AuthorizeAttribute. The AuthorizeAttribute sets the Thread.CurrentPrincipal, upon authorization of ...
1
vote
1answer
22 views
Spring security 3 http-basic authentication-success-handler
H i'm using spring security
for form-login i have
<http auto-config="true">
<intercept-url pattern="/pages/**" access="ROLE_USER" />
<form-login ...
0
votes
0answers
24 views
c# webbrowser winforms http basic authentication - prompt user to input password
I'm working on a c# webclient using winforms.
I need the webbrowser control to prompt the origin windows authentication popup, when navigating to the page like in IE.
I've already read the ...
0
votes
0answers
15 views
Unable to add Authorization header while calling WCF service with basic authentication
I am trying to call a WCF service deployed on IIS with basic authentication enabled, from j query as below.
$(document).ready(function () {
$.ajax({
type: ...
1
vote
0answers
26 views
ServiceStack BasicAuthentication and IIS7.5
I'm using basic authentication with my service stack API. I use the following code.
Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] { new BasicAuthProvider() }));
...
0
votes
1answer
18 views
Sencha Touch 2 Images on server with Basic Authentication
I've a problem on Sencha with images which come from server with Basic Authentication, indeed images don't want to show on Android device (Galaxy S2) in tpl, I've tried to put an URL like this ...
0
votes
1answer
21 views
How to avoid pop up login when calling WCF service from jquery ajax
Friends,
I know you have been facing these kind of question a lot.I was unable to find an answer even after a lot of google search.Well, lets come to the issue.
Requirement: Call a WCF Service GET ...
0
votes
0answers
5 views
Rails 3.2 Nginx Unicorn Basic Authentification
I am trying to get Basic Authentification to work with Rails 3.2 nginx and Unicorn
The configuration works for hosting my site. I used the Rails Basic Authentification in the Controller but i have to ...
1
vote
1answer
25 views
How to do token based auth using ServiceStack
How would I implement the following scenario using ServiceStack?
Initial request goes to http://localhost/auth having an Authorization header defined like this:
Authorization: Basic skdjflsdkfj=
...
0
votes
1answer
45 views
Basic HTTP Auth in Go
I'm trying to do basic HTTP auth with the code below, but it is throwing out the following error:
2013/05/21 10:22:58 Get mydomain.com: unsupported protocol scheme ""
exit status 1
func basicAuth() ...
0
votes
1answer
8 views
Chrome basic auth and digest auth issue
I'm having some issues with Chrome canceling some HTTP requests and I'm suspecting cached authentication data to be the cause. Let me first write down some important factors about the application I'm ...
0
votes
0answers
14 views
Apache HttpClient 4.2.5: Target server digest authentication fails with Proxy Basic auth
We are trying to do HTTPGet on a target server enabled with Digest authentication. It works perfectly fine, however when proxy with basic authentication is introduced target authentication is failing. ...
1
vote
1answer
36 views
Protect my Django REST API (basic Authentication or anything else)
I'm trying to protect my Django restful api.
I got two clients :
my Django Front end application (Ajax requests on my server)
a python application using httplib to make its own requests
For now ...
-1
votes
0answers
17 views
Authentication with DefaultAsyncHttpClient
I am having the next exception, while trying to use DefaultAsyncHttpClient and BasicAuthCache.
java.lang.ClassCastException: org.apache.http.nio.conn.scheme.AsyncSchemeRegistry cannot be cast to ...
2
votes
0answers
100 views
+150
DotNetOpenAuth - Can't get the network credentials to work
So I've been working with DotNetOpenAuth for a while, Today I needed to add support for provider that forces me to send the secret key with Basic authentication (I've been using an old version and ...
0
votes
0answers
19 views
WCF Basic Authentication failed
I have created a WCF service having the following config
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="wsHttpLargeMessage"
...
0
votes
2answers
15 views
Python urllib2 accesses page without sending authentication details
I was reading urllib2 tutorial wherein it mentions that in order to access a page that requires authentication (e.g. valid username and password), the server first sends an HTTP header with error code ...
0
votes
0answers
72 views
c# - http web request with https and basic authentication
I'm trying to do a webrequest over a https url with basic authentication. And its not working!
below is my code, it actually works if i use a non secure url vs the secure one, and i can't figure out ...
0
votes
0answers
50 views
Programmatically configure WCF client binding to access SSL + Soap 1.1 + Basic Auth
I'm trying to write a C# WCF client (generated by svcutil from wsdl) to access a CXF (java) service implementing the same wsdl.
The service is working fine but I'm having trouble connecting to it on ...
1
vote
2answers
36 views
Adding basic http authorization in a ajax json script
Not really sure how to add authentication in an ajax call for JSON information. I am trying to follow the examples given ...
0
votes
0answers
16 views
Specific logins for each solr core using basic authentication
I downloaded Solr, and I've got multiple cores working in my instance. I'm trying to get different authentication for the cores working. I've tried the following in webdefault.xml:
...
0
votes
1answer
51 views
NSURLRequest with UTF8 password
Here is a method I've written to connect to a server and get a user auth token:
+ (void)getAuthTokenForUsername:(NSString *)username
password:(NSString *)password
...
0
votes
0answers
37 views
Attempt to return a value seems to not return anything…ever
This is a Sinatra app where I'm attempting to authenticate the client and then proxying that authentication data to another API. The problem is that when I try to return a value from the use block in ...
0
votes
1answer
109 views
Using form Authentication and Basic Authentication Authorization in Web Api
I have Built a mobile app using ASP.Net web APi. the authentication was done using Basic http authorization filter.Now the client want the app to be manage from the MVC web application. i added ...
0
votes
1answer
34 views
How to test if a url has basic auth implemented
I've implemented basic authentication in Django (with Mongo DB) and am a newbie in it. I'm trying to consume some web services I had made with it in iOS and android applications. Now, the Django ...
0
votes
0answers
26 views
Toggle on/off basic auth in spring
I am working on a spring webapp that has basic auth (backed by dao) built into it using Spring Security. I am looking to a way to toggle on/off the basic auth programatically, may be via a admin level ...
1
vote
0answers
66 views
How to log out from basicAuth (Express)
I'm trying to set up a web server using express. To access this server, users have to authenticate and for that, I use the basicAuth() middleware provided by Express. It works perfectly, except that I ...
1
vote
0answers
60 views
JSONP .ajax request with basic authentication
I am trying to request a JSONP output from an external API that requires basic authentication. I have the code below to access it:
$.ajax({
url: ...
1
vote
1answer
44 views
How do I authenticate and consume an external api with backbone?
I'm trying to create a very basic little backbone app that displays stats from my company's Harvest account. They have a REST API which authenticates via Basic Auth or oAuth. I seem to be faced with ...
0
votes
2answers
60 views
Is it safe to use basic authentication with localhost service via PHP Curl without SSL?
I have a local service accessible via an HTTP REST API that requires basic authentication. Is it generally secure to call it using this with PHP Curl?
curl_setopt($ch, CURLOPT_URL, ...
1
vote
0answers
196 views
creating Basic authentication in Slim framework
I had seen 2 questions on SO and several topics on google but that didn't helped me out
Authentication Based REST API with Slim
Securing a REST API and Slim Framework
Slim provides you different ...
0
votes
1answer
65 views
Authentication from scratch: “undefined method `find_by_username`”
I'm trying to include a simple user authentication into my application, based on a filemaker database (using the ginjo-rfm gem). After getting some ideas from Ryan Bates' Authentication from Scratch, ...
0
votes
0answers
68 views
Visual Studio 2012 Update 2 IIS Express Basic authentication Logon failure
We have a wizard for Visual Studio which generates new ASP.NET project with different settings, like authentication.
After installing "Update 2" for VS11 generated application gets 401.1 - ...
0
votes
2answers
212 views
Rest basic authentication via spring security without form-login
I am trying to create a restful web service that will be used by other web services. Ideally, when a client access the service, and isn't authenticated, they should get a 401. I want a user to be able ...
0
votes
1answer
80 views
pass authentication header to image requests in iframe
I am sure that title of my question doesn't makes much sense, but i couldn't think better now.
Problem: My main task is to show all pages of a SSRS report in a popup inside one of the pages of a ...
0
votes
0answers
46 views
Basic authentication with Node.js on OS X Server
I want to have basic authentication for my Node.js app running on OS X Server, preferably using OS X's user accounts. OS X provides a nifty interface for setting up this type of thing with the ...
0
votes
2answers
110 views
Using ajaxSetup beforeSend for Basic Auth is breaking SignalR connection
I have a WebApi secured with Basic Auth which is applied to the entire Api using a AuthorizationFilterAttribute. I also have SignalR Hubs sitting on several of my Api Controllers.
Alongside this I ...
6
votes
1answer
184 views
jquery ajax & preemptive basic auth
I am trying to reach some RESTful services that are running under Apache preemtive basic authentication. I am using jquery Ajax, and sending the user and password with the 'Authentication' header.
...
0
votes
1answer
23 views
Apache Basic Auth Hide user details in history
I'm working on a way to login into a password protected page using
http://USERNAME:PASSWORD@Domain.com/protected.html
I have a form where the user inserts then Username and Password, then on submit ...
0
votes
1answer
85 views
Basic Authentication Webpage Login VB.NET
Hey all, I am having an issue with trying to automate our UPS installations. The webpage uses basic authentication and prompts for a login when loading the page. We do not have access to the registry ...
0
votes
0answers
74 views
Java Web Start - bypass HTTP Basic Authentication
I have a Java Web Start Application stored in a directory on a webserver which is protected with basic access authentication. When I navigate to the directory with my browser I get asked for my ...
0
votes
1answer
298 views
PhoneGap + jQuery android app; ajax request runs in browser but not on phone or emulator
I am working on an app which has to load data from a Microsoft Dynamics NAV SOAP web service. When I run the code in a browser (IE9 or Chrome v 26.0...) the code does what it should. But when I test ...
2
votes
1answer
294 views
CakePHP 2.3.2 BasicAuthentication not working
I tried out the "Simple Acl controlled Application 1&2" tutorial located at ...
1
vote
0answers
59 views
Using GitLab behind nginx enabled basic_auth?
I've successfully installed GitLab for management of private repositories (it's quite awesome!).
The problem I am having is by default, Gitlab login is presented when anyone hits my subdomain. I ...
1
vote
2answers
101 views
how do you request a session from servicestack basic authentication, at /auth/basic?
I have set up a servicestack service with basic authentication using the first example, here:
https://github.com/ServiceStack/ServiceStack/wiki/Authentication-and-authorization
This automatically ...
1
vote
2answers
108 views
How to get password from HTTP basic authentication
I'm using HTTP BASIC Authentication with Java.
My Servlet sends a JMS message but I need to supply the user and password to authenticate myself while creating the connection:
...
0
votes
1answer
40 views
how to do Auth in node.js client
I want to get use this rest api with authentication. I'm trying including header but not getting any response. it is throwing an output which it generally throw when there is no authentication. can ...
0
votes
0answers
212 views
Ajax crossdomain request with jquery and BASIC-authentication?
I really appreciated if somebody could tell me what is wrong in that authentication? I take the authentication off from the server to test without it, but javascript is broken.
...
0
votes
1answer
70 views
Responding to Basic Authentication/Authorization with 401. Same username/password gets sent 2nd time
I am writing a java program which responds to a basic request - using this as a reference - http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
First time the browser sends a GET request without ...
