The authenticator tag has no wiki summary.
0
votes
1answer
73 views
Is there a WSO2 OpenID mediator?
I know from WSO2 ESB documentation that there is an OAuth mediator:
http://docs.wso2.org/wiki/display/ESB450/OAuth+Mediator
Is it also possible to have an OpenID mediator in ESB mediation sequence?
...
0
votes
0answers
60 views
Getting secret form Gmail 2-step authentication (Google authenticator)
I'm currently developing a simple TOTP password generator, dedicated to Gmail.
The problem is that I have to ask the users to get the secret code (base32 code used to generate the TOTP password) from ...
1
vote
0answers
48 views
How to authenticate from program code to retrieve data from specific uri in android..?
I am working on project in which i need to by pass authentication through coding and hit a Uri to fetch some data.
like the uri for Login page is:
http://www.test.com/login.htm
where two ...
0
votes
0answers
91 views
Passing more than one userid and password to Authenticator using java
I am having a password protected URL and I have used the following code to connect to url using java class and got the response back.
Authenticator.setDefault(new MyAuthenticator());
...
1
vote
1answer
157 views
Spring Security 3.1.1 - Customizing Login Success problems
I'm new to Spring Security and I've been reading the API and the Javadocs and I believe I need help regarding my issue.
So far, based from trial and error, what I've observed was throwing an ...
0
votes
0answers
11 views
Blocking standard editor of contacts
I made account authenticator service for custom contacts. Is ok.
When I try create new contact, Android propose choice for storage. My account included. So... it is good, but if I select standard ...
1
vote
1answer
671 views
HTTP Authentication for HttpURLConnection in Android
My app needs to connect to multiple servers, each with their own username/password pairs. However The example provided in Android's javadoc does not consider multiple hosts with different sets of ...
2
votes
1answer
1k views
Android addAccountExplicitly using “com.google” type
I'm looking for the answer since the begining of the day and I still don't know what to do!
To explain the problem:
My application uses GTasks API. To do this, the user MUST have a google account. I ...
0
votes
1answer
111 views
Resin's Custom Authentication
I'm glad stackoverflow exists at least there is traffic. Sorry for asking these here but posting a question in caucho forums takes weeks to appear apparently.
I was fallowing a guide to have a custom ...
1
vote
1answer
438 views
Retreive Access token from Accounts Manager
I have implemented my own authenticator for Facebook and stored access_token in Accounts Manager.
I have tried all 3 ways to retreive auth_token, but in vain.
In my method, I have started a thread, ...
1
vote
1answer
1k views
Authentication failure calling SharePoint Web Service (JAX-WS client)
I have to call SharePoint 2010 Lists service from a Java client.
I used NetBeans to generate the JAX-WS classes from the WSDL.
And extended java.net.Authenticator to manage the authentication to ...
0
votes
0answers
912 views
Spring Security LDAP Bind Authenticator Verifies Only First 8 Characters of a Password
My web application uses Spring Security for authentication and authorisation.
The authentication is pre-authenticated via a corporate SSO. However, as a fallback, the application uses a form based ...
2
votes
1answer
1k views
Android, HttpURLConnection, PUT and Authenticator
url = new URL(UPLOAD_URL);
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("PUT");
urlConnection.setRequestProperty("content-type", "application/json");
...
2
votes
1answer
1k views
openning http connection behind proxy which requires authentication but does not return 407
Our applet is behind Microsoft ISA Server which has integrated proxy authentication.Isa Proxy server returns http 405(NOT 407) for connections which has no authentication credentials on it.There for ...
9
votes
3answers
1k views
Can Java's 'single sign-on' (use credentials from 'Credential Manager') on Windows be disabled?
Oracle's "Http Authentication" page from the Java SE 6 documentation says that "if you are running on a Windows machine as a domain user, or, you are running on a Linux or Solaris machine that has ...
0
votes
3answers
1k views
Java: How to launch a UI dialog from another thread, e.g. for Authenticator
My problem in a nutshell: my GUI app needs to execute a lengthy network download. The download is handled in a separate thread. It's possible that the remote site will require authentication, so I ...
0
votes
1answer
418 views
Configuring org.apache.http.impl.client.DefaultHttpClient to use the default Authenticator
I am attempting to use DefaultHttpClient over a proxy with basic authentication. Setting the client to use the default ProxySelector is (sort of) straight forward:
DefaultHttpClient client = new ...
0
votes
1answer
545 views
weblogic 10.3 custom authenticator
we are migrating weblogic from 8.1 to 10.3. We had custom authenticator provider. Is there any standard way to migrate custom authenticator from 8.1 to 10.3? In fact, I could not find the ...
7
votes
2answers
3k views
Java Authenticator on a per connection basis?
I'm building an Eclipse plugin that talks to a REST interface which uses Basic Authentication. When the authentication fails I would like to popup my plugin's settings dialog and retry. Normally I ...