Tagged Questions
The responsestream tag has no wiki summary.
3
votes
5answers
239 views
Lengthy lines of code vs readability
This is perfectly fine C# code and works fine provided correct URL. But the everything is just done at one line by reducing the readability of the code.
Here is the code :
return new ...
0
votes
1answer
42 views
Error with WCF REST (POX) Client when 201 Created and No Response Content
I am creating a WCF POX proxy using the generic ClientBase base class against a fixed specification.
The specification has items created with a POST call to an endpoint. With no body response packet ...
0
votes
0answers
106 views
VBScript XMLRequest BytesDownloaded
Is there a way to get the amount of bytes currently recieved from an XMLHTTPRequest while the request is still downloading?
With
CreateObject(MsXML2.XMLHTTP.6.0)
.ResponseText and .ResponseBody ...
0
votes
0answers
82 views
Images not appearing using response stream
I am using the following code to convert an asp.net page into rtf. The tables are converted fine but I cannot get the images to display. Does anyone know of a possible way of doing this?
Dim ...
0
votes
2answers
145 views
ResponseStream re-read after read timeout
I am wondering when I read a response stream and a timeout occurs, can I retry the read? Or do I have to make a new request? The server that I am downloading from does not support resuming, so I ...
-3
votes
2answers
101 views
How to get content of httpWebresponse in proper string form?
The problem is i get proper response for some site while some give me response like "???"and other unique characters .
Here is my code:
Stream responseStream = response.GetResponseStream();
...