httpserver Questions

5

Solved

I wish to embed a very light HTTP server in my Java Swing app which just accepts requests, performs some actions, and returns the results. Is there a very light Java class that I can use in my app...
Nitrite asked 27/7, 2009 at 3:47

1

Solved

I am trying to deploy restful web-service in core java project (swing application). I am using jersy for that. I have searched to many site in google but i can't found why this append. public clas...
Tierza asked 28/1, 2016 at 5:53

1

Solved

Previously titled: How to spawn goroutine per HTTP request? The code below is a simple HTTP server that echos the path back to the requester. I used it to test if the ListenAndServe method of the ...
Rubberize asked 20/12, 2015 at 21:46

1

The existence of these modules suggests Node does not ship with an equivalent command: https://www.npmjs.org/package/simplehttpserver https://www.npmjs.org/package/simple-http-server
Burnley asked 19/3, 2014 at 17:23

4

I really can't find the apache http server msi. All links lead to this page: http://download.nextag.com/apache//httpd/binaries/win32/ and when I use their mirror site still no .msi. Where can...
Nestorius asked 30/1, 2015 at 0:34

1

Solved

My http server is based on BaseHTTPServer with Python 2.7.6. Now I want it to support ssl transportation, so called https. I have installed pyOpenSSL and recompiled python source code with ssl sup...
Fructiferous asked 30/9, 2015 at 1:36

1

Solved

This is probably a rookie question, but although the npm http-server page states: ...http-server is a simple, zero-configuration command-line http server... Does this mean it completely disreg...
Ealdorman asked 14/5, 2015 at 23:37

1

Solved

The question in short How do you run a simple Flask-based website visible to the internet, from a host PC which is accessing the internet from a wireless router? Question details I would like to...
Quintie asked 14/5, 2015 at 15:31

3

I need a simple HTTP server application that meets the following criteria: It must run on Windows. It must NOT require new Windows installations of any sort: programs, frameworks, services, etc. ...
Sensory asked 11/5, 2012 at 16:57

2

I wrote a Web Service server using Sun Ws implementation and I used a HttpsServer for publication (TLS mutual authentication). httpServer=HttpsServer.create(...); ssl=SSLContext.getInstance("TLS...

1

Solved

I am creating a front end in AngularJS for a backend in node.js. I have the option of two simple node.js front end servers to serve the front end web page: one is a simple app.get in express, the o...
Wellknown asked 15/2, 2015 at 22:6

2

Solved

I would like to launch a SimpleHTTPServer in a separate thread, while doing something else (here, time.sleep(100)) in the main one. Here is a simplified sample of my code: from SimpleHTTPServer im...
Creature asked 5/2, 2015 at 16:54

1

Solved

I am trying to write a simple HTTP server in Java that can handle POST requests. While my server successfully receives the GET, it crashes on the POST. Here is the server public class RequestHan...
Salver asked 4/2, 2015 at 15:34

1

Solved

root directory = /srv/myproject/xyz/main/ in the "main" folder I have few *.html files and I want all of them to point at a url say /test/ (which is quite different from the directory structure) ...
Moon asked 27/1, 2015 at 16:27

1

Solved

I want to customize 404 response, that the server (not me) throws whenever it can't find a requested resource, (or throw a customized WebApplicationException myself, if it's possible to test if a r...
Enplane asked 30/10, 2014 at 18:32

1

Solved

As title, when to use httptest.Server and httptest.ResponseRecorder? It seems to me that I can also test my handlers to return correct response using httptest.Server. I can simply start a httptest...
Nemertean asked 18/9, 2014 at 11:50

1

Solved

What does autoIndex mean as it relates to a web server? I'm interested to know specifically in the context of this Node.js app, http-server. I've seen the term used in a number of other questions o...
Haruspicy asked 15/9, 2014 at 6:47

2

I am working on a new project which would be a web application with a front end UI and a back end web service. I started looking into what servers to use like Tomcat / Jetty and so .. I also notice...
Creatine asked 23/12, 2013 at 2:47

4

Solved

I am learning the JQuery Get method. I start up a Python HTTP server: (just typing command "Python -m SimpleHTTPServer"). It's fine to test this webserver by just visiting "http://localhost:80" ...
Secrete asked 12/12, 2011 at 5:51

0

I have written a service which is used to register some data. That service can be called thousands of times. The parameters are passed via the URL itself. The client part of it looks something like...
Enwreathe asked 11/4, 2014 at 16:21

1

I would like to make a HTTP server using python, to host my website. I've implemented do_GET() method and it works fine, but when I try the POST method, server is not responding until I reload the ...
Doer asked 1/4, 2014 at 18:26

3

Solved

I try to increment a port number based on 8000 if the port is busy with EADDRINUSE, and I thought it's as easy as the below: var tryToOpenServer = function(port) { console.log('trying to Open: ...
Lambkin asked 7/3, 2014 at 22:43

1

My knowledge about network programming is limited, so, all the comments are more than welcome. Essentially my question boils down to the following question: Q1. Is there really such a thing as de...

0

I am using Apache HTTP Server mod_proxy as a proxy server between my client and the server. I am able to connect to my proxy server from my client. And then client is able to establish the connecti...
Tarim asked 11/2, 2014 at 9:52

3

Solved

I'm trying out Martini, which adds some nice functionality upon Go's basic net/http package. I was wondering tho. How can I, like Django does too, let the server restart itself on source-file chan...
Phenocryst asked 29/1, 2014 at 0:27

© 2022 - 2024 — McMap. All rights reserved.