http-streaming Questions

1

I have following code written in nodejs using http module. It's basically listens to event stream (so the connection is permanent). http.get(EVENT_STREAM_ADDRESS, res => { res.on('data', (buf) ...
Scruggs asked 12/11, 2021 at 12:19

1

I am trying to call a twitter endpoint that gives you a constant streams of json results back to the client https://documenter.getpostman.com/view/9956214/T1LMiT5U#977c147d-0462-4553-adfa-d7a1fe59c...
Aventurine asked 14/11, 2020 at 3:59

2

Solved

My understanding is that HTTP streaming involves the client sending an HTTP request and then response to the request being sent over time allowing the server to essentially push to the client. In w...
Pia asked 2/3, 2017 at 15:50

6

Solved

I have read this question but it doesn't exactly answer my question. Unfortunately, it looks like things have changed in in the XHR object since I last looked at AJAX, so it is no longer possible t...
Pelecypod asked 12/10, 2011 at 13:15

1

I have a (GET) endpoint that sends data in chunks (Transfer-Encoding: chunked). The data is JSON encoded and sent line by line. Is there a way to consume the data sent by this endpoint in an async...
Radiograph asked 10/3, 2018 at 8:22

2

I have an audio data stream coming in from a http response. I receive packets of bytes using the URLSessionDataDelegate method: urlSession(_ session: URLSession, dataTask: URLSessionDataTask, did...
Magus asked 20/2, 2018 at 6:6

2

Solved

I am trying to create a issue in Jira . I am able to make a GET request with a proper response, but the problem arises when i make a POST request.Here is the code. <?php $userName ='xxxxxxxxx...

1

I am struggling with switching between multiple live streams. For example, I have five live streaming servers streaming(HTTP or RTSP) and I want to put some broker between those (five) streaming so...

4

Solved

Is there any open source streaming solution supports Http Adaptive Streaming? Based on my research VLC is not supporting adaptive streaming. I am not sure about Darwin Streaming Server. Any ideas? ...
Comines asked 6/11, 2011 at 16:49

1

Solved

The client periodically calls an async method (long polling), passing it a value of a stock symbol, which the server uses to query the database and return the object back to the client. I am using...

1

Solved

I would like to do some one way streaming of data and am experimenting with SSE vs Websockets. Using SSE form a golang server I'm finding it confusing on how to notify the client when sessions are...
Hydroxyl asked 7/7, 2015 at 12:31

1

There are couple of challenges I am facing with streaming request using AFNetworking 2.0. I want to upload lot of files (~50MB) to server and the request HAVE TO BE STREAMING. (otherwise app will ...
Rasmussen asked 28/2, 2014 at 10:55

2

Solved

I am attempting to deploy a Sinatra streaming SSE response application on the Cedar stack. Unfortunately while it works perfectly in development, once deployed to Heroku the callback or errback nev...
Alienist asked 24/6, 2013 at 22:7

3

I have developed video streaming application with RED5 media server(RTMP). Instead of RTMP need to stream live video through HTTP. Any open source HTTP media server?? Is any open source server w...

2

Solved

I am trying to connect to an endpoint that does http streaming of json data. I was wondering how to perform a basic request using Go's net/http package and read the response as it comes in. Current...
Raffinose asked 1/3, 2014 at 0:41

2

Solved

I've written a HTTP-Server that produces endless HTTP streams consisting of JSON-structured events. Similar to Twitter's streaming API. These events are separated by \n (according to Server-sent ev...
Bacciferous asked 15/2, 2014 at 12:49

3

Solved

I am working on an iOS app which allows downloading and HTTP live streaming of private videos. The videos are stored in an Amazon S3 bucket (as mp4 and segmented as m3u8/ts files). Also CloudFront ...

3

Solved

I was reading this article: http://blog.pusher.com/what-came-before-websockets/, and the following text gets my attention: XHR Streaming worked in all browsers the responseText of the XMLHttpRe...
Alius asked 25/2, 2013 at 21:50

1

With Flash 10.1+ and the ability to use appendBytes on a NetStream, its possible to use HTTP streaming in Flash for video delivery. But it seems that the delivery method requires the segments to be...
Scibert asked 16/11, 2011 at 14:31

4

Solved

I have read many posts on SO and the web regarding the keywords in my question title and learned a lot from them. Some of the questions I read are related to specific implementation challenges whil...
Levigate asked 23/9, 2012 at 18:27

1

Solved

Is it possible to upload a file to an apache php server without including the content-length header ? I am trying to stream a file that I am creating on the fly as a file upload. When I don't use ...
Stretch asked 28/8, 2012 at 20:54

2

Solved

Background: I have a python module set up to grab JSON objects from a streaming API and store them (bulk insert of 25 at a time) in MongoDB using pymongo. For comparison, I also have a bash command...
Urology asked 1/6, 2012 at 18:26

3

Solved

We use RTMP to secure stream media content through Wowza and it works like a charm. Wowza is really strong and robust media-server for a business purpose. But we met a problem, it's getting bigger...
Mediacy asked 13/1, 2012 at 10:16

4

Solved

I'm attempting to consume the Gnip PowerTrack API which requires me to connect to an HTTPS stream of JSON with basic auth. I feel like this should be fairly trivial so I'm hoping some rubyist who i...

2

Solved

There appears to be an issue with using HTTP streaming with HAML projects in rails. It works perfectly if I use ERB instead. Apparently, I'm not the only one with this problem. It doesn't work wit...
Landlord asked 21/9, 2011 at 18:5

© 2022 - 2024 — McMap. All rights reserved.