http-error Questions
2
I have a C# ASP.NET Webforms website running on IIS7. It is a report creation application that queries the SQL Server database, gets the data, parses it in to an Excel document.
The query itself d...
Prior asked 2/8, 2013 at 16:12
1
Solved
I try to draw an image (in base64 format) to a canvas in client-side JavaScript. There is unfortunately always the ERR_CONNECTION_RESET 431 (Request Header Fields Too Large) error.
I get the base6...
Rizzo asked 11/12, 2019 at 17:17
8
Solved
Im just move to laravel 5 and im receiving errors from laravel in HTML page. Something like this:
Sorry, the page you are looking for could not be found.
1/1
NotFoundHttpException in Application....
Transnational asked 11/2, 2015 at 0:35
5
Solved
I have a piece of code like this
host = 'http://www.bing.com/search?q=%s&go=&qs=n&sk=&sc=8-13&first=%s' % (query, page)
req = urllib2.Request(host)
req.add_header('User-Agent'...
Thapsus asked 12/1, 2012 at 18:27
0
Our site is able to handle files up to what seems 100mb.
When I upload a 100mb file, I receive the 502 bad gateway error after about 2 minutes and 20 seconds
When I upload a 200mb file, I receiv...
Waggle asked 7/11, 2018 at 15:17
2
I've an ASP.NET MVC5 web app on my local Win 10 machine. Recently, I upgraded some Nuget packages and MVC4 to MVC5. And updated the target framework version to .Net v4.5.
Now, when I debug the web...
Eamon asked 21/10, 2016 at 11:52
2
Solved
What I know:
We all know that flask has a useful query.get_or_404 we can call it to any class object and return the object or raise a 404 error if the object is not found.
The problem:
I have a ...
Outthink asked 29/10, 2018 at 9:47
1
Solved
I've read a lot of posts and articles regarding proper http status code to return for client request error.
Others suggest to use 400 as it has been redefined in RFC 7231 though I'm not sure if the...
Heda asked 23/8, 2018 at 16:14
3
Solved
I have a REST service that is exposed to iPhone and Android clients. Currently I follow the HTTP codes 200, 400, 401, 403, 404, 409, 500 etc.
My question is where is the recommended place to put t...
Willman asked 20/12, 2012 at 1:27
4
Solved
Using a python flask server, I want to be able to throw an http error response with the abort command and use a custom response string and a custom message in the body
@app.errorhandler(400)
def c...
Sexpot asked 22/1, 2014 at 21:59
2
Solved
I have an HttpInterceptor to catch errors and display them in a modal. Besides error code and message, I would also like to show the body of the response which actually holds a more precise descrip...
Rosalindrosalinda asked 20/10, 2017 at 13:3
0
I am using a Webview with WebViewClient to load a URL which requires authentication. I am using onReceivedHttpAuthRequest method of WebViewClient to set the authentication for every request.
@Over...
Windfall asked 8/6, 2018 at 6:18
2
Solved
I have GCP load balancer with 4 IIS 10 web servers. Sporadically it comes with 502-Server error. In the logs it shows it is because of backend_connection_closed_before_data_sent_to_client. I have r...
Faith asked 25/4, 2018 at 11:9
1
Solved
I'm trying to standardize my handling of HTTP status codes returned from various APIs in an effort to reduce the amount of code I copy across files.
For my current application, I have a set of fi...
Josefina asked 18/1, 2018 at 16:30
2
Solved
from difflib import *
import urllib.request,urllib.parse,urllib.error
from urllib.parse import unquote
import time
import pdb
try:
file2 = urllib.request.Request('site goes here')
file2.add_head...
Sternmost asked 18/8, 2012 at 23:50
2
Solved
Android, Retrofit, RxJava. Please look at this example call:
mcityService.signOut(signOutRequest)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(resp ->...
Gallup asked 19/9, 2017 at 6:41
6
Solved
I am running IIS 7.5 in Windows 7 and have already gone into "Turn Windows features on or off" and enabled ASP in "Internet Information Services/World Wide Web Service/application Development Featu...
Intermeddle asked 30/1, 2012 at 22:53
1
Solved
I'm trying to set up an ngrok tunnel to a locally run webserver serving on port 5000. I can access the website fine over localhost:5000, but when I set up an ngrok tunnel on port 5000 I get net::ER...
Salcedo asked 11/11, 2015 at 20:26
1
For the last few months we have suffered from intermittent 102 errors when trying to connect to our internal server hosting JIRA and Stash over port 8080 and 7990 respectively.
I'm not familiar wi...
Grisaille asked 8/5, 2015 at 10:18
3
Solved
I'm designing a RESTful API that is using the HTTP status codes and verbs as key components in communicating.
On the religious level it's on the zealot side of RESTafarian.
Rule of thumb for deci...
Kiowa asked 6/5, 2014 at 6:0
3
Solved
I'm making a POST request to upload a picture to a website.
In the page, there is one FileUpload and one input (textBox) and in fiddler I found out that the page is sending some data using Multipar...
Harlamert asked 25/6, 2012 at 21:34
1
Solved
WebViewClient.onReceivedError was deprecated, now I have to use onReceivedHttpError to handle the webview errors, however this method receives the error from any resource, which is not what I desir...
Lipp asked 27/4, 2017 at 17:23
0
I saw a lot of articles and questions about error handling using retrofit combined with RxAndroid, but i am not able to set my configuration right.
What do I want to accomplish:
when receiving ...
Bostwick asked 27/3, 2017 at 12:53
3
I just created a WCF Service Application in VS2013 with framework 3.5. for exposing some methods I have in a class library project.
Everything went fine but when I tried to see if the service runs...
Palmira asked 5/3, 2014 at 15:11
3
I have a strange problem. I created an android app that uses Retrofit library for calling a web service. I have widely tested the app, on a lot of devices and Android version. On all works fine, ex...
Duckbill asked 28/11, 2014 at 15:17
© 2022 - 2024 — McMap. All rights reserved.