Tagged Questions
0
votes
0answers
68 views
when i used c2dm example, 401 error is occured [closed]
java file
package com.example.t1;
import java.io.IOException;
import java.io.OutputStream;
import java.net.URL;
import java.net.URLEncoder;
import javax.net.ssl.HostnameVerifier;
import ...
0
votes
1answer
90 views
HTTP Error 401 at accessing Socialcast API
I receive 401 Unauthorized when trying to connect to Socialcast API (Demo).
This is my code:
ClientConnectionManager connectionManager = new BasicClientConnectionManager();
HttpClient client = ...
3
votes
2answers
131 views
JAVA: Cannot read body from a 401
I'm using java's HttpUrlConnection (using POST) to make a very simple rest client. The server accepts and replies aplication/xml. Even for error situations (status code 3xx, 4xx, 5xx) it sends xml ...
0
votes
1answer
789 views
Apache HttpClient Digest Authentication Failed
I am tring to perform Digest Authentication using the HttpClient library, but I keep getting: HTTP/1.1 401 Unauthorized.
When I try the request from Firefox it works fine and I get a response ...
2
votes
0answers
280 views
HttpsURLConnection not returning 401 in Android
I've run into what seems to be a very strange problem. I'm using the HttpsURLConnection class in my Android app, and doing authentication using the Authenticator class.
I can connect to a web service ...
1
vote
1answer
3k views
getting error java.io.IOException: Server returned HTTP response code: 401 for
Iam trying to authenticate to https url , but iam getting exception . Below is code.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import ...
1
vote
2answers
355 views
Connecting to URL and getting 401 with Java
I can easily get authenticated in this site
via browser. But there's NO POSSIBLE way to connect to it using Java. I always get 401 error. I tried to connect via Jsoup, and HTMLUnit and still nothing.. ...
1
vote
1answer
7k views
Server returned HTTP response code: 401 for URL: https
I'm using Java to access a HTTPS site which returns the display in an XML format. I pass the login credentials in the URL itself. Here is the code snippet:
DocumentBuilderFactory dbf = ...
1
vote
1answer
359 views
Custom 401 Error on Webservices (JBoss)
I have a jboss webservice like this:
@Stateless
@SecurityDomain("SecurityDomain")
@RolesAllowed("RolesAllowed")
@WebContext(urlPattern = "/*", authMethod = "BASIC", secureWSDLAccess = true)
...
1
vote
0answers
877 views
Oracle ADF Secured App Gives HTTP 401 Error
I am new to Oracle ADF Framework. I develop on JDeveloper 11g R2 with Weblogic 10.3.5.0. I developed an project like described in a Firebox training video on Youtube.
You can download my project from ...
0
votes
2answers
348 views
Error code 401 in Java program
I am trying to crawl a website using a java program.
Until last night it was working perfect, but now the server returns error code 401.
HOWEVER, I can still see the pages that I want through my web ...
0
votes
4answers
3k views
HTTP/1.1 401 Authorization Required with HttpClient 4.1.1
Updated Code:- Using SSL, still am getting the same error..
I am trying to open this uri
https://some-host/a/getmeta?id=10 (this url is passed to proxi.jsp page)
And this is my proxi.jsp page, ...
0
votes
1answer
176 views
JSP 401 authentication
I'd like to implement a Java/JSP solution to return a client response to a web server that responded a 401 error to me when I try a wget for a resource.
How do I setup my JSP file to respond to the ...
1
vote
1answer
299 views
Include some page that returns 401
I've some web page deployed at some server say:
http://myhost/some_secured_file.html
when I access this file within a browser it returns 401 asking me to authorize myself.
The problem is that I am ...
1
vote
3answers
1k views
Error 401 when trying to update status with twitter4j
I am trying to update status on twitter using twitter4j. Everything works fine on localhost, but when I try to do it on server I get authorization error:
401:Authentication credentials were ...