1
vote
3answers
51 views
How to stream the contents of a file live to a browser
Hiya,
I'm trying to find a efficient way to watch the server log on a webpage, i don't mind building an app i just can't work out the best way to do it.
Is there a way to keep a stream open to a …
0
votes
1answer
26 views
Capture bitstream into string
I'll need to capture my bitstream into a string and keep concatenating the string. However, I'm not really sure how it's to be done. Any ideas?
#include <bitset>
#include <iostream>
…
1
vote
3answers
50 views
If I check stream for valid image I can’t write bytes to server
Hi.
I am trying to check if a file is an image before I upload it to the image server.
I am doing it with the following function, which works exceptionally well:
static bool IsValidImage(Stream …
1
vote
3answers
43 views
How do I modify PDF without a library using C# and stream it back to client in ASP.NET?
I'm having an issue where I'm corrupted a PDF and not sure of a proper solution. I've seen several posts on people trying to just do a basic stream or trying to modify the file with a third party …
0
votes
1answer
14 views
stream_socket_client error in php
Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection timed out) in /home/biranchi/public_html/push.php on line 42
…
0
votes
0answers
47 views
Is it possible to stream to an Android phone with Microsoft Media Server?
Let's say that I have Microsoft Media Server stream (i.e. mms://[some ip address here]). This stream contains both audio and video. Is it possible to stream this to an Android phone? How would I go …
0
votes
3answers
81 views
Creating a FILE * stream that results in a string
I'm looking for a way to pass in a FILE * to some function so that the function can write to it with fprintf. This is easy if I want the output to turn up in an actual file on disk, say. But what …
0
votes
3answers
121 views
Custom C++ manipulator problem
Hi guys,
I'm trying to implement my own stream manipulator inside my logging class. It's basically endline manipulator which changes state of a flag. However when I try to use it, I'll get:
…
1
vote
1answer
27 views
Decoding Manchester biphase-mark in software (representing a SMPTE timecode audio stream)
I've never had to deal with signal/stream encoding or decoding before, at least not beyond fairly basic protocols like HTTP, so forgive me if I'm making this harder than I should be.
Several of the …
4
votes
1answer
90 views
Most performant way to write binary data to a file in C#
Hi,
I am trying to optimize a class that serializes objects in binary format and writes them in a file. I am currently using a FileStream (in sync mode because of the size of my objects) and a …
0
votes
6answers
69 views
how do you stream a sound clip on a web page so it is not easily downloadable?
This isn't my area of expertise at all, so I was wondering if anyone could point me in the right direction for streaming a sound clip from a web page.
The main restriction is that it can't be easily …
1
vote
5answers
81 views
Stream Read Problem
Suppose we have a code block like this :
//Assuming s is a stream:
byte[] data = new byte[1000];
s.Read(data,0,data.Length);
The read Method could read anywhere
from 1 to 1000 bytes, leaving …
1
vote
5answers
88 views
Different ways of reading and writing files in C#
Hi,
I am trying to understand different ways of reading and writing files with their advantages and disadvantages. Like when to use TextWriter/TextReader when File.Create or StreamReader/StreamWriter
…
4
votes
6answers
210 views
Is the .NET Stream class poorly designed?
I've spent quite a bit of time getting familiar with the .NET Stream classes. Usually I learn a lot by studying the class design of professional, commercial-grade frameworks, but I have to say that …
1
vote
2answers
109 views
Lazy stream for C# / .NET
Does anyone know of a lazy stream implementation in .net? IOW, I want a to create a method like this:
public Stream MyMethod() {
return new LazyStream(...whatever parameters..., delegate() {
…
