0
votes
1answer
22 views

Is it possible to see if AJAX was used just by looking at the HTTP traffic?

I am making a program to monitor my network, and in this program I am reading the HTTP traffic which is going through my network. One thing I want to do is to separate the AJAX HTTP traffic from the ...
2
votes
2answers
44 views

Each thread using its own proxy

I'm trying to set up a Java program, where each thread can use its own proxy. Right now I only found a way to set a proxy globally. ...
0
votes
2answers
44 views

How to abort HTTP transaction

Browser ----> Http Proxy ----> Web server Assume for a request, the web server has indicated that it would send 200 bytes as response body using Content-Length header. The network is broken ...
0
votes
0answers
17 views

In HTTP video streaming, is it possible (if so, is it normal) to have a dynamic application buffer?

With "dynamic" buffer I mean a buffer that you can change the size of. I just read that streaming systems usually use moderate-size buffers because of wasted bandwith if the user terminates the video ...
0
votes
1answer
19 views

Testing multiple mac/ip adresses connections

I'm building client-server software (some sort of http Rest API) And there is a throttling module that prevents one IP to do more then N requests/second I want to do stress testing of the system - ...
-4
votes
2answers
38 views

Is it possible to connect a computer using HTTP Protocol? [closed]

Let us see I have a GSM Modem connected to a computer that having a valid Static IP Address. Now as a PHP Developer i want to connect to that computer and have to listen the COM1 port. This is ...
1
vote
1answer
19 views

Viewing http requests made by flash players

I want to view the http requests that are made by the flash plugin while seeing a video. I am using google Chrome on Mac OSx. I can not see the video getting downloaded in the network panel neither ...
0
votes
1answer
72 views

Wireshark not displaying GET or POST data

I'm a student and I'm taking my first networking class. I'm working on an assignment designed to get me used to using Wireshark and understanding packet transfers. Part of the assignment is to collect ...
0
votes
0answers
31 views

How to connect to an embedded system via its public IP?

If I have a Java ME program installed in some sort of boxes that are distributed to different locations, will I be able to connect to a socket of such a box on port 80 given I know its punlic IP ...
0
votes
2answers
43 views

Modifying HTML content on the fly => SLOW

We are working on a PROXY based protection software. It catches the user http request, do the proxy stuffs, and catch the http response, modify its content and send it back to the original user. We ...
2
votes
2answers
140 views

Using Libcurl to send very large strings to a server using REST API?

I am trying to send very large strings (up to 16GB worth) to a cloud server (similar to AWS) for storage as a file using the REST API. I would like to stream the string in smaller chunks to the ...
3
votes
2answers
63 views

Simple HTTP Server in C - How to response to Browser?

my server is sending a sample response header with body to a request: static char* not_found_response_template = "HTTP/1.1 404 Not Found\n" "Content-type: text/html\n" "\n" ...
1
vote
2answers
52 views

Are white spaces and blank lines in http response affect the speed of downloading the page?

I found by wget some_url that it has so many white spaces and blank lines like <span class="meta"> someValue </span> And the ...
-1
votes
1answer
75 views

HTTP Server Error 403. Forbidden

I am getting the following error: Forbidden: You don't have permission to access [directory] on this server. I need direct access to this directory and sub folders on that directory so that my ...
0
votes
0answers
24 views

How do I send 3 pieces of data with Basic Authentication in Android?

I am trying to build a registering functionality in my Android application. This requires users to enter a full name, email and password. This is what I am doing right now: HttpClient httpClient = ...
0
votes
1answer
40 views

Does closing of input/output stream gotten from getInput/OutputStream() affects recreation of underlying Socket?

I've already looked through resources which describe specifics of work with HttpURLConnection as in Java so in Android (where there is not default implementation of working with connection pool) and ...
0
votes
0answers
38 views

https:// issues (with Tortoise, Ruby on Rails bundle install…)

