HyperText Transfer Protocol (HTTP) is an application level network protocol used for the transfer of content on the World Wide Web.
2
votes
0answers
24 views
HTTP request extraction
The following code is intended to extract HTTP request line and store method request-URI and HTTP-Version respectfully in arrays method, target, and version.
I am quite not happy with the design at ...
1
vote
1answer
28 views
Check that an image is available to be served
I have a couple of images in my database and I need to check if the images are still good or if they're deleted or corrupted. I came up with a solution but it's very slow. I was wondering if there was ...
1
vote
3answers
66 views
Using cookies in PHP
I was wondering if there was a better way to do this. Would that mean there would need to be no client-side refreshing to show the cookies when they are created?
...
7
votes
2answers
149 views
Non-blocking, non-threaded HTTP client implementation
This is a C# WinForms program targeting .Net 4.5. I am using it for a movie organizer application that will contact sites like OMDB, MyApiFilms, etc. for data about the movies. At the main application ...
3
votes
0answers
32 views
Item purchasing using urllib
I have this function that gets an item passed from another function, together with the subtotal and the fee of the item. The function has to act as fast as possible, as other people also want the ...
7
votes
1answer
64 views
First SO chat message in Haskell followup
I have wrote an application which asks for the user id, and returns a link to the first available chat message:
Output
Enter user id:
322395
Fetching data...
...
1
vote
0answers
68 views
Simple Router class
I made a simple routing class that I like to get reviews for, mostly because I do not know how to make it SOLID, since I even made this class separate from the HTTP response/request for the sake of ...
4
votes
0answers
41 views
Find first SO chat message in Haskell
I have made some simple functions to find the first SO chat message. How can I improve my code?
Even if there is a stackoverflow link that will get the job done (I'd be glad to know), I'd like to ...
6
votes
1answer
48 views
Manually parsing HTTP response header
Due to some constraints I had to manually parse an HTTP response coming out of a stream.
I could not use buffered reader or scanner because the perform buffering and end up buffering bytes beyond the ...
15
votes
1answer
846 views
Simple webserver in C
My first learning project in C. Looking for general feedback e.g. gotchas, coding standards, formatting, naming etc. I'm here to learn!
webserver.h
...
1
vote
1answer
34 views
Resumable HTTP download class - Follow-up
Is there a better way to calculate the download speed than what I'm currently doing now? Are there any suggestions on improving the updated code?
Pure version:
...
6
votes
4answers
353 views
Resumable HTTP download class
Any suggestions, corrections and advice would be very nice and much appreciated.
...
5
votes
2answers
95 views
Downloading list of images
This code downloads a list of images, each in a different thread.
I have some questions about this code:
I don't know how to get information about correcting downloading (sometimes thread just ...
2
votes
1answer
79 views
Downloading data using HttpClient
I'm working on a class to download some data from an external server and feed it into my data model. I'm new to both HttpClient and ...
0
votes
0answers
39 views
Parallel chunk uploading through HTTP requests
I am writing this class for parallel chunk level uploads to my local server. This reads the files in a given directory, uploads with n threads in parallel.
Initially, sends a request and obtains a ...
2
votes
2answers
70 views
Parsing JSON string from HTTP request
HTTP request is made, and a JSON string is returned, which needs to be parsed.
Example response:
...
4
votes
1answer
45 views
Storing get call data on same function
I basically have a folder view structure, that each time I call grabs the value of the selected field and gets that specific folder data. I was wondering if there's a better way to do this by caching ...
4
votes
1answer
58 views
Getting the HTTP client's IP
Can you please tell me whether this is a good way to get the user's IP (IPv4 or IPv6)? Does someone have a better way to do this? Please take a look at the entire code, the ...
2
votes
1answer
70 views
File upload to web server using HttpRequestFutureTask
I am working on uploading files through Rest API. Tried my hand using single upload and works. I have modified to accommodate parallel uploads using Futures.
Will there be any chance that this code ...
5
votes
2answers
304 views
External API calls from a C#.NET client
I have a simple c# mvc client that calls an external api..here is my attempt
...
4
votes
2answers
173 views
Asynchronous HTTP JSON request
For asynchronous requests, I use Alamofire.
I have created one method for requesting async data.
...
1
vote
2answers
317 views
Utility class for an HttpURLConnection
I am creating a utility class to do an HttpURLConnection. I want to make this class generic as in I pass the URL and the POST params. It works with any range of ...
3
votes
2answers
331 views
Client-server application
This is my very simple client-server application. Client sends some commands to the server and server gives back the output to the client. However, my special concern is about the GET command sent to ...
0
votes
0answers
81 views
HTTP handlers exercise (tour of go)
The challenge, from Tour of Go, "Exercise: HTTP Handlers":
Implement the following types and define ServeHTTP methods on them. Register them to handle specific paths in your web server.
...
4
votes
2answers
280 views
“Remember me” functionality for a website
I have read a few SO threads to implement remember_me functionality.
Steps I have followed:
User clicks on login button and if passes client side validation, it goes to php Login page.
First time
...
4
votes
1answer
276 views
Receiving a JSON string response from a URL
I am using RestTemplate as my HttpClient to execute a URL while the server will return a JSON string as the response. The ...
6
votes
1answer
259 views
Calling other machines from the LinkedList if one is blocked or down
This is a follow on to : Simplifying asynchronous "executeAsync" method along with "onFailure" callback.
I am using AsyncRestTemplate as my ...
7
votes
3answers
350 views
Simplifying asynchronous “executeAsync” method along with “onFailure” callback
I have a system in which user id is "sharded" across all the machines which means each machine is responsible for certain user id data. I am working on a library which will take ...
3
votes
1answer
512 views
Unit testing HTTP requests
I would like to unit test my web requests, so on top of my head I came up with the solution below.
Since it seems to be working fine, I'm posting it on this site. Though it doesn't feel very dynamic, ...
2
votes
1answer
43 views
Logging of various exceptions in the callback
I am working on a library in which I need to execute my URL using AsyncRestTemplate and after that I will get a json response back if it is successful. I am also making ...
3
votes
1answer
114 views
Webserver for handling GET and HEAD requests
I have a programming assignment where I need to build a webserver which can handle GET and HEAD requests. My webserver is working as it should but since I'm still a newbie at Java I'm not sure about ...
5
votes
2answers
157 views
Minimal webserver in C++, second revision
First revision: Minimal webserver in C++
Here's my test question for C++ programmer job:
Servers only static content, no cgi
Single process, multithreaded
1000 concurrent request at least
Valid ...
2
votes
4answers
251 views
Minimal webserver in C++
Here's my test question for C++ programmer job:
Servers only static content, no cgi
Single process, multithreaded
1000 concurrent request at least
Valid http status codes and headers
No external ...
1
vote
1answer
61 views
Ruby webserver app
I am building a web app in Ruby but without Rails. So far I just have a very basic web server. What improvements can I make to it?
...
8
votes
3answers
432 views
Soundcloud to CSV File
This program connects to Soundcloud and turns the supplied username into a CSV file with the user's like list. The code accomplishes this although it looks rather messy and was wondering what I could ...
3
votes
1answer
252 views
Getting HTTP Status Code
I have code that take in a URL (via URL or String) and returns the status code. I am new to web development, so it is very possible that I may be taking a poor approach at this. One thing I don't ...
3
votes
1answer
69 views
Using one service ($http) on all the controllers
I have recently started working on angular.js and I like it. I have decided to use a single controller per view. I use the json data from the backend. As my work is progressing, my codes are getting ...
4
votes
1answer
47 views
Saving away URL query parameters in an analytics application
We are trying to use NodeJS for analytics. The following code gets the parameter from a URL and dumps it into a flat file. Is there any way to optimize it to get better response time?
...
2
votes
0answers
49 views
Custom 503 page for MySQLi connection error
I redirect all my requests to index.php via htaccess and the code below is in my index.php.
I want to ask if my code is properly set for a custom 503 page for an unsuccessful MySQLi connection trial.
...
0
votes
0answers
28 views
HTTP Responce randomization
I've made some unethical code giving HTML responses at random and masking what is there for fun. It targets mainly crawlers and scripts that run through your website that are looking for ...
1
vote
2answers
44 views
Repeatedly fetching a URL until the response contains “state: INIT”
I am working on a project in which I need to make a URL call to one of my servers from a bash shell script.
http://hostname.domain.com:8080/beat
After hitting the above URL, I will be getting ...
3
votes
1answer
228 views
2 way communication Python socket
I'm trying to create a 2 way communication socket in python. The socket will listen for connections from the client until it gets the data formatted in string like this: 'PHONENUMBER|STATUS'. I will ...
3
votes
2answers
104 views
Is this program susceptible to a buffer overflow exploit?
I use it in a number of embedded devices. It loads the query parameters from an HTTP GET/POST request and prints them to stdout in FORM_key=value format which then ...
5
votes
3answers
205 views
Concise HTTP server
Here's my code for a consise node.js HTTP server.
It does work as intended, but I'd like to ask if there's any glitch or to be improved.
...
1
vote
0answers
802 views
Golang concurrent HTTP request
I wanted to test the performance of concurrent http request in Go against node.js:
...
1
vote
1answer
316 views
Executing URL using Apache HttpClient
I have XML below which is stored as a String in xmlData variable and I need to pass this String to my URL in ...
5
votes
1answer
4k views
Swift project using PHP web service
I was hoping for someone to review my current project, which was created in Swift and uses a PHP web service. I'm not worried about UI elements, as this is just a 'test' project, but I'm concerned ...
1
vote
1answer
638 views
HTTP Request/Response class
I would like to get feedback on this, which are just simple Response/Request classes.
I tried to keep it simple, so I made two ...
3
votes
3answers
133 views
HTTP Performance Test in C#
I wrote a script to test how long it takes to make requests against a url. It takes a list of urls, an array of concurrent requests, and a number of times to attempt the test. How could I improve on ...
2
votes
0answers
156 views
Immediately send redirect response, preserving session data
This question is for Laravel 4 only, as the relevant parts are completely refactored in the upcoming Laravel 5.
I have written an helper function for validation, so I only have to put this in ...