Do different Web Hosts give different responses under same conditions?
I am working on a Android app. Therefore I'm creating an Login/Register Aktivity.I'm using JsonRequest(Volley) to get the Information stored in a SQL Data-base.Furthermore I wrote some php files(for Testing Purpose) to create a JSONObject as the Server Response.
Everything seems to work but only for some webhosts. What i mean by that is that the same Android Studio Code and the same php Code once work fine and in the other case Output Errors.
My Test php Code uploaded via FileManagers
<?php
$myObj=new stdClass();
$myObj->name = "Test";
$myJSON = json_encode($myObj);
echo $myJSON;
?>
my Java Code
RequestQueue requestQueue= Volley.newRequestQueue(this);
JsonObjectRequest jsonObjectRequest=new JsonObjectRequest(Request.Method.GET,url,null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
String success=response.getString("name");
Toast.makeText(getApplicationContext(),success, Toast.LENGTH_SHORT).show();
} catch (JSONException e) {
e.printStackTrace();
Toast.makeText(getApplicationContext(), "ErrorCatch"+e.toString(), Toast.LENGTH_LONG).show();
}
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getApplicationContext(), "ErrorResponse"+error.toString(), Toast.LENGTH_LONG).show();
}
});
requestQueue.add(jsonObjectRequest);
Using one Webhost I get the Correct Toast including the stored Information from the Server. Using another Webhost I get an Error :"Java.lang.String cannot be converted to JSONObject" which I find Odd since I'm doing the same Stuff.
Thank you in advance for your help.
java php android-studio web-hosting
add a comment |
I am working on a Android app. Therefore I'm creating an Login/Register Aktivity.I'm using JsonRequest(Volley) to get the Information stored in a SQL Data-base.Furthermore I wrote some php files(for Testing Purpose) to create a JSONObject as the Server Response.
Everything seems to work but only for some webhosts. What i mean by that is that the same Android Studio Code and the same php Code once work fine and in the other case Output Errors.
My Test php Code uploaded via FileManagers
<?php
$myObj=new stdClass();
$myObj->name = "Test";
$myJSON = json_encode($myObj);
echo $myJSON;
?>
my Java Code
RequestQueue requestQueue= Volley.newRequestQueue(this);
JsonObjectRequest jsonObjectRequest=new JsonObjectRequest(Request.Method.GET,url,null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
String success=response.getString("name");
Toast.makeText(getApplicationContext(),success, Toast.LENGTH_SHORT).show();
} catch (JSONException e) {
e.printStackTrace();
Toast.makeText(getApplicationContext(), "ErrorCatch"+e.toString(), Toast.LENGTH_LONG).show();
}
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getApplicationContext(), "ErrorResponse"+error.toString(), Toast.LENGTH_LONG).show();
}
});
requestQueue.add(jsonObjectRequest);
Using one Webhost I get the Correct Toast including the stored Information from the Server. Using another Webhost I get an Error :"Java.lang.String cannot be converted to JSONObject" which I find Odd since I'm doing the same Stuff.
Thank you in advance for your help.
java php android-studio web-hosting
Possibly some other server configuration or php version. Maybe the faulty server has a very old php version, where json_encode is not yet implemented and throws an error. Try to access the php via browser or any api-client tester software to see what the return is.
– Jeff
Nov 19 '18 at 22:14
also remove the trailing?>
in your php script. In some cases sending additional space/tab/linefeed produces errors in receiving environments.
– Jeff
Nov 19 '18 at 22:18
Thanks for your answer.One webhost is using php Version 7.0.19 and the other one php Version 7.1 which, as far as i know, both should include Jason_encode. Furthermore if i go to the url both Output "{"name":"Test"}" which seems like the correct and expected echo.
– R.K.
Nov 20 '18 at 8:35
add a comment |
I am working on a Android app. Therefore I'm creating an Login/Register Aktivity.I'm using JsonRequest(Volley) to get the Information stored in a SQL Data-base.Furthermore I wrote some php files(for Testing Purpose) to create a JSONObject as the Server Response.
Everything seems to work but only for some webhosts. What i mean by that is that the same Android Studio Code and the same php Code once work fine and in the other case Output Errors.
My Test php Code uploaded via FileManagers
<?php
$myObj=new stdClass();
$myObj->name = "Test";
$myJSON = json_encode($myObj);
echo $myJSON;
?>
my Java Code
RequestQueue requestQueue= Volley.newRequestQueue(this);
JsonObjectRequest jsonObjectRequest=new JsonObjectRequest(Request.Method.GET,url,null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
String success=response.getString("name");
Toast.makeText(getApplicationContext(),success, Toast.LENGTH_SHORT).show();
} catch (JSONException e) {
e.printStackTrace();
Toast.makeText(getApplicationContext(), "ErrorCatch"+e.toString(), Toast.LENGTH_LONG).show();
}
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getApplicationContext(), "ErrorResponse"+error.toString(), Toast.LENGTH_LONG).show();
}
});
requestQueue.add(jsonObjectRequest);
Using one Webhost I get the Correct Toast including the stored Information from the Server. Using another Webhost I get an Error :"Java.lang.String cannot be converted to JSONObject" which I find Odd since I'm doing the same Stuff.
Thank you in advance for your help.
java php android-studio web-hosting
I am working on a Android app. Therefore I'm creating an Login/Register Aktivity.I'm using JsonRequest(Volley) to get the Information stored in a SQL Data-base.Furthermore I wrote some php files(for Testing Purpose) to create a JSONObject as the Server Response.
Everything seems to work but only for some webhosts. What i mean by that is that the same Android Studio Code and the same php Code once work fine and in the other case Output Errors.
My Test php Code uploaded via FileManagers
<?php
$myObj=new stdClass();
$myObj->name = "Test";
$myJSON = json_encode($myObj);
echo $myJSON;
?>
my Java Code
RequestQueue requestQueue= Volley.newRequestQueue(this);
JsonObjectRequest jsonObjectRequest=new JsonObjectRequest(Request.Method.GET,url,null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
String success=response.getString("name");
Toast.makeText(getApplicationContext(),success, Toast.LENGTH_SHORT).show();
} catch (JSONException e) {
e.printStackTrace();
Toast.makeText(getApplicationContext(), "ErrorCatch"+e.toString(), Toast.LENGTH_LONG).show();
}
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getApplicationContext(), "ErrorResponse"+error.toString(), Toast.LENGTH_LONG).show();
}
});
requestQueue.add(jsonObjectRequest);
Using one Webhost I get the Correct Toast including the stored Information from the Server. Using another Webhost I get an Error :"Java.lang.String cannot be converted to JSONObject" which I find Odd since I'm doing the same Stuff.
Thank you in advance for your help.
java php android-studio web-hosting
java php android-studio web-hosting
asked Nov 19 '18 at 22:08
R.K.R.K.
1
1
Possibly some other server configuration or php version. Maybe the faulty server has a very old php version, where json_encode is not yet implemented and throws an error. Try to access the php via browser or any api-client tester software to see what the return is.
– Jeff
Nov 19 '18 at 22:14
also remove the trailing?>
in your php script. In some cases sending additional space/tab/linefeed produces errors in receiving environments.
– Jeff
Nov 19 '18 at 22:18
Thanks for your answer.One webhost is using php Version 7.0.19 and the other one php Version 7.1 which, as far as i know, both should include Jason_encode. Furthermore if i go to the url both Output "{"name":"Test"}" which seems like the correct and expected echo.
– R.K.
Nov 20 '18 at 8:35
add a comment |
Possibly some other server configuration or php version. Maybe the faulty server has a very old php version, where json_encode is not yet implemented and throws an error. Try to access the php via browser or any api-client tester software to see what the return is.
– Jeff
Nov 19 '18 at 22:14
also remove the trailing?>
in your php script. In some cases sending additional space/tab/linefeed produces errors in receiving environments.
– Jeff
Nov 19 '18 at 22:18
Thanks for your answer.One webhost is using php Version 7.0.19 and the other one php Version 7.1 which, as far as i know, both should include Jason_encode. Furthermore if i go to the url both Output "{"name":"Test"}" which seems like the correct and expected echo.
– R.K.
Nov 20 '18 at 8:35
Possibly some other server configuration or php version. Maybe the faulty server has a very old php version, where json_encode is not yet implemented and throws an error. Try to access the php via browser or any api-client tester software to see what the return is.
– Jeff
Nov 19 '18 at 22:14
Possibly some other server configuration or php version. Maybe the faulty server has a very old php version, where json_encode is not yet implemented and throws an error. Try to access the php via browser or any api-client tester software to see what the return is.
– Jeff
Nov 19 '18 at 22:14
also remove the trailing
?>
in your php script. In some cases sending additional space/tab/linefeed produces errors in receiving environments.– Jeff
Nov 19 '18 at 22:18
also remove the trailing
?>
in your php script. In some cases sending additional space/tab/linefeed produces errors in receiving environments.– Jeff
Nov 19 '18 at 22:18
Thanks for your answer.One webhost is using php Version 7.0.19 and the other one php Version 7.1 which, as far as i know, both should include Jason_encode. Furthermore if i go to the url both Output "{"name":"Test"}" which seems like the correct and expected echo.
– R.K.
Nov 20 '18 at 8:35
Thanks for your answer.One webhost is using php Version 7.0.19 and the other one php Version 7.1 which, as far as i know, both should include Jason_encode. Furthermore if i go to the url both Output "{"name":"Test"}" which seems like the correct and expected echo.
– R.K.
Nov 20 '18 at 8:35
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%2f53383345%2fdo-different-web-hosts-give-different-responses-under-same-conditions%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%2f53383345%2fdo-different-web-hosts-give-different-responses-under-same-conditions%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
Possibly some other server configuration or php version. Maybe the faulty server has a very old php version, where json_encode is not yet implemented and throws an error. Try to access the php via browser or any api-client tester software to see what the return is.
– Jeff
Nov 19 '18 at 22:14
also remove the trailing
?>
in your php script. In some cases sending additional space/tab/linefeed produces errors in receiving environments.– Jeff
Nov 19 '18 at 22:18
Thanks for your answer.One webhost is using php Version 7.0.19 and the other one php Version 7.1 which, as far as i know, both should include Jason_encode. Furthermore if i go to the url both Output "{"name":"Test"}" which seems like the correct and expected echo.
– R.K.
Nov 20 '18 at 8:35