0
votes
0answers
36 views

Java - client streaming video from url

I have a quick question. Is possible make a client application which streaming video from website (basically from http url eg.: http://stackoverflow.com/videos/video.mp4)? If yes, can you tell me what ...
1
vote
0answers
74 views

Play AudioStream (RTP, HTTP) on Android

I'm using Android MediaPlayer to play a stream on my device but I get an error upon playing a stream. I'm using VLC on my PC to stream Audio to my device. With the Android version of the VLC I am ...
0
votes
1answer
56 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 ...
0
votes
0answers
37 views

how can I brodcast a VLC stream on website

I am streaming an mp3 file using VLC. it is being broadcasting using the URL "http://domain.com:8080" . If I enter this url on another VLC player, it will play it. But how can I play this on a ...
0
votes
0answers
45 views

SOPcast http or rtmp streaming

I want to play a sopcast stream in JWplayer. I need the http or rtmp streaming url. When I open the stream in VLC I get the link below: http://127.0.0.1:[portnumber] (this is local) but I'm ...
0
votes
0answers
42 views

C - Stream live camera capture on an HTTP server

How might I go about writing a c program that would take live webcam capture and stream it via an server (likely HTTP)? I'm not looking for the exact code, just some pointers on where to get started ...
0
votes
1answer
80 views

HTTP requests with file_get_contents, getting the response code

I'm trying to use file_get_contents together with stream_context_create to make POST requests. My code so far: $options = array('http' => array( 'method' => 'POST', ...
0
votes
1answer
85 views

ASP MVC : Resuming downloading

The idea is simple, i am creating a service where user can put the direct link of a file that is being hosted on another website and my program will open a stream to that remote server and start ...
0
votes
1answer
129 views

Incorrect Java HttpClient's response stream

In my application I need to parse a website and save some data from ir to the database. I am using HttpClient to get the page content. My code looks like this: HttpClient client = new ...
0
votes
0answers
120 views

Getting http chunked response with Tcp

I would like to know how can be read an http response with Transfer-Encoding chunked. I wrote an example of what I am doing. One problem I came across with this is that clientStream.DataAvailable ...
0
votes
0answers
37 views

HTTP Stream Redirect Setting Cookies

I am grabbing the contents of a page that, under certain circumstances, sets cookies and reloads using header("Location: " . $this_page_url); The issue is that, although I follow the redirect, these ...
1
vote
2answers
125 views

Android mediaplayer duration always 0 on streaming [closed]

I want to play mp3 from HTTP, all works except the getDurtion() is always returning 0 so my progress bar doesnt work, any ideas? i tried everything i found on google and here, nothing works if i use ...
0
votes
1answer
139 views

Node.js throttle streams

I'm trying to create a Node.js HTTP file streaming server. I want to do the following: sender --HTTP POST--> Node.js HTTP Server <--HTTP GET-- receiver I have this already working with the ...
2
votes
2answers
113 views

Non blocking stream that supports seek from http response in Python

I have an http response from urllib response = urllib2.urlopen('http://python.org/') Eventually, I want to be able to seek() within the response (at least to the beginning). So I want to be able to ...
0
votes
2answers
195 views

Streaming data from client with HTTP Post

I would like to stream data from the client to the server. My application streams audio data to the server. I do not know how long the audio will be when I begin streaming it. I want to reduce ...
1
vote
2answers
176 views

Some basic HTTP protocol questions (programming and theory)

Before you decide its a tl:dr (too long, didnt read) post try to read at least some, since Its a question broken down in a lot of small pieces. Some of which you can probably answer and help me. ...
1
vote
1answer
264 views

Stream music in loop over http using java

I have a small self-written web-server, that is capable of processing POST\GET queries. Also, I have a Handler, that receives audio files and puts them in the response stream, like that: package ...
0
votes
1answer
111 views

How to record flash stream in php [closed]

I want to record flash stream using php. Do u guys know how to do that? I want script to record for example youtube file playing. I have VPS so it can use some software. Any ideas?
1
vote
1answer
247 views

Access to http request body raw data

I am trying to implement a web application using play framework as a replacement for old http server implementation that is interfacing the old non-browser legacy http client. That client is written ...
2
votes
3answers
529 views

php file get contents with post data [duplicate]

Possible Duplicate: Drupal login via Rest server I have been using this code for file get contents with post data but receiving an error Warning: ...
2
votes
0answers
136 views

How do I get around stream_select failing on “filtered” http streams?

I am attempting to do a stream_select on a fopen()'d http stream. However, stream_select keeps giving me these errors and the select fails. Warning: stream_select(): cannot cast a filtered stream on ...
1
vote
2answers
121 views

Passing duration when streaming mp3 from server to html5 audio

I have a node.js server converting and streaming mp3's on the fly. I am using an HTML5 audio tag to consume this stream, and the issue I'm having is the audio element doesn't know the duration of the ...
0
votes
1answer
296 views

Node.JS: stream HTTP client request body?

I want to create a two-way stream between a Node.JS client and a Node.JS server, via an HTTP connection. But it seems that the server's request event is not called until the client calls req.end(). ...
2
votes
0answers
111 views

TPROXY with libcurl or http:// streams under PHP

I have a PHP app that acts as TPROXY between users and some HTTP resources, i.e. setting the socket in transparent mode by binding to users' IP for the outgoing connections: ...
0
votes
2answers
102 views

PHP: fopen vs streams

Site running PHP 5.3, which has the "streams" extension built-in, but it doesn't appear in the extension list, so I guess it cannot be disabled. "allow url fopen" is disabled, so I cannot use fopen ...
2
votes
2answers
1k views

node.js write http response to stream

i'm fetching some binary data over http. My code looks like: var writeStream = fs.createWriteStream(fileName); request(url, function(err, res) { res.socket.pipe(writeStream); }); now the output ...
0
votes
0answers
41 views

HTTP PHP extension ignorance [closed]

So, while trying to get streams and url handling I found a pear extension pecl_http that looks to greatly simplify http requests and responses and I wondered if anyone else had already worked with it ...
0
votes
2answers
220 views

Open SDP File in .Net C#

I'm developing a C#’s application with the ability to view an MJPEG encoded video stream, from an encoder (Teleste MPX-E8). I can see a stream through the Encoder’s Video Encoding Settings page, and ...
0
votes
1answer
208 views

Stream and download large videos on iOS devices over http

Is it possible to access large video files (up to 300 MB) that are stored on a http server? The user should be able either to download the video file (mp4) on the device (iPhone and iPad) and access ...
0
votes
1answer
137 views

html stream chunking file unknown size

Hi I would like to stream data from my webserver. here is the catch. The data does not exist on my server I retrieve it as a live content from another server. So I do not have the size of the file. ...
0
votes
1answer
154 views

PHP : how to post a 3 gigabyte chars long string by curl or output it in browser?

I'm doing an online database dumping tool. But when I output the data, PHP will wait until it can calculate the length it needs to dump, which may confuse the user about whether the API is working or ...
0
votes
0answers
510 views

PHP mp4 video stream to iPhone

I am trying to get video streaming to work with PHP and a iPhone device. I understand that the iPhone requires a properly formatted mp4 file and a server supporting file range requests. If I enter ...
0
votes
1answer
1k views

java.io.IOException: Premature EOF while downloading pdf over https

I get an error when trying to download a pdf with java. I know there are similar questions, but not as specific as mine. My code snippet: URL url = new URL("https://.../abc.pdf"); HttpURLConnection ...
1
vote
1answer
823 views

HttpRequest PUT content in poco library

I want to send some data from a C++ application to a server using a HTTP PUT request. I am using poco library for networking in my application. I am using this code snippet: HTTPClientSession ...
1
vote
0answers
239 views

Pipe data from HTTP GET to HTTP POST/PUT

I'd like to stream data from an HTTP GET request to an HTTP POST or PUT request. I'd prefer to use Ruby and have already made an attempt using EventMachine and EM-HTTP-Request. Here's my attempt, to ...
1
vote
2answers
89 views

Is there a reason why java does not have a class which allows both reading String and byte [] from a stream? [closed]

Is there a reason why java does not have a class which allows both reading String and byte [] from a stream and also another for writing String and byte [] to a stream? What if it is necessary to ...
0
votes
1answer
197 views

Jetty: how do I get unbuffered InputStream or Reader from request (to “stream” events over HTTP)?

I am experimenting with sending events over an established HTTP "connection". It works when done to "stream events" from server in server's HttpServletResponse: by setting the buffer size of client ...
0
votes
1answer
408 views

Should I increase buffer size to improve performance when making repeated GET requests?

I'm writing a .NET program in C# that makes GET requests and downloads pages to parse - a sort of crawler. I noticed that it has to read from the stream multiple times to download each page because ...
2
votes
2answers
1k views

Read from basic stream (httpRequestStream)

I have a basic stream which is the stream of HTTP request and var s=new HttpListener().GetContext().Request.InputStream; I want to read the stream (which contain non-Character content, because ...
0
votes
2answers
161 views

How to manage loop of request-response dialog with server

I'm writing a simple client-server system and the question is: how to structure my client code in order to get POST request-response working in a loop? At the moment it looks something like this ...
5
votes
2answers
3k views

Can I stream a file upload to S3 without a content-length header?

I'm working on a machine with limited memory, and I'd like to upload a dynamically generated (not-from-disk) file in a streaming manner to S3. In other words, I don't know the file size when I start ...
1
vote
1answer
819 views

WCF Rest Stream accepting any content type

My WCF REST service method: [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Xml)] Metadata[] Extract(Stream stream); Is failing, and returing an error to the client indicating that ...
2
votes
1answer
816 views

Which one of those two node.js proxies can handle most of the cases and is more performant?

The first proxy is: var http = require('http'); http.createServer(function(request, response) { var proxy = http.createClient(80, "google.com") var proxy_request = proxy.request(request.method, ...
2
votes
1answer
392 views

Writing to servlet stream

I'm not sure if what I'm trying to do is possible, it might not. Here is my problem: I'm trying to use a Servlet to pass information from a client to a server via HTTP. This communication is very ...
0
votes
1answer
175 views

Consume XML Push Data Feed on Open Channel with Java

I am looking for some example Java code and/or utility library for consuming an XML push data feed over http. I already know how to consume and parse a basic XML feed using XStream and STax. That is ...
0
votes
1answer
863 views

Send Http Post Message using a stream in Java [duplicate]

Possible Duplicate: How to use java.net.URLConnection to fire and handle HTTP requests? I have to send an http post message to a server. This message must have an header and a body and to ...
1
vote
1answer
3k views

Wireshask - Get rtmp url from this stream?

I have been use to listen to a radio for quite a long time from WMP. But then they changed their structure and move to FMS server, which stream RTMP. I can only listen from their website. As much as ...
1
vote
3answers
3k views

How to save Pictures from MJPEG Stream with Java?

How is it possible to save the pictures from a MJPEG Stream in Java? I want to call a HTTP MJPEG address and save every single frame to a seperate picture file.
0
votes
1answer
314 views

Use non-blocking streams to paralellize REST-Api requests in PHP?

Consider the following scenario: http://www.restserver.com/example.php returns some content that I want to work with in my web-application. I don't want to load it using ajax (SEO issues etc.) My ...
0
votes
2answers
630 views

Retrieving xml stream from http server - android problem

In my applicaion, I have to fetch a list of some assignments from a server. On the server, i have a method,say fetchAssignments(int ,String), which takes two values as its parameters. Period ( ...

1 2