-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ACRA 4.7 - Error 400 while sending report #338
Comments
Note that I have just tried with version 4.5 and I get this error
2-14 01:28:28.157 13968-14144/? E/AndroidRuntime﹕ FATAL EXCEPTION: Thread-373338
Process: com.xxxxxxx, PID: 13968
java.lang.InternalError: Thread starting during runtime shutdown
at java.lang.Thread.nativeCreate(Native Method)
at java.lang.Thread.start(Thread.java:1063)
at org.apache.http.impl.conn.tsccm.AbstractConnPool.enableConnectionGC(AbstractConnPool.java:145)
at org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager.createConnectionPool(ThreadSafeClientConnManager.java:125)
at org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager.(ThreadSafeClientConnManager.java:103)
at org.acra.util.HttpRequest.getHttpClient(HttpRequest.java:214)
at org.acra.util.HttpRequest.send(HttpRequest.java:141)
at org.acra.sender.HttpSender.send(HttpSender.java:225)
at org.acra.SendWorker.sendCrashReport(SendWorker.java:179)
at org.acra.SendWorker.checkAndSendReports(SendWorker.java:141)
at org.acra.SendWorker.run(SendWorker.java:77)
But... I can see the report in Acralyzer!... Is there any config option that needs to be added for 4.7 in order to not get that 400 error ? |
Http 400 is bad request. So your server is not expecting what you have sent it. You are sending a |
As stated in my first post, I'm using Cloudant. I'm not using any personal servers. Everything has been replicated from the remote db as written in the doc I linked) The fact that 4.5 works but 4.7 not means there must be something 4.7 is not sending thus the 400. (Note in the @ReportsCrashes I do not specify any custom report field so all the default are sent) |
I'm not aware of ay changes to content between 4.5 and 4.7 |
Some more details: back to 4.7,
Any idea what this could be ? I'm using gradle to import the library. And again I would like to point out that if I change from 4.7 to 4.5 the report get sent to the backend. |
More details: In the doubt I have created a completely EMPTY Android project and added ACRA 4.7 to it. I have put a break point in the HttpSender and retrieved the JSON string that the app sends. How come I get 400 when the app tries to send the report?? ps: just tried with version 4.6.2 and it works perfectly |
ACRA switched from using the Apache HttpClient to Can you post the headers that you are seeing for 4.5/4.6 and 4.7 |
Can you please post the values of 4.7 headers that you are seeing. |
same problem here |
if I replace the HttpRequest UrlConnection with OkHttp request then it works on some devices but on 5.0+ devices I get this error #332 |
Have the same issue on the same configuration. Installed acralyzar on cloudant and configured my app but always get 400 bad request error. |
I too got the same error. Hope my log file can help you in case. 4.7.0 Stacktrace
4.6.2 StackTrace
|
Same problem code 400 on 4.7, works on 4.6 From differences I noticed is additional "\n" near the end of String named encoded when using 4.7. It is not something added during copying and pasting from debugger, it is actual line feed character in char array. 4.6 headers:
4.7 headers:
4.6 logcat:
4.7 logcat:
|
I faced the same problem. Here are a few info to help solving it ;
So it seems that the problem may be caused to the Authorization header beeing too long for the underlying HTTP library. |
Thanks @corvus89. That really helped narrow it down. |
Thank you for fixing this william! |
Hello,
I have setup as described here (https://github.com/ACRA/acralyzer/wiki/setup#configure-your-application-to-send-reports-to-your-acra-storage) acralyzer on cloudant.
I can access the interface and i have my key/pwd pair
Here is the Config
@ReportsCrashes(
formUri = "https://xxxxxxx/acra-myapp/_design/acra-storage/_update/report",
reportType = org.acra.sender.HttpSender.Type.JSON,
httpMethod = org.acra.sender.HttpSender.Method.PUT,
formUriBasicAuthLogin="xxxx",
formUriBasicAuthPassword="xxxx"
)
I have generated a null pointer to test but every time I get this error saying the response code was 400..
12-14 01:08:00.107 28212-28212/com..... E/ACRA﹕ ACRA caught a NullPointerException for ,,,, java.lang.NullPointerException: Attempt to invoke interface method 'boolean java.util.List.add(java.lang.Object)' on a null object reference at com.xxxxx.onCreateView(xxxxx.java:116) at android.support.v4.app.Fragment.performCreateView(Fragment.java:1962) at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1026) at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1207) at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:738) at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1572) at android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.java:493) at android.os.Handler.handleCallback(Handler.java:739) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:145) at android.app.ActivityThread.main(ActivityThread.java:6837) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1404) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1199) 12-14 01:08:00.797 28212-29848/? E/ACRA﹕ Failed to send crash report for 1450055211000-approved.stacktrace org.acra.sender.ReportSenderException: Error while sending JSON report via Http PUT at org.acra.sender.HttpSender.send(HttpSender.java:248) at org.acra.SendWorker.sendCrashReport(SendWorker.java:181) at org.acra.SendWorker.checkAndSendReports(SendWorker.java:140) at org.acra.SendWorker.run(SendWorker.java:76) Caused by: java.io.IOException: Host returned error code 400 at org.acra.util.HttpRequest.send(HttpRequest.java:148) at org.acra.sender.HttpSender.send(HttpSender.java:245) at org.acra.SendWorker.sendCrashReport(SendWorker.java:181) at org.acra.SendWorker.checkAndSendReports(SendWorker.java:140) at org.acra.SendWorker.run(SendWorker.java:76)
I have Android 5.1.1
Samsung S6
Same problem on my emulator with version 4.1.2
The text was updated successfully, but these errors were encountered: