0
votes
3answers
37 views
Socket.Receive - where is the end?
Hello!
I want to receive data from a client. To be precise, all data the client sends. But then I want to send some data back so I don't want to close the connection.
Maybe it's already to late in …
2
votes
5answers
88 views
Checking if a website is up via Python
By using python, how can I check if a website is up? From what I read, I need to check the "HTTP HEAD" and see status code "200 OK", but how to do so ?
Cheers
Related
How do you send a HEAD HTTP …
0
votes
1answer
10 views
VBA/Corel Draw: How to send binary and text file in HTTP POST request to server from VBA/VB6 script running from Corel Draw 12/X4?
I want to send Corel Draw .CDR drawing binary files and XML SVG files from the application to a server via HTTP POST.
I have done some research and this existing post seems closest but doesn't work …
3
votes
4answers
95 views
Browser support of multipart responses
Hi,
I would like to create a HTTP response, using multipart/mixed, but I'm not sure which browsers support it; and if it's as convenient as it sounds, from the client's point of view.
To be honest, I …
1
vote
3answers
39 views
REST question: PUT one representation, GET a different one?
Short version of the question:
Does "GET" at a particular URI need to match what was "PUT" to that URI?
I think not. Here's why:
Given that a resource is an abstract thing that is theoretically …
2
votes
1answer
67 views
+250
Strategies for dealing with URIs when building an application that sits behind a reverse proxy
I'm building an application with a self-contained HTTP server which can be either accessed directly, or put behind a reverse proxy (like Apache mod_proxy).
So, let's say my application is running on …
0
votes
2answers
47 views
ByteArrayOutputStream uploaded to server
I am working on an applet that interfaces with a signature pad. The signature pad API has a function that returns a BufferedImage (assume its called API_CALL_TO_RETURN_BUFFERED_IMAGE()). I can …
0
votes
1answer
50 views
Invoking a http post URL from iphone using .net web service
Hi all,
I need to call a url from my iphone when i tap on a button.
The url is taking a value from the UITextField as argument, also it is using a POST method to invoke the webservice. how do i use …
1
vote
4answers
83 views
Need Good C++ Libraries For Strings & HTTP Streams
Hi,
I'll soon be starting a project of mine that heavily involves reading and interacting with websites. So I'd like to start pulling in some decent libraries to cut down on some of the dirty work …
0
votes
4answers
33 views
Check if data from a url has changed since last time?
Hi There,
For a given URL, I want to check if the content has changed since the last time. The content for the (http) URL is generated by a script which goes through several modifications regularly. …
0
votes
5answers
893 views
How do you find a free TCP server port using Ruby?
I'm trying to create a use-once HTTP server to handle a single callback and need help with finding a free TCP port in Ruby.
This is the skeleton of what I'm doing:
require 'socket'
t = STDIN.read
…
5
votes
5answers
128 views
Is there a better way to serve the results of an expensive, blocking python process over HTTP?
We have a web service which serves small, arbitrary segments of a fixed inventory of larger MP3 files. The MP3 files are generated on-the-fly by a python application. The model is, make a GET request …
-1
votes
1answer
20 views
Client Side Cookies
How to enable client side cookie for a page so that when a page is invoked for the first time , it works fine. Bur whe nthe same page is invoked for the second or third time , it gets redirected to …
1
vote
3answers
37 views
Perform HTTP Post from within Excel and Parse Results
I have access to an API. The API takes an XML post as input and then returns an XML response with the relevant data.
I want to
Send the HTTP Post to the Server (Authentication and Request will be …
0
votes
4answers
39 views
HTTP 500 error-.NET 2.0
I've recently moved from [Windows 2003-32 bit, IIS 6 .NET 2.0] to [Windows 2008-64 bit, IIS 7 .NET 2.0].
Everything seems to be working fine except from the HTTP 500 error I am getting periodically …
