A challenge-response authentication mechanism for HTTP
-1
votes
0answers
21 views
Install Digest::SHA1 failing
While installing SHA1 through CPAN I am getting following error. Interested in how to solve this issue and why its happening.
Stop.
GAAS/Digest-SHA1-2.13.tar.gz
/usr/bin/make CC=gcc CC=gcc -- NOT ...
0
votes
0answers
16 views
Unable to load HMAC_SHA1 plugin
Running the Twitter Application in Perl and facing the above mentioned problem. The Perl is 5.8.8 and system is AIX with no root access.
Code
./p_t.pl
Error
Unable to load HMAC_SHA1 plugin at
...
0
votes
1answer
32 views
How to do request HTTP Digest auth with Node.JS?
I have to write some code with Node.JS for an API documentation, but I tried the last few days all the solutions I could found on the web (including Stack of course) without succes...
My API use HTTP ...
1
vote
1answer
39 views
.NET WebClient sends request without authentication first
I'm building a web service with Asp.net web api, and I have to fetch an image from an AXIS IP Camera. The camera, however, uses Digest authentication. So my C# code looks something like this:
...
0
votes
1answer
24 views
Use HTTPS for HTTP Digest Authentication
I was wondering if there are any downsides to using HTTPS with HTTP Digest Authentication. I chose HTTP Digest because its fairly easy to incorporate for an api but its not the most secure because it ...
5
votes
1answer
136 views
Restlet with Simple connector dropping requests?
I'm running into a really weird issue where a browser's HTTP requests appear to be discarded by the Simple connector used by a Restlet server.
Server setup:
Restlet 2.1.2 server
Restlet-Simple ...
0
votes
1answer
48 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
56 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. ...
0
votes
0answers
67 views
How to set headers for HTTP Digest Authentication with ExtJS Ajax.Request
Is that possible? Can i avoid the browser's login prompt?
I am intending to use ExtJS 4 Ext.Ajax.request({...}) for making the request.
0
votes
1answer
37 views
Digest URI mismatch with proxy
I have two servers on my network. One has an external IP, the other internal only. I have my server setup so that going to http://my.site.com/Motes/ actually goes to the root of the internal server at ...
0
votes
0answers
49 views
How to create a WCF client using digest authentication to third-party system
I have been given a wdsl for an external system (not .Net-based), and I have used svcutil to create a client/proxy for it. The external unit requires digest authentication for me to talk to it, and ...
0
votes
0answers
33 views
DigestAuthFixer Throwing Exception (Header nonce not found)
I'm working on a project where I do a Webrequest.
Because of a problem I had a ' 401.1 Authorization required' problem and I used a DigestAuthFixer (Found on the internet) which solved that problem.
...
0
votes
1answer
83 views
Change status code sent back by Restlet for authenication
I am using Restlet with Digest Authentication. Works well. Except I want to make it a bit more ajax/Javascript friendly by avoiding the browser's authentication dialog pop up when a 401 is first sent ...
1
vote
1answer
231 views
Curl command for digest auth using a json post
(Using node.js, express, passport-http)
I have a POST route doing digest auth, trying to application-json content type.
I can hit the GET route with digest, without issues, and I can hit the POST ...
0
votes
1answer
112 views
node.js Express with HTTP-AUTH
I have problem with creating node.js application based on express with http-auth module.
It's a posslible create Middleware for this http-auth library i have this code
//Configure Middlewares
...