Tagged Questions
The responses tag has no wiki summary.
2
votes
2answers
81 views
How do you correctly handle 404 errors in ASP.NET?
In the web.config you can add this code to handle 404 errors:
<customErrors mode="Off" defaultRedirect="ErrorPage.aspx">
<error statusCode="404" redirect="/Site-Map"/>
...
1
vote
1answer
465 views
How do you handle unsolicited responses (like incoming calls) when handling sms with a gsm modem
I have tried to develop a gsm modem library for handling sms built around system.io.ports.serialport. it does not handle unsolicited responses very well, in particular incomming calls. i resort to ...
0
votes
4answers
45 views
Sending GET & POST requests in Java or other without responses
Is it possible to make GET & POST requests in Java or another language such that you don't care about what is returned?
As in just sending the requests but not wanting to receive any responses?
0
votes
1answer
331 views
Calculating Frequency response from a set of input and a set of output obtained from a test
Here is the scenario,
I have a set of input values say 2000, and the corresponding out put values, the sampling rate was 2000 samples/sec, and a sinusoidal wave of 50hz was used, so how do I ...
0
votes
1answer
133 views
Handling asynchronous responses
I'm building an FTP client from scratch and I've noticed that the response codes aren't immediate (which is no surprise). What would be a good approach for getting the corresponding code to a command? ...
0
votes
4answers
799 views
Why does my Ajax request go directly from state 1 to 4?
I am making a request to a CGI program using AJAX. The response sends me content-length. My purpose is to dynamically exhibit the response progress. For that I need to start a function on onreadystate ...