httpserver Questions
2
Solved
I'm newbie to node and I would like to create a TCP connection between client and server using node.js. I already have an http server built on node and which sends/pulls data to and from the client...
Transcendence asked 11/12, 2013 at 19:7
1
Solved
I have an asp.net Web API project, and in my WebApiConfig file, I have the following route defined:
config.Routes.MapHttpRoute(
name: "Web API Get",
routeTemplate: "api/{controller}",
defaults:...
Nuli asked 23/8, 2013 at 13:34
1
Solved
While writing my HTTP/1.1 server, I get stuck dealing multiple ranges request.
Section 14.35.1 of RFC 2616 refers some examples but doesn't clarify server behaviour.
For instance:
GET /some/resou...
Nevarez asked 19/8, 2013 at 14:3
1
Solved
I'm fairly new to coding in python. I created a local web server that says "Hello World" and displays the current time.
Is there a way to create a path, without creating a file, on the server pro...
Nonresident asked 20/8, 2013 at 23:32
1
Solved
i'm write a httpserver in Golang , but i find the http.HandleFunc will be block when multi request from the web browser. how can i do make the server handle multi request in the same time ? thanks....
Etymon asked 20/7, 2013 at 3:28
1
Solved
How can I integrate an HTTP server (like iJetty, Paw, etc) in my Android application? I can't find any useful tutorial on the Internet. Most of the websites (including the official ones) just provi...
Artichoke asked 4/7, 2013 at 12:15
1
I just encountered a weird issue about bottle on windows.
When I tested the my bottle codes, I found that it could run multiple same programs on WINDOWS using same address and port. But when you tr...
Zildjian asked 11/6, 2013 at 13:9
5
Solved
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 . ...
Edea asked 9/5, 2011 at 13:20
1
Solved
Many libraries include Expect: 100-continue on all HTTP 1.1 POST and PUT requests by default.
I intend to reduce perceived latency by removing 100-continue mechanism on the client side on those re...
Parliament asked 22/1, 2013 at 13:28
2
Solved
If I've bound my Prolog HTTP server to localhost at port 9000, how can I make Prolog generate the right path for my images? For example, if my .pl files and .jpg or .png files are located on the de...
Ochoa asked 18/1, 2013 at 7:34
1
Solved
I have a 2 part question on reading from sockets and how is it managed on Ruby servers like Unicorn or Mongrel
I've learnt that to read from a socket is different from reading a file and that the...
Pinite asked 23/11, 2012 at 17:14
1
Solved
I've been modifying some sample code to use for a web server, this way I can have dart running on both the server and the client. However, I decided I wanted to check out the performance of the web...
Viceroy asked 2/11, 2012 at 1:43
12
Solved
I need to build a simple HTTP server in C. Any guidance? Links? Samples?
Williswillison asked 6/10, 2008 at 22:10
3
Solved
I have created a TCP server using Node.js which listens to clients connections.
I need to transmit data from TCP server to HTTP server again in Node.js possibly through a Websocket (socket.io).
Ho...
Sherlocke asked 15/8, 2012 at 10:44
2
Solved
I have the following code as my python server:
#!/usr/bin/python3
from http.server import HTTPServer, CGIHTTPRequestHandler
port = 8080
host_name = "localhost"
httpd = HTTPServer((host_name, port...
Hendrix asked 10/7, 2012 at 18:28
4
Solved
I'm looking through the source code for the CocoaHTTPServer project, more specifically the HTTPServer.m file and I just don't understand this line:
connectionClass = [HTTPConnection self];
What ...
Egeria asked 22/2, 2012 at 14:31
1
Solved
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 t...
Megillah asked 10/9, 2011 at 23:52
1
Solved
I'm very new to Go. Tried this first hello, world from the documentation, and wanted to read the Host and Scheme from the request:
package hello
import (
"fmt"
"http"
)
func init() {
http.Han...
Guinn asked 1/8, 2011 at 13:26
3
Solved
Consider the following example:
import string,cgi,time
from os import curdir, sep
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
class MyHandler(BaseHTTPRequestHandler):
def do_G...
Jempty asked 7/7, 2009 at 19:6
1
Solved
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
NTLMAut...
Patras asked 12/7, 2011 at 16:47
3
Solved
We are trying to write an update server for our software using the TIdHTTPServer component. Currently we are serving an XML file that lists the available updates and their file versions etc.., when...
Dmitri asked 10/12, 2010 at 10:43
1
Solved
I try to publish Atom feed (generated with Rome) using Java 6 SE httpserver. For correct feed discovery in FireFox I need custom headers.
This is my code:
Headers headers=e.getRequestHeaders();
...
Lafollette asked 1/12, 2009 at 19:31
1
Is there a way to make BaseHTTPServer.HTTPServer be multi-threaded like SocketServer.ThreadingTCPServer?
Recollection asked 7/3, 2010 at 21:56
3
Solved
So, lets say I'm writing a web server and I want to support "very large" file uploads. Lets further assume that I mean to do this via the standard multipart/form-data MIME type. I should say that I...
Perpetuity asked 4/3, 2010 at 4:39
1
Solved
I have a web server based on paste.httpserver as an adapater between HTTP and WSGI. When I do performance measurements with httperf, I can do over 1,000 requests per second if I start a new request...
Meteoritics asked 23/11, 2009 at 8:22
© 2022 - 2024 — McMap. All rights reserved.