Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
724 views

How to unit-test an MVC controller action which depends on authentification in c#?

I'd like to write (in c#) a unit-test for an MVC controller action which might return one view or the other, depending on whether the request is authenticated. How can this be done? Thanks in ...
2
votes
1answer
53 views

KQOAuth authentification error

I am using KQOauth for the first time and I am having trouble with the following code: KQOAuthRequest *oauthRequest; KQOAuthManager *oauthManager; oauthRequest = new KQOAuthRequest; oauthManager ...
2
votes
1answer
128 views

Password authentification between PHP and Smartphone devices

I am using this class in order to create password hashes. The system consist of a a webpage built upon php, iphone devices and also android devices. I need these smartphones to be able to log in and ...
1
vote
4answers
474 views

Phonegap + Sencha + Android : ajax request with a basic access authentication failled

I folks, I'm working on a Phonegap application and the Sencha framework. I try to reach a protected server but the authentication failed with Android (but not with iOS). I use the code below : ...
1
vote
2answers
488 views

Jquery+wcf. Problem with basic authentication

My service is secured with basic authentication set in IIS and i am try to get data from service with Jquery. Cross domain calls is enabled. I have next request headers Host http:\\service.com ...
1
vote
0answers
372 views

secured user authentification within a phonegap app [closed]

I'm developing a mobile application with PhoneGap and I'm stuck on the member login. I want to set up a RESTful API to communicate between this mobile app and my web app. This actually doesn't cause ...
1
vote
1answer
82 views

Dynamic Apache authentification via PHP

I would like to implement a dynamic authentification process using Apache and PHP. My current project is break into two parts: 1- I have a classic LAMP project running, where users already have a ...
1
vote
2answers
113 views

Apache authentification - letting users from X IP address in WITHOUT required password, others must type password

now my apache configuration looks like this: <Directory /usr/share/myweb/> AuthType Basic AuthName "myweb" AuthUserFile /etc/apache2/.passwords Require user mw </Directory> It ...
1
vote
0answers
401 views

No Cookies at second Webrequest

I login to a website by HTTPwebrequest, I get an authentication cookie. When I make a new HTTP-webrequest and add the cookies from the first request to call the next page where I can see my personal ...
0
votes
0answers
62 views

MS winInit proxy credentials

I'm trying to use VBScript with WinHTTP to emulate basic curl functionality (HTTP communication and pages retrieval). I'm not using curl because I should use Internet Explorer proxy settings ...
0
votes
1answer
46 views

java WEB application - authorization throught domain user

I have a java web application (running on JBoss), which need to authorizate users by their domain objects, without asking any usernames and passwords. Users are running windows, authorization with ...
0
votes
0answers
106 views

Facebook - How to check mobile user authentification on server side?

We are developping a native mobile application (Android and later iPhone) communicates with our web server. User's data will be saved on this server. We know it's possible to login on the mobile ...
0
votes
0answers
41 views

Client certificate authentification

Here is a problem: The app should support client certificate authentication. For this purpose I use WinInet function InternetErrorDlg with needed params and it works fine: customer able to choose a ...
0
votes
1answer
105 views

Java: Get PrivateKey from Windows-MY Certificate (not exportable) to use it for SSL Auth

How can I get the PrivateKey from a Windows-MY (MSCAPI) Certificate (marked as not exportable) to use it for the HTTPS Connection to authentificate the Client. Thanks
0
votes
1answer
56 views

How to do form authentification in ASP.NET MVC 3?

I am using Oracle Database, what tables I should add and how I can do my MembershipProvider and other providers? Thank you. I have tried to use Oracle Providers, but have some problems with it. The ...
0
votes
1answer
45 views

Connect to Facebook using Facebook app on iPhone

How to connect to Facebook using the downloaded Facebook app, and not the embeeded Facebook connect. This is done for example with Rockmelt app. What seems to be done, is to launche a third party app ...
0
votes
1answer
128 views

Rails: rbflow - authorization

I have installed rbflow (github.com/soulim/rbflow) on my local pc. How i can log in administration account? I cant pass authorisation with using OpenID, because WEBrick gives an error: Request-URI ...
0
votes
0answers
50 views

Why does warden block my public directory

I've built a small app using sinatra and have tried to add warden authentication. Unfortunately I've run into the problem that warden seems to automatically block my public folder which sinatra ...
0
votes
1answer
189 views

Grails: How to get information about the currently logged in user?

I am actually feeling a bit dumb for asking this but I tried for half a day now and can't find a way to get information on the currently logged in user in my controllers as well as my views. I tried ...
0
votes
2answers
285 views

FLEX + AMFPHP User Authentication

I am trying to create a fairly simple User Authentification system using FLEX and AMFPHP, but I have a question about security. Most examples I see send plain text usernames/passwords to a php file, ...
0
votes
0answers
57 views

Is there a light gem for authenticating that is running on rails3 and allow for API auth?

I've tried in the past Devise and AuthLogic but those solutions are always too complex, you have to reroute everything and and do some weird configuration changes and it seems that even after you have ...
0
votes
1answer
23 views

Is this IIS configuration possible, and if not, what would you suggest?

Is it possible to configure an IIS website to provide domain credentials to an ASP.Net application if the user is logged into a particular domain, and use anonomous if they are coming in from the ...
0
votes
1answer
268 views

Simplest way to implement user login / authentification in Python

I'm developing a fairly simple Python web app and I want to allow users to log in. I know the solution will probably involve installing some sort of framework rather than doing it in straight Python ...
-5
votes
0answers
31 views

Google Calendar API authorization tokens [closed]

Possible Duplicate: Google Calendar API v3 hardcoded credentials I'm trying to implement some of the techniques suggested in the answers to this question about the Google Calendar API. I ...