I recently set up windows 7 64 bit on my notebook, where I use Tortoise SVN. Also I am running Ubuntu 10.04 32 bit in a virtual box, which I use for Ruby on Rails programming. Now I noticed some ...
1
vote
0answers
40 views

Is it possible to execute more than one http request in a queue?

I want to add more than one HTML requests to a queue. These requests must be executed one by one automatically and I need to handle responses of each request separately. How can I do this?
1
vote
1answer
109 views

http response is using chunked encoding when data is present

I have a web service that, when called, may or may not send a body back with the response. For some reason, whenever there is no data the Content-Length header is present, but when I send back a body, ...
0
votes
0answers
25 views

Networking: Create mini-internet [closed]

I know this is not programming related, but I thought you guys might be able to help as well. I am looking for tutorial/guide to create my own mini-internet. IE set up 2 PCs and set up webservers and ...
1
vote
1answer
115 views

Why Network Packet Analyzer not capturing Http Post Request through Web Client

I am using upload file method of web client to post transaction to a particular URL. I am using wireshark to capture this network communication, but surprisingly wireshark is not showing this ...
1
vote
0answers
117 views

Partial GET method in Java Logical Error

I implemented Java Network program that reads a txt file from an HTML content. I was able to use HTML_OK scenario but When I am trying to get a "Partial GET" request, the connection returns again ...
1
vote
2answers
121 views

Why do I keep getting java.net.ConnectException in my Android application?

I have recently refactored some of my networking code in my android app to use the Google recommended HTTPUrlConnection. Previously, I was using Apache's HTTPClient. I'm not sure if either of those ...
0
votes
0answers
55 views

Glassfish - No route to host

In our enterprize application, App-server (Glassfish) connects to a Content Management system to get some static content to be displayed on web pages. Connection is made through: ...
0
votes
1answer
106 views

C# HttpWebRequest vs browser

I'm trying to integrate with Shopping.com REST service. so I wrote a simple (minimum code) C# application to retrieve the XML data using HttpWebRequest class. I've used StopWatch for bench-marking and ...
0
votes
0answers
141 views

HTTP Connection Pooling

Service A calls into service B via HTTP. This happens frequently, and the size of transferred data is not very big. I discovered that re-using the same TCP connection to send multiple requests from A ...
0
votes
1answer
37 views

Can I get a server's server time by querying its HTTP header?

Say, can I get http://www.google.com 's server time? How to do that in ObjC?
0
votes
1answer
36 views

What does the time measurement in Firefox console measure specefically?

If you go to Facebook. [19:35:16.999] GET https://www.facebook.com/ [HTTP/1.1 200 OK 257ms] If you go to Twitter, [19:36:42.307] GET https://twitter.com/ [HTTP/1.1 200 OK 240ms] If you go to my ...
1
vote
1answer
71 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 ...
-1
votes
1answer
30 views

extremely weird network issue (HTTP) related (5s/10s delays) [closed]

I have a very strange network issue related to my PC (Win7 64bit pro) and http traffic. In general it is all about strange 5s/10s delays for resources obtained using http protocol. I am 100% sure it ...
0
votes
3answers
61 views

How do I write images through HTTP in C?

