0
votes
1answer
13 views

incomplete header with socket c#

Hi I've try to send and http request to a Shoutcast stream site and then read response, I've this two sources one is the main ( I've tested with wpf) and other is a little helper for socket... well ...
2
votes
1answer
28 views

Truncated tar.gz archieve after download by a self-coded download manager using socket

i try to code my own download manager using c and sockets, now somethings strange happens and I really cannot explain why. So what I do is: I create sockets, connect to server, create and send a GET ...
0
votes
1answer
35 views

Sending HTTP POST request using sockets

I am currently learning Stream Programming Guide from Apple to make use of sockets. Can you guys provide me some reference link which talks about sending HTTP request (GET & POST) via ...
0
votes
0answers
10 views

HTTP Communications- Browser not receiving all data

I have set up a server with my homemade http code on it. My code binds to a port(80) and then listens for requests on that port. My response is sent in pieces using multiple send() calls. If I access ...
0
votes
0answers
35 views

Limiting Maximum Number of Connections in proxy server

I am attempting to implement a proxy server and a proxy client in C (separately yes!). So in this scenario, we have a client, a proxy client, a proxy server and a server. The proxy client accepts a ...
0
votes
2answers
44 views

Is it possible for a Windows application to interact with a web-page?

I have a HTML file which will always reside locally (from the application's perspective). Is it possible for this application to communicate with the web-page using HTTP (localhost) or sockets or ...
0
votes
0answers
22 views

What is the concept/idea/working of shutdown feature in Tomcat web server project

I am asking here in continution of my previous question whose link is here. I implemented the shutdown feature in my Http Web Server, and the code is given below. But I want to implement the idea of ...
0
votes
0answers
236 views

Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data

I am writing ThreadPooled Web Server. But I found a very big problem, and my head is banging in trying to solve this problem. At the end I am unable to solve this. The problem is very strange. When I ...
0
votes
1answer
19 views

Why Response Header is not shown in Client's shell?

I am writing HTTP WEB SERVER code. Till now I implemented GET, HEAD method. Now I have to implement OPTIONS method. But this time there is no response received by client's shell. I didn't understand ...
0
votes
0answers
27 views

What is the standard data-structure to get Http client request in Http Web Server project

I am writing HTTP WEB SERVER. In that code, I used byte array to get the client request, and then process, but that have performance issue, when I call different RequestHandler , i.e., Get, Head and ...
1
vote
2answers
44 views

How to exit from the accept method of serversocket?

I want to shutdown the HTTP threadpooled server. For that I make one thread that is listening STDIN. If I type shutdown, it shutdown the server. Code is public class WebServerShutdown extends ...
0
votes
1answer
19 views

How to code retry policy for port in server side to listen client request?

I am writing HTTP WEB SERVER code. In the mean while I have to code retry policy on using port, so that on that port server can listen client's request. Normal Code:- serversocket = new ...
0
votes
0answers
96 views

fsockopen() timeout sometimes not working

Sending some data points constantly (aiming for once a second), using an infinite loop of POST requests in PHP. The data is highly time-dependent. If there's a timeout, I don't care about the lost ...
0
votes
1answer
92 views

Why code shows “Error 354 (net::ERR_CONTENT_LENGTH_MISMATCH): The server unexpectedly closed the connection.”

I am building my HTTP WEB SERVER in JAVA. If client request any file and that file is on that place in server, then server gives that file to client. I also made this code, and it works fine. The ...
1
vote
1answer
62 views

PHP code doesnt “compile” when connecting via sockets

I am writing a script for mIRC that will fetch data from my webserver, that code is generated via PHP. It works just fine when i connect via my browser (firefox). However, when i connect via the mIRC ...
8
votes
2answers
327 views

in HTTP mode, does node.js have substantial performance advantage over Java?

I just started to code in node.js for a little while. Now here is one of my questions about it: In HTTP apps, given the request-response model, the single app thread is blocked until all the back end ...
0
votes
1answer
80 views

Differ between header and content of http server response (sockets)

i want to know, is there a possibility to find out where in the response Stream the header ends? The background of the question is as following, i am using sockets in c to get content from a website, ...
0
votes
1answer
65 views

Java reusing socket

I have a socket connection over HTTP to a service. The service only supports HTTP/1.0 which by default closes the connection when a response is sent. There is a parameter added to this version of ...
-1
votes
2answers
61 views

Socket Programming - Weird Behavior

I am trying to build an HTTP client. So far I have something that takes an ip address and prints the http response, no problem. But when I try to take that response and put it into a string the ...
0
votes
1answer
108 views

socket transaction not going through

i'm in the middle of writing a webserver that's having issues sending pages to a browser. It sends the first file correctly ( this file includes two css files ). but, after it sends the second file ...
0
votes
1answer
35 views

Sockets don't appear to be closing when using Node.js http.get

OS X 10.8.3 Node 0.10.0 I'm using the 'http' module to make requests of the Facebook graph API. Here are the options that I pass to 'http.get': var options = {host: 'graph.facebook.com', ...
0
votes
1answer
67 views

Get only http status code with sockets

I have to check the http status codes of some domains, with the smallest amount of traffic is possible. I decided to use sockets. Problem is that the system is receiving allways the full header and ...
1
vote
1answer
33 views

Unable to get whole http message

I am using curl for sending a POST HTTP message to my server. At Server side I am opening a socket and reading the data by using following code recv(socket_Fd, (void *)ucBuffer, ...
0
votes
0answers
58 views

Http deamon server in python - doesnt work properly

I wanted to write my own HTTP server in python (on sockets, not BaseHTTPServer class). I found this code and modified it to be a http daemon server but it doesnt work ... (when I enter 127.0.0.1:8888 ...
0
votes
0answers
117 views

Objective C (iOS) socket for small http server: Missing data

I'm trying to build a really small socket connection on my iPhone app, it suppose to listen on an specific port for some URLs code I'll send it from a web view using JS (inside the same app). At ...
6
votes
1answer
327 views

How can I properly handle persistent TCP socket connections (to simulate an HTTP server)?

So, I'm trying to simulate some basic HTTP persistent connections using sockets and Ruby - for a college class. The point is to build a server - able to handle multiple clients - that receives a file ...
0
votes
2answers
27 views

How much time must have a web request (timeout) for a best user experience?

How much time does a http(s) request has to have for best user experience. This is a general question for any programming language. It's the time the request takes, once the user has made an action ...
0
votes
0answers
27 views

python socket & HTTP server response: sending non-text files via http protocol [duplicate]

Im trying to write my own little HTTP-server on python. At this moment it successfully sends to browser only text/html pages. Now i want it to sent images (favicon.ico for example), but i dont know ...
-1
votes
1answer
53 views

client/server http requests sockets

I need to create a client website with a button that, once it's been clicked, sends an http request to a web server. The web server then connects to a TCP socket. Through the client page I should be ...
0
votes
1answer
66 views

No data sent from own HTTP server to browser

I've created simple Java server that uses HTTP protocol over port 4567 to accept connections and (at least for now) send hardcoded response to browser: public class Connection extends Thread { ...
0
votes
1answer
110 views

Connection reset between webapps within Tomcat instance

I have two web apps deployed to one Tomcat 7 container. They communicate with each other over HTTP on localhost. I'm occasionally seeing connection reset errors: Caused by: ...
0
votes
1answer
78 views

How to handle HTTP requests

When a browser requests a web page, the browser will send a lot of requests. How do you need to handle these requests? Can I accept all those pages multi-threaded and send the result back (With send ...
-2
votes
2answers
82 views

HTTP Server from scratch [closed]

I'm trying to write my own HTTP server, just for fun and learning about more about HTTP, sockets, and threading.Check out the follwing code for a simple HTTP server that i wrote in C using TCP-socket ...
0
votes
0answers
54 views

Python httplib2 hangs on POST, occasionally

I have a celery process that triggers calls to the Zencoder API. Occasionally this will hang on httplib2.Http.request. For background, although this may not be connected: the celery task will take a ...
0
votes
2answers
195 views

Java Socket connection timeout Error Coming while contacting SMS gateway

Here is the code I am trying to send SMS through the red Oxygen server Here is the code I am executing below final String requestURL = "http://www.redoxygen.net/sms.dll?Action=SendSMS"; final ...
0
votes
0answers
105 views

onvif test tool running in windows 7 can't be accessed from other linux machine

I am implementing the onvif service in NVT. Here I met a weird problem as followings. Anyone can help me? Environment: ONVIF test tool (12.06), host machine: windows 7 NVT: Ubuntu10.04 ...
1
vote
1answer
72 views

Get size of HTTP response in C

I'm building a fuzzer (web application security tool) and I'm having some trouble building the proxy server. Below is my code for a function that takes in a char* http message, converts a host name in ...
-2
votes
2answers
124 views

Http client program using socket not working

#include <stdio.h> #include <stdlib.h> #include <netdb.h> #include <netinet/in.h> #include <sys/socket.h> #include <string.h> /* getLine() Reads a line from a ...
0
votes
2answers
102 views

how to write a HTTP request to a file in C HTTP client program

can some one tell me how can we write a HTTP request as below to a file (FILE *str) GET /HTTP/1.0 Host:Google.com Connection: close I am Trying to write a HTTP client Program in and I got stuck at ...
0
votes
1answer
40 views

POSTing data to outside server

It's been a long time since I've dealt with this so I need verification of my thinking. I have a web site that will get a form POST'ed to it. We will modify that data into XML and need to POST that to ...
2
votes
1answer
224 views

Delphi- downloading files from the web with sockets

I have tried Synapse, Indy and ICS and I am not satisfied with them. I want to download multiple files in multiple parts at the same time, support resuming, gzip-encoded files, cookies, logging to ...
0
votes
1answer
91 views

HTTP over AF_UNIX: HTTP connection to unix socket

We have HTTP server , for which we have HTTP client based application (on Linux) working fine. But now we need to listen on Unix domain sockets from our client application. So is it possible to ...
1
vote
0answers
434 views

Reading Http Get request from a inputstream and sending it to the host. using sockets

i have this assignment where i am supposed to write a proxy server that uses java sockets to handle get requests from a client. I am now stuck and have been looking all over google to find the answer ...
0
votes
1answer
52 views

Python recv failing for certain websites

I've written a pretty basic polling proxy web server using Python's socket module. For the proxy I've written a simple readline() using socket's recv() function. It goes something like this: def ...
5
votes
2answers
376 views

Using Python “requests” with existing socket connection

The Python “requests” library is currently all the rage, because of the beautiful interface that it provides for making HTTP requests — but beneath it there seems to be many layers of indirection — ...
2
votes
1answer
156 views

node.js-http: listen on local unix pipe/socket

Is there a possibility to listen a node.js-http server natively on a local unix pipe/socket? (e. g. /var/tmp/http.sock). I want to use it in combination with WebSockets and a reverse proxy.
1
vote
2answers
89 views

Why is my program reading extra bytes in HTTP/1.1

I'm experimenting with sockets and trying to build a very simple webbot. This is my code: #include <sys/types.h> #include <sys/socket.h> #include <arpa/inet.h> #include ...
0
votes
2answers
114 views

Can setConnectionTimeout stop a download from completing

I am downloading a file in my app and using the following time-outs. HttpParams httpParameters = new BasicHttpParams(); HttpConnectionParams.setConnectionTimeout(httpParameters, 5000); ...
4
votes
1answer
197 views

Creating a simple HTTP proxy in C [closed]

I'm a newbie programmer looking to create a simple proxy in C that forwards HTTP requests (through TCP). Are there any resources online that can get me started? I've already looked at "Beej's Guide to ...
0
votes
1answer
100 views

What does this socket error mean?

First of all thanks to everyone that answers questions on here. I have used this forum as a java bible. This is a homework problem and here is the assignment: Write a program in Java that uses ...

1 2 3 4 5 9