0
votes
1answer
21 views
How to convert link to source to stream in silverlight?
How to convert link to source ( string containing the URL ) to stream in silverlight?
0
votes
5answers
104 views
Stream and c++ - parsing file
Hello, I did it before... But I forgot.
I have a file with some data:
0.5 0.6 0.7
1.2 1.5
How can I read this in c++? I did it with stream... something like:
float var = 0 …
0
votes
4answers
195 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 …
1
vote
2answers
44 views
How can I upload a file and save it to a Stream for further preview using C# ?
Hi!!
Is there a way to upload a file, save it to a Stream, this Stream I will save it temporarily in a Session and, at last, I will try to preview this uploaded file that is in th …
1
vote
4answers
122 views
C++ standard date/time class
Does C++ stl have a standard time class? Or do I have to convert to c-string before writing to a stream. Example, I want to output the current date/time to a string stream:
time_ …
0
votes
0answers
33 views
Repeating Ajax Request
Hey!
I'm basically trying to get the existing code below to make a new ajax request every time it finishes so there would be a constant stream instead of it just stopping after a …
2
votes
2answers
93 views
Writing memory to socket in chunks in C
Hi, I'm attempting to write memory contents to a socket in chunks. I can write files that are smaller than my buffer, but anything else and I'm in deep water.
/* allocate memory f …
1
vote
3answers
73 views
java: search & replace in a Stream
How do I do on-the-fly search & replace in a Java Stream (input or output)?
I don't want to load the stream into memory or to a file.
I just see the bytes passing by and I ne …
1
vote
1answer
79 views
How to play MP3 sound from buffer (ByteArray/Stream) in ActionScript 3?
So.. I have a buffer with MP3 data (If I would save this buffer and call it buffer.mp3 it would play, but in this situation I should not save it to file system). I have to play it, …
0
votes
1answer
42 views
Type ‘System.Web.HttpInputStream’ cannot be serialized.
Hi.
I have been trying to design a WCF file upload service and am getting the following error
in my web application:
Type 'System.Web.HttpInputStream'
cannot be serialized. …
1
vote
1answer
58 views
How to read continous HTTP streaming data in Python?
Hi
How to read binary streams from a HTTP streamer server in python. I did a search and someone said urllib2 can do the job but had blocking issues. Someone suggested Twisted fram …
1
vote
1answer
43 views
How to use libtidy with tidyParseBuffer()?
I'm trying to clean some HTML with libtidy (C language), the problem is:
I want to construct a TidyDoc (a tree-like structure) with tidyParseBuffer().
I have no problem with tidy …
0
votes
1answer
19 views
Is there any possibility for Interop across a COM/.NET boundary between ADODB.Stream and System.IO.Stream?
I have a COM-Callable Wrapper on a .NET assembly. Some of the methods use streams (System.IO.Stream): either they accept a System.IO.Stream as input, or they return a System.IO.St …
2
votes
2answers
65 views
Asynchronous Stream Processing in Python
Let's start with a simple example. A HTTP data stream comes in the following format:
MESSAGE_LENGTH, 2 bytes
MESSAGE_BODY,
REPEAT...
Currently, I use urllib2 to retrieve and pr …
0
votes
3answers
63 views
Getting error while reading xml file
Hi friends hope all r doing well. I have a problem while reading xml file in vb.net i.e. giving error message "Data at the root level is invalid. Line 860, position 18." My xml fil …
