Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
197 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 ...
4
votes
1answer
2k 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 ...
2
votes
1answer
259 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 ...
1
vote
1answer
102 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 ...
1
vote
1answer
136 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, ...
0
votes
0answers
54 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 ...
0
votes
1answer
24 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 ...
0
votes
1answer
342 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
240 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 ...
0
votes
1answer
343 views

Android, HttpURLConnection, PUT and Authenticator

url = new URL(UPLOAD_URL); urlConnection = (HttpURLConnection) url.openConnection(); urlConnection.setRequestMethod("PUT"); urlConnection.setRequestProperty("content-type", "application/json"); ...
0
votes
3answers
294 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
231 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
416 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 ...