Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
12answers
25k views

How to Build a simple HTTP server in C

I need to build a simple HTTP server in C. Any guidance? Links? Samples? Thanks!
13
votes
4answers
5k views

Embedded HTTP server in Swing Java app

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 ...
6
votes
3answers
924 views

What classes do I use to make an iPhone act as a server?

I'm looking for an easy way for users to download content from an iPhone to their computer. I've seen other apps that actually turn the iPhone into a server and give the user an IP address to ...
5
votes
5answers
849 views

Python Desktop Application with the Browser as an interface?

I want to create an application that runs on the users computer, a stand-alone application, with installation and what-not, but I want the interface to be a browser, either internal and displayed as ...
4
votes
1answer
104 views

How can I get $cgi->state to return meaningful information under HTTP::Server::Simple?

First, here is the code I am using (you'll need version 0.42 of HTTP::Server::Simple to run it): #!/usr/bin/perl package My::HTTP::Server; use strict; use warnings; use parent ...
3
votes
2answers
112 views

is node.js a one process server?

is node.js a one process server, or can it emulate Apache bunch of child processes, each serves a different request, and each is independent from the other (and the cycling of child processes to avoid ...
3
votes
4answers
199 views

http server in php

I want to create http socket connection for server in php for multiple client . how can I do that ? I need some resource . First I was trying to create server in java .I create a server in java . And ...
3
votes
5answers
500 views

How do I write an HTTP server in C#?

Can someone tell me how to create an HTTP server in C# under the .NET Framework? I have to write my own HTTP server. I do not have IIS. I want a client to be able to access my created HTTP server, ...
3
votes
2answers
528 views

Adobe AIR application as a http server?

Is there any way to use an Adobe AIR application as a local http server? i.e. Adobe AIR application listening to http://localhost:8020 and I'm able to use a browser to access the application? If I ...
3
votes
3answers
1k views

How to serve any file type with Python's BaseHTTPRequestHandler

Consider the following example: import string,cgi,time from os import curdir, sep from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer class MyHandler(BaseHTTPRequestHandler): def ...
2
votes
1answer
56 views

Validate incoming request based on Request Header in apache http server

We have a web application (JQuery and Spring) running on weblogic app server. There is a apache http server in front of the app server. All incoming requests will come through the web server and ...
2
votes
1answer
43 views

How can a connection be represented only by a small space in a HTTP server running on node.js?

I have read that a HTTP server created in node.js does not create new threads for each incoming connection(request). Instead it executes a function that has been registered as a callback corresponding ...
2
votes
2answers
222 views

Google Go: Why does the http server package not serve more than 5 simultaneous requests?

I'm trying to code a small http server for later extension in Google's Go language. I am using Go on Windows (MinGw compiled version). This is quite easy in this language since it already has the ...
2
votes
1answer
197 views

Can I run an HTTP server on a mobile platform?

I am building a webapp that cannot be put into the app store (security reasons). The webapp needs access to more data than can be held in localStorage or other offline-storage means (let's say up to ...
2
votes
3answers
154 views

Is QtCore too 'heavy' for server-side use?

I am looking into writing a self contained http server using Qt libraries, although many people have the view that QtCore is too bloated and that the overhead would be too large. Would a QtCore http ...
2
votes
2answers
285 views

How to create an http server on android that a desktop can access (vice-versa) using NanoHTTPD

Using an available WiFi IP (i.e. 192.xxx.x.x, using post 8080), I'd like to create a http server in android that can connect and can be accessed by a desktop so that I can transfer files to the ...
2
votes
6answers
1k views

simple HTTP server in Java using only Java SE API

Is there a way to create a very basic HTTP server (supporting only GET/POST) in Java using just the Java SE API, without writing code to manually parse HTTP requests and manually format HTTP ...
2
votes
3answers
184 views

Handling CGI requests in a bare-bones http server

I am writing a basic http server in C. Handling a simple static .html file is easy but I have no idea how to handle dynamic .pl .cgi file extensions. I know I will have to use exec() but how is my ...
2
votes
2answers
363 views

What is the preferred way to serve web applications written in Lisp?

I've been researching modules for Nginx (my preferred webserver) to serve a Lisp webapp, but I haven't been able to find anything. Is there modules for Nginx, or is there better ways to serve Lisp ...
1
vote
0answers
26 views

Simple apache mina http server with basic authorization

I know about asyncweb, but documentation for 2.0 version doesn't exists(or may be Internet ban me today). So, if someone had same experience with Apache Mina and Http server with Basic ...
1
vote
2answers
82 views

serving logs via HTTP [closed]

Here is what i am trying to achieve: I have a few Linux servers that have my web App deployed on. Currently my development team access the web app, run their test cases and then SSH into my Linux ...
1
vote
2answers
39 views

Determining server-type from http request

I have a web-server written in CPP. I want to determine the server-type of the request. i.e whether the request came from http or https URL ?
1
vote
1answer
114 views

Store and display image file in Apache Cassandra

I have read jpg/png file through string buffer using cassandra Hector APIs. Now i want to show that file on html page. Is there any way to show that file on html page without creating temporary file ...
1
vote
2answers
58 views

serving static files with comanche

I used to use this code to serve static files from Comanche web server from within Pharo 1.2 image: createService | contentPath dirPath svc ma | contentPath := 'htdocs'. dirPath := ...
1
vote
1answer
434 views

How to run nginx, gevent, virtualenv and django

I can't find a good tutorial on how to run Nginx as reverse proxy, gevent as http server and django within virtualenv. I found similar tutorial, however its for uWSGI and not gevent. Any pointers on ...
1
vote
2answers
369 views

how to let Java HttpServer handle Post Request for File Upload

First of all, my question is about HttpServer in Java to handle the POST request from a client, not about a Java client who can upload file to a web server. OK. I am using a lightweight HttpServer in ...
1
vote
3answers
75 views

I wrote a simple http server that seems to work, but I run into issues when trying to access through browser

The main issue I am having doesn't seem to be in the code itself, however, I posted the code just in case. First, when I run the server and use "telnet localhost 46745" in a separate terminal I get a ...
1
vote
1answer
245 views

HTTP server using WCF for simple project - is it worth it?

I need to have HTTP server embedded in my .NET application. Simply, there will be two dynamically generated views, but one can said - there will be just two different pages. Is it worth to use WCF as ...
1
vote
2answers
292 views

Compiling Apache HTTP Server (httpd) 2.2.16 with OpenSSL

Apache 2.2.16 is currently the "best available version" of the HTTP Server. I made some changes to the source and need to recompile with OpenSSL. My question is, should I use OpenSSL 0.9.8o or ...
1
vote
0answers
56 views

Remote Control Software with queue for multiple users?

Is there a remote control software or a http-server available, which has a queue implemented, so that one after another client has the chance to control the screen on the host? Thanks a lot
1
vote
1answer
551 views

Open Source .NET embedded web/http server

I am working on a project where I need to embed a web server into my C# application so the application could display it's status via HTTP. I suppose I'll want to configure it through the http also. ...
1
vote
3answers
545 views

iPhone: How to Share/Move Files from App Directories to Other Devices

I have an app which generates some files in the app directories I need users to be able to access the files from another device/computer via file sharing over wifi, using a web browser, a ftp client ...
1
vote
4answers
443 views

How do I create an HTTP server in Python using the first available port?

I want to avoid hardcoding the port number as in the following: httpd = make_server('', 8000, simple_app) The reason I'm creating the server this way is that I want to use it as a 'kernel' for an ...
1
vote
4answers
272 views

Can you compile Apache HTTP Server and redeploy its binaries to a different location?

As part of our product release we ship Apache HTTP Server binaries that we have compiled on our (UNIX) development machine. We tell our clients to install the binaries (on their UNIX servers) under ...
0
votes
1answer
29 views

How To Redirect IP Range To Different Address?

I would like to redirect visitors from a defined IP range to a different location. For example, I want clients from this IP range 85.204.0.0/16 to be redirected to clientsA.html and clients from this ...
0
votes
3answers
206 views

Netty HTTP-server, big file upload, OutOfMemoryError

First of all sorry for my crooked English :) I have some problems during writing Netty http server that sends/receives large files (~2Gb). And I would very appreciate anybody help or explanation. My ...
0
votes
2answers
36 views

How can I make HttpServer recognise special characters in Java?

I want to make some SQL query with my Java HttpServer but it seems that the HttpServer doesn't recognize special characters in the link I submit into my browser: [1]: ...
0
votes
1answer
56 views

What's the advantage of “one thread per connection” in an HTTP server?

If I was programming an HTTP server, why should I consider handling every HTTP connection in its own thread? I've read plenty of arguments that event-driven HTTP servers are faster and more scalable ...
0
votes
3answers
56 views

Java, how to read and store file inside the JAR Package

I'm trying to build a simple HTTP Server using Java, using java.net.ServerSocket = new ServerSocket(this.port, 0, this.ip); java.net.Socket connection = null; connection = server.accept(); ...
0
votes
0answers
37 views

Confusing on the Apache http server RewriteRule behavior

I config a apache http server to rewrite the incoming request and redirect it to local file, this apache serve running as the front-end of a jboss server and connect with the ajp13, the mode_jk ...
0
votes
1answer
31 views

Generate child certificate from CA-issued HTTP cert

So, I have a wildcard certificate which is signed by a respectable CA that all browsers recognize (Equifax). This certificate is valid for *.mydomain.com and works well. Now, what I would like to do ...
0
votes
1answer
157 views

How to get online images list in flex mobile application

Does flex allow to fetch contents from server? Ex: The server is http://www.sample.com/images/, and the contents like img1.jpg, img2.jpg, img3.jpg, etc... How to get those images in my application?
0
votes
1answer
82 views

com.sun.net.httpserver.HttpServer GET reading data problem

I'm using Http servet implements com.sun.net.httpserver.HttpServer. on my client midlet I'm using the following url: String url = "http://localhost:22334/name=" + name; When request arrived to ...
0
votes
1answer
29 views

How many times should a URL-as-a-value-in-a-querystring should be encoded?

I'm really confused how many times should I encode a URL when it is set as a value in a querystring 'coz we know browser has their own encoding process. Here's the scenario: I want to redirect to ...
0
votes
1answer
180 views

.httaccess : Location not allowed here

I am getting a "Location not allowed here" error with this .htaccess. Does anyone have any idea on how I should fix this? <Files 'login'> AuthName NTLM AuthType NTLM NTLMAuth on ...
0
votes
2answers
215 views

HTTP server on iPhone?

I am using cocoa http server on iPhone. Its working fine if I set a root document. But I want to list all the contents of my "Document directory". I tried setting the root document to the document's ...
0
votes
1answer
615 views

HTTP file upload taking component for iOS

I noticed the functionality on some PDF viewer for iOS. You can actually turn phone in server and upload files there from a normal computer. I found HTTP server implementation from iOS on Google site, ...
0
votes
1answer
149 views

Writing own HTTP server

I'm planning to write an HTTP Server: There will be two modules (L & P), both executables. One of those executables (L) will be listening to HTTP request and will simply forward it to other ...
0
votes
3answers
242 views

Java HttpServletResponse with blank-value headers?

How can I make a java-based application server reply with an empty-valued response header, like this? content-length:\r\n Unfortunately when I call response.setHeader("Content-Length", len) ...
0
votes
1answer
46 views

Is Django's HTTP server rejecting remote requests by default?

I've got django running on a dev. box that I'd like to be able to make requests to from another dev. box on my LAN. I'm getting no response at all though, even though I can ping just fine, no ...

1 2