AsyncHttpClient Fails with Internal Server Error
I'm trying to perform a GET operation in my android project, and due to some untrackable reason I'm getting the error in my log console as Internal Server Error. After doing a lot of work, I still get this, and hence my work cannot be processed further.
Before I write down my code, I would like to tell you that, the api needs a header as a user token, which I'm passing it in my getClient() in the AsyncHttpClient.
CODE
private static AsyncHttpClient getClient() {
AsyncHttpClient client = new AsyncHttpClient();
client.setTimeout(2000);
client.setMaxRetriesAndTimeout(1, 3000);
return client;
}
// ----- API CALLING ----
private void callPetsApi() {
getClient().addHeader("token", user.getToken());
getClient().get("url", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header headers, byte responseBody) {
progress.setVisibility(View.GONE);
petsRecyclerView.setVisibility(View.VISIBLE);
String response = new String(responseBody);
Log.e("RESPONSE", response);
try {
jsonArrayParsing(response);
} catch (JSONException e) {
e.printStackTrace();
}
}
@Override
public void onFailure(int statusCode, Header headers, byte responseBody, Throwable error) {
Log.e("FAILURE===", error.getLocalizedMessage());
progress.setVisibility(View.GONE);
goneText.setText(error.getMessage());
goneText.setVisibility(View.VISIBLE);
}
});
}
It always fails, and goes into the onFailure(), giving the error as Internal Server Error.
I have tested it for the user.getToken() in my log console, and it is coming up fine.
I have done also this, like adding it into the params, and passing it into the get() :
RequestParams params = new RequestParams();
params.add("token", user.getToken());
getClient().get() {}
I have also done this in order to confirm whether the setTimeOut() or setMaxReRetriesAndTimeout() causing the problem. But I was getting the same error.
I commented those line in my getClient(), but no results.
I have tested the api on the Postman by passing the header also, and the data is loading fine. I guess there is some kind of glitch in my code which I can't track. Please help me with this. Thanks in advanced.
java
add a comment |
I'm trying to perform a GET operation in my android project, and due to some untrackable reason I'm getting the error in my log console as Internal Server Error. After doing a lot of work, I still get this, and hence my work cannot be processed further.
Before I write down my code, I would like to tell you that, the api needs a header as a user token, which I'm passing it in my getClient() in the AsyncHttpClient.
CODE
private static AsyncHttpClient getClient() {
AsyncHttpClient client = new AsyncHttpClient();
client.setTimeout(2000);
client.setMaxRetriesAndTimeout(1, 3000);
return client;
}
// ----- API CALLING ----
private void callPetsApi() {
getClient().addHeader("token", user.getToken());
getClient().get("url", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header headers, byte responseBody) {
progress.setVisibility(View.GONE);
petsRecyclerView.setVisibility(View.VISIBLE);
String response = new String(responseBody);
Log.e("RESPONSE", response);
try {
jsonArrayParsing(response);
} catch (JSONException e) {
e.printStackTrace();
}
}
@Override
public void onFailure(int statusCode, Header headers, byte responseBody, Throwable error) {
Log.e("FAILURE===", error.getLocalizedMessage());
progress.setVisibility(View.GONE);
goneText.setText(error.getMessage());
goneText.setVisibility(View.VISIBLE);
}
});
}
It always fails, and goes into the onFailure(), giving the error as Internal Server Error.
I have tested it for the user.getToken() in my log console, and it is coming up fine.
I have done also this, like adding it into the params, and passing it into the get() :
RequestParams params = new RequestParams();
params.add("token", user.getToken());
getClient().get() {}
I have also done this in order to confirm whether the setTimeOut() or setMaxReRetriesAndTimeout() causing the problem. But I was getting the same error.
I commented those line in my getClient(), but no results.
I have tested the api on the Postman by passing the header also, and the data is loading fine. I guess there is some kind of glitch in my code which I can't track. Please help me with this. Thanks in advanced.
java
Better toAsyncHttpClientto useOkHttpits very simple to implementation. vogella.com/tutorials/JavaLibrary-OkHttp/article.html
– Hardik Parmar
Nov 20 '18 at 16:10
add a comment |
I'm trying to perform a GET operation in my android project, and due to some untrackable reason I'm getting the error in my log console as Internal Server Error. After doing a lot of work, I still get this, and hence my work cannot be processed further.
Before I write down my code, I would like to tell you that, the api needs a header as a user token, which I'm passing it in my getClient() in the AsyncHttpClient.
CODE
private static AsyncHttpClient getClient() {
AsyncHttpClient client = new AsyncHttpClient();
client.setTimeout(2000);
client.setMaxRetriesAndTimeout(1, 3000);
return client;
}
// ----- API CALLING ----
private void callPetsApi() {
getClient().addHeader("token", user.getToken());
getClient().get("url", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header headers, byte responseBody) {
progress.setVisibility(View.GONE);
petsRecyclerView.setVisibility(View.VISIBLE);
String response = new String(responseBody);
Log.e("RESPONSE", response);
try {
jsonArrayParsing(response);
} catch (JSONException e) {
e.printStackTrace();
}
}
@Override
public void onFailure(int statusCode, Header headers, byte responseBody, Throwable error) {
Log.e("FAILURE===", error.getLocalizedMessage());
progress.setVisibility(View.GONE);
goneText.setText(error.getMessage());
goneText.setVisibility(View.VISIBLE);
}
});
}
It always fails, and goes into the onFailure(), giving the error as Internal Server Error.
I have tested it for the user.getToken() in my log console, and it is coming up fine.
I have done also this, like adding it into the params, and passing it into the get() :
RequestParams params = new RequestParams();
params.add("token", user.getToken());
getClient().get() {}
I have also done this in order to confirm whether the setTimeOut() or setMaxReRetriesAndTimeout() causing the problem. But I was getting the same error.
I commented those line in my getClient(), but no results.
I have tested the api on the Postman by passing the header also, and the data is loading fine. I guess there is some kind of glitch in my code which I can't track. Please help me with this. Thanks in advanced.
java
I'm trying to perform a GET operation in my android project, and due to some untrackable reason I'm getting the error in my log console as Internal Server Error. After doing a lot of work, I still get this, and hence my work cannot be processed further.
Before I write down my code, I would like to tell you that, the api needs a header as a user token, which I'm passing it in my getClient() in the AsyncHttpClient.
CODE
private static AsyncHttpClient getClient() {
AsyncHttpClient client = new AsyncHttpClient();
client.setTimeout(2000);
client.setMaxRetriesAndTimeout(1, 3000);
return client;
}
// ----- API CALLING ----
private void callPetsApi() {
getClient().addHeader("token", user.getToken());
getClient().get("url", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header headers, byte responseBody) {
progress.setVisibility(View.GONE);
petsRecyclerView.setVisibility(View.VISIBLE);
String response = new String(responseBody);
Log.e("RESPONSE", response);
try {
jsonArrayParsing(response);
} catch (JSONException e) {
e.printStackTrace();
}
}
@Override
public void onFailure(int statusCode, Header headers, byte responseBody, Throwable error) {
Log.e("FAILURE===", error.getLocalizedMessage());
progress.setVisibility(View.GONE);
goneText.setText(error.getMessage());
goneText.setVisibility(View.VISIBLE);
}
});
}
It always fails, and goes into the onFailure(), giving the error as Internal Server Error.
I have tested it for the user.getToken() in my log console, and it is coming up fine.
I have done also this, like adding it into the params, and passing it into the get() :
RequestParams params = new RequestParams();
params.add("token", user.getToken());
getClient().get() {}
I have also done this in order to confirm whether the setTimeOut() or setMaxReRetriesAndTimeout() causing the problem. But I was getting the same error.
I commented those line in my getClient(), but no results.
I have tested the api on the Postman by passing the header also, and the data is loading fine. I guess there is some kind of glitch in my code which I can't track. Please help me with this. Thanks in advanced.
java
java
edited Nov 20 '18 at 15:43
Alok
asked Nov 20 '18 at 15:38
AlokAlok
2411217
2411217
Better toAsyncHttpClientto useOkHttpits very simple to implementation. vogella.com/tutorials/JavaLibrary-OkHttp/article.html
– Hardik Parmar
Nov 20 '18 at 16:10
add a comment |
Better toAsyncHttpClientto useOkHttpits very simple to implementation. vogella.com/tutorials/JavaLibrary-OkHttp/article.html
– Hardik Parmar
Nov 20 '18 at 16:10
Better to
AsyncHttpClient to use OkHttp its very simple to implementation. vogella.com/tutorials/JavaLibrary-OkHttp/article.html– Hardik Parmar
Nov 20 '18 at 16:10
Better to
AsyncHttpClient to use OkHttp its very simple to implementation. vogella.com/tutorials/JavaLibrary-OkHttp/article.html– Hardik Parmar
Nov 20 '18 at 16:10
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53396487%2fasynchttpclient-fails-with-internal-server-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53396487%2fasynchttpclient-fails-with-internal-server-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Better to
AsyncHttpClientto useOkHttpits very simple to implementation. vogella.com/tutorials/JavaLibrary-OkHttp/article.html– Hardik Parmar
Nov 20 '18 at 16:10