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 Is …
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 wi …
0
votes
1answer
13 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 …
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 dis …
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, …
0
votes
0answers
45 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 pho …
0
votes
6answers
68 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 …
4
votes
1answer
88 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 …
1
vote
5answers
79 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 1 …
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 …
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 Stream …
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.. …
1
vote
1answer
25 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 b …
0
votes
4answers
207 views
XOR on a very big file
I would like to XOR a very big file (~50 Go).
More precisely, I would like to do so by XORing each block of 32 bytes of a plaintext file (because of lack of memory) with the key 3 …
2
votes
3answers
62 views
Calculate upload transfer speed problem
Hey guys,
I have implemented a file transfer rate calculator to display kB/sec for an upload process occuring in my app, however with the following code it seems I am getting 'bur …