Just now I have no problem for writing the HTML content through a connection. sprintf(toreturn, "%s\r\n%s\r\n%s\r\n\r\n%s", "HTTP/1.1 200 OK", "Content-Type: text/html", "Connection: ...
0
votes
1answer
60 views

Why does a browser send two requests for the same page when it's refreshed?

I've created a simple Node.js app which logs to console the current request.url for every incoming HTTP request. When I refresh the page in Chrome on Mac OS X ML, I receive two requests for the same ...
0
votes
2answers
108 views

How do I send an image over HTTP protocol in C?

I'm a student doing a web server exercise and I need a bit of help. I have my web server working fine for text pages but whenever the brower sends a ---GET /img.jpg HTTP/1.1 request, I don't know how ...
0
votes
1answer
50 views

Ruby HTTP server without networking

I am trying to add an HTTP server to an existing Ruby application. The application is based around a select loop, and I want to handle incoming HTTP requests there too (it is important to process the ...
-1
votes
1answer
58 views

Reading HTTP request on an Adhoc network [closed]

I have an app on my iPhone that makes HTTP request to my home router to talk to a home automation router that my phone connects to via wifi. How can I read the HTTP requests made from the iPhone if ...
1
vote
1answer
151 views

FIN pkt with HTTP connection after some time

Opened 2 TCP connections : 1. Normal connection(while implementing echo server,client) & 2. HTTP connection Opened HTTP connection with curl(modified) utility while running apache as server, ...
1
vote
3answers
296 views

NodeJS - TCP - Sending an HTTP request

I'm trying to send an HTTP request via TCP sockets. But I'm not getting any response from www.google.com at all. No idea what I'm doing wrong. Here is the code: var client, net, raw_request; net ...
-1
votes
1answer
43 views

Is the HTTP content-range header compatible with chunked transfer encoding?

As above, is byte serving chunked transfer possible in the HTTP standard?
0
votes
2answers
48 views

Should HTTP be used for the application? [closed]

I am designing an application in python and one of the requirment of the application is that it makes connections to a server to upload its IP address and request other IP addresses. Is it ok to just ...
0
votes
1answer
252 views

AFHTTPClient sets Authorization Header Field like “ Token token='\75845hjhrtje845395748' ” But i just want to be the token inside

i am currently trying to implement authorization with AFNetworking. So i tried to put the access_token inside the HTTP-Authorizationheader. But what arrives at the server is like : Token token = ...
0
votes
1answer
95 views

Get data from website through proxy

I am working on a C program to connect to a proxy and then through the proxy pull data / send data to the website. I am confused however on what to do after I get the "CONNECT" statement to work. ...
0
votes
2answers
195 views

proxy tunneling with c

I am working on a small project (C programming) to tunnel through a proxy and when I try to do it I get a error: HTTP/1.0 400 Bad Request Server: squid/2.7.STABLE9 Date: Mon, 07 Jan 2013 22:20:56 GMT ...
1
vote
2answers
32 views

Ports & processes

Is the port number unique per process? Is it the relation 1:1 If no how does the system know to with process to deliver the response?
-1
votes
1answer
75 views

Connect to IP in application layer, Adobe Air

I'm working on a project about "controlling embedded system by smartphones via wifi", I developed my app on adobe Air, and built my system on PIC microcontroller to accept connections on application ...
0
votes
0answers
46 views

Filter request without proxy

Is there a way to filter HTTP request without setting proxy in browser or other software. I mean, whether exists a WinAPI function(s) that can catch all the packets on "low-level" before sending them ...
0
votes
0answers
88 views

How can I access localhost by hostname while running localhost squid proxy?

I can access localhost:49250 through localhost proxy. I can access myhost:49250 with no proxy. How do I access myhost:49250 through localhost squid proxy? Squid 2.7
2
votes
1answer
175 views

Linux TCP weirdly unresponsive when under heavy load

I'm trying to get an HTTP server I'm writing on to behave well when under heavy load, but I'm getting some weird behavior that I cannot quite understand. My testing consists of using ab (the Apache ...
0
votes
1answer
43 views

what should the application behave when a network request has not finished

For example, when I send a http request to the server and before I got the complete response data, I usually show a progress dialog and make it uncancelable. I think this design is not friendly at ...
1
vote
2answers
212 views

How can i edit a HTTP a request C# using fiddlercore

What I want to be able to do: Edit HTTP Requests before they are sent off to the server User navigates to a webpage of their choice in their browser > They encounter a request they wish to edit > ...
0
votes
0answers
61 views

how to redirect for http requests on network mirror

how to redirect for http requests on network mirror (Session Hijacking). Is it possible to use Python? I'll Block Access to a Website without iptable.

1 2 3 4 5 6