Questions tagged [server]
A software application that services requests from clients using a data transfer protocol.
228 questions
8
votes
2
answers
618
views
Own HTTP server implementation in Java with a simple template engine
I would like to hear what you think about my simple HTTP Server implementation with a template engine in Java.
Have I overlooked any "pitfalls or caveats", or is there anything else to note?
...
11
votes
4
answers
1k
views
A simple server-client application in C
I am reading "The Linux Programming Interface" by Michael Kerrisk. I'm studying about sockets, and I made a simple application using sockets on the unix domain.
I want to know if I'm using ...
3
votes
1
answer
258
views
A home server template to securely access personal apps
I have built a Node.js program called serverserver, and it creates a server that you can access remotely on your phone. When you start the program, it prompts you to visit your public IP address. You ...
1
vote
0
answers
65
views
Mongo Rest Server
Using the server architecture to provide a REST interface. So I can send/recieve JSON that is put/retrieved from a mongo server.
The Fir class MongoRest is similar ...
1
vote
0
answers
45
views
HTTPHandler: Using lambdas to server specific paths
If you want all the code in a buildable format from the last 10 or so posts. You can find it here:
The PathMatcher object allows you to register paths with named sections of the path. But there are ...
1
vote
0
answers
41
views
WebServer HTTP Pynt Request/Response framework
The Pynt class defined the interface between the NisseServer object and code that handles input on a stream. This proivdes an ...
1
vote
1
answer
63
views
WebServer HTTP Response Header
When adding header data to the response. We accept what the user is telling us and do no conversion of the data.
But: The Response object (and its stream) is going to handle the encoding/ transport. ...
0
votes
0
answers
51
views
WebServer HTTP parsing The URL
URL class.
Providing a way to look at the different parts of a URL:
...
1
vote
0
answers
61
views
Interface Design for HTTP parsing / response
This is my first "real" attempt at decoding an HTTP request on the server side.
This is the interface I think should be sufficient. However, because I am new to the details I would love to ...
2
votes
1
answer
108
views
Web Server in C++: Server Class
Planning on writing a set of blog articles on how to write a webs server.
So each phase will have a new version of the server with extra features. But starting very basic and working up to a ...
1
vote
1
answer
111
views
Web Server in C++: Threaded
Planning on writing a set of blog articles on how to write a webs server.
So each phase will have a new version of the server with extra features. But starting very basic and working up to a ...
2
votes
2
answers
132
views
Web Server in C++
Planning on writing a set of blog articles on how to write a web server.
So each phase will have a new version of the server with extra features. But starting very basic and working up to a reasonable ...
2
votes
1
answer
101
views
Feedback for my first project - sqlserver-json-tools
could you review my first project on github please. The JSON_MODIFY function in SQL Server 2016 and 2019 does not allow creating paths dynamically, making it necessary to chain JSON_MODIFY executions. ...
3
votes
2
answers
3k
views
TCP server in C++
I am building a TCP server in C++, and right now it's a test version without logic to handle server-client packet transactions. Please check if there are any memory leak related issues or anything ...
4
votes
0
answers
76
views
Serving Laravel public/ contents when all Laravel files are in the same server directory
I have a Laravel 8 project hosted at xxx/laravel/ on an Apache server, where xxx is the domain. I want to serve the contents of <...