Tagged Questions
16
votes
6answers
10k views
What's the simplest way to call Http GET url using Delphi?
There's a web services I want to call in my application, I can use it with importing the WSDL or by just use "HTTP GET" with the URL and parameters, so I prefer the later because it's simple thing.
I ...
10
votes
3answers
2k views
Comparing HTTP and FTP for transferring files
What are the advantages (or limitations) of one over the other for transferring files over the Internet?
(I am aware of secure forms of both protocols. I'd like to hear comparisons through personal ...
6
votes
1answer
490 views
TCP, HTTP and the Multi-Threading Sweet Spot
I'm trying to understand the performance numbers I'm getting and how to determine the optimal number of threads.
See the bottom of this post for my results
I wrote an experimental multi-threaded web ...
5
votes
4answers
1k views
Safe use of HttpURLConnection
When using HttpURLConnection does the InputStream need to be closed if we do not 'get' and use it?
i.e. is this safe?
HttpURLConnection conn = (HttpURLConnection) ...
5
votes
3answers
267 views
Why would a browser make two separate requests for the same file?
I'm debugging a program I wrote and noticed something strange. I set up an HTTP server on port 12345 that servers a simple OGG video file, and attempted to access it from Firefox.
Upon sniffing the ...
4
votes
3answers
65 views
Identify NIC on which HTTP response come
I have multiple NIC on my desktop. I am communication to one server using HTTP. When I send and receive response. I want to know out of all which NIC is getting used for communicating for a ...
3
votes
2answers
63 views
How can I examine the network communications of the Python HTTP Client?
I'm trying to isolate a bug that exists either in Python's httplib2 HTTP client or an API. (First guess is the API.) While using httplib2 to POST data to a RESTful API, I'm getting a 401 response ...
3
votes
1answer
55 views
How to test server behavior under network loss at every possible packet
I'm working with mobile, so I expect network loss to be common. I'm doing payments, so each request matters.
I would like to be able to test my server to see precisely how it will behave with client ...
3
votes
5answers
522 views
Small http server using java?
I have created the following test server using java:
import java.io.*;
import java.net.*;
class tcpServer{
public static void main(String args[]){
ServerSocket s = null;
try{
...
2
votes
1answer
155 views
Restlet HTTP problems in OSGi
I'm a fascinated user of the Restlet framework (version 2.08). This is why I'm currently trying to use Restlet in an OSGi environment for the practical part of my thesis. Finally, I arrived to create ...
2
votes
2answers
148 views
Constantly reading/writing data over a TCP/IP Port. Which one?
Unfortunately I don't know much networks. I am writing a program that has two versions. A server version and a client version. Lets assume that the client versions are installed on, say 20 PCs that ...
2
votes
2answers
130 views
C++ programming for HTTPS
I am a C++ programmer new to HTTPS. I need to write a COM based windows service in C++ which can handle HTTPS requests. But for that I would need to understand how the technologies and protocol fit ...
2
votes
4answers
345 views
POSTing to the web in Clarion
I'm developing a RESTful API for a client. The problem is, he's using a rather obscure language called Clarion. It's proprietary and closed, and the docs are not freely available online.
Whenever we ...
2
votes
3answers
1k views
Framework for Java RPC server
I'm planning on writing an RPC server in Java. The server needs to accept incoming RPCs - probably over HTTP - and answer them. Fairly basic stuff. Support for 'long polling' or 'hanging' RPCs isn't ...
1
vote
1answer
28 views
TcpCatcher: send HTTP request from hook
Is it possible, with TcpCatcher to send an HTTP request from a custom hook (a Java class)? I know the GUI let someone edit and resend any given request, but I want this process to be automatic on ...
1
vote
0answers
56 views
Handling multiple requests over a single connection using httpcomponents?
I want to use a single connection to communicate with a client device.
I am having problems keeping the connection alive. I'm using DefaultConnectionReuseStrategy() which returns false for ...
1
vote
2answers
393 views
Multiple HTTP requests vs a single TCP connection on iOS
I am developing an iPhone app that uses a web based API that I control. Would it be faster or more efficient to connect to a constantly open TCP port and make requests via the TCP API, or make a new ...
1
vote
1answer
52 views
In Ruby language, how to post data to a web page that need authentication?
I use e-texteditor as my primary editor, in which you can execute dynamic languages directly, such as Ruby, Python, Perl etc. Now I want to write blog post in this editor and post it to my blog ...
1
vote
1answer
940 views
http response to GET request - working in FF not Chromium
For fun I'm trying to write a very simple server in C.
When I send this response to Firefox it prints out the body "hello, world" but with Chromium it gives me a Error 100 ...
1
vote
1answer
87 views
c++ accessed url log
im now currently developing a standalone c++ program that would list all the access URL in a browser and its corresponding response time....
at this point of time, i can already sniff all out and in ...
1
vote
7answers
1k views
writing a http sniffer
I would like to write a program to extract the URLs of websites visited by a system (an IP address) through packet capture.. I think this URL will come in the data section ( ie not in any of the ...
0
votes
1answer
47 views
How to add Keep-Alive header for server based on Apache HttpComponents?
How can I add "Connection: Keep-Alive" and "Keep-Alive: timeout=x, max=y" headers to a response using Apache HttpComponents ONLY if the connection is going to be persistent?
If HttpComponents decides ...
0
votes
1answer
17 views
What's the fastest way to check the file type of large list of URLs (and how to optimize my code)
I have a large list (expanding over time) of URLs that I need to check their type. That's the code I currently have:
private string[] MIME = new string[] {
"audio/ogg - ogg",
...
0
votes
1answer
256 views
Sending data from android to website and receiving on web
I am new to android development and,
I want to develop an application for android, that will send data to my website, (for example longitude & latitude), my question is how to send data from ...
0
votes
2answers
127 views
How the session cookie is maintained by browser
Hey all I was trying to create a java program which will remain logged in on server whenever i browse on website no authentication will be required even if i run the program later on i.e. my program ...
0
votes
0answers
101 views
Head request generating a bad file descriptor
I am trying do a "HEAD" (http) operation on a URL, and I get the "bad file descriptor" error. But when I do a GET operation on the same URL, it seems to work fine,and I get a status code of 200. I am ...
0
votes
3answers
558 views
Java HTTP Response Code, URL, IOException
I'm getting a 503 response from a server that I'm trying to communicate with. Now, it shows me this in the log, but, I want to catch the IOException that it fires and deal with it if and only if the ...
0
votes
1answer
434 views
How do I reassemble HTTP packets from Net::Pcap?
I am using the Net::Pcap module to capture packets with this filter:
dst $my_host and dst port 80
Inside the Net::Pcap event loop I use a callback function:
Net::Pcap::pcap_loop($pcap_t, -1, ...
0
votes
1answer
127 views
[OSX Core Foundation]How can I asynchronously upload a file though HTTP and get a callback called while sending bytes of the stream?
on MacOSX, with Core Foundation, I want to upload a large file (several hundreds of megabytes) to a remote server through a REST API.
Since the file is big and I also need to give the user some ...
0
votes
4answers
40 views
providing HTTP interface
I am working on a task which basically is "Providing HTTP interface and move out of TCP". Thats what I know so far.
What I am looking for is:
1] "Providing HTTP interface" What does this translate ...
0
votes
1answer
203 views
CFHTTPStream segmentation faul during NSRunLoop
I'm trying to assemble a toy application to interact with http servers via CoreFoundation. I'm not using NSURLConnection because I want to be able to specify a proxy different from the one set in the ...
0
votes
2answers
101 views
how to know if a packet sniffed is accessed from a website directly and not linked?
is there any way to know if a certain tcp segment which has a request message to a server is directly accessed by a user through a browser. not just that its linked by the browser itself to complete ...
0
votes
2answers
91 views
how to know which is the last TCP segment received by the server when data is transferring?
When transferring data in TCP, and given all the incoming and outcoming packets, how will one know if the packet received is the last of the data?
TCP packets are fragmented into smaller parts. I'm ...