Click here to Skip to main content
15,886,137 members
Home / Discussions / C#
   

C#

 
GeneralRe: GroupPrincipalExt can not be used in a query against this store Pin
JD8628-Jan-13 9:49
JD8628-Jan-13 9:49 
QuestionCheck if polygon is Inside another Pin
gilvani28-Jan-13 7:48
gilvani28-Jan-13 7:48 
AnswerRe: Check if polygon is Inside another Pin
pt140128-Jan-13 8:05
pt140128-Jan-13 8:05 
GeneralRe: Check if polygon is Inside another Pin
gilvani28-Jan-13 23:03
gilvani28-Jan-13 23:03 
AnswerRe: Check if polygon is Inside another Pin
Alan Balkany29-Jan-13 4:12
Alan Balkany29-Jan-13 4:12 
GeneralRe: Check if polygon is Inside another Pin
gilvani29-Jan-13 4:16
gilvani29-Jan-13 4:16 
GeneralRe: Check if polygon is Inside another Pin
Alan Balkany29-Jan-13 4:22
Alan Balkany29-Jan-13 4:22 
QuestionProblems in retrieving HttpResponse content Pin
tiwal28-Jan-13 4:16
tiwal28-Jan-13 4:16 
Hello ,

I am posting on the server side application using a "Response.Write(str)" statement, where "str" contains some XML code .
On the client side I am getting the response using a HttpWebResponse .
When I get the HttpWebResponse content , I find , apart from the correct XML code that I posted on server side, soem kind of strange trailer which resembles an Html page, but is absolutely random (I mean , this "html page" changes from session to session...) .
What is the reason of this strange result ? I am posting some relevant code below to help explain :

Server side :
Resp = ....some XML code ....

Response.Write(Resp);


Client side :


HttpWebRequest WR = (HttpWebRequest)(WebRequest.Create(url));

HttpWebResponse Resp = (HttpWebResponse)WR.GetResponse();

Stream RS = Resp.GetResponseStream();

StreamReader SR = new StreamReader(RS);

string mess = SR.ReadToEnd();

Resp.Close();

textBoxResponse.Text = mess;


Thank you in advance

Leo
AnswerRe: Problems in retrieving HttpResponse content Pin
Richard Deeming28-Jan-13 5:06
mveRichard Deeming28-Jan-13 5:06 
GeneralRe: Problems in retrieving HttpResponse content Pin
tiwal28-Jan-13 23:02
tiwal28-Jan-13 23:02 
QuestionAbout method TextWriter.Write() Pin
taibc27-Jan-13 23:52
taibc27-Jan-13 23:52 
AnswerRe: About method TextWriter.Write() Pin
BobJanova28-Jan-13 0:34
BobJanova28-Jan-13 0:34 
AnswerRe: About method TextWriter.Write() Pin
Richard MacCutchan28-Jan-13 0:37
mveRichard MacCutchan28-Jan-13 0:37 
GeneralRe: About method TextWriter.Write() Pin
PIEBALDconsult28-Jan-13 3:28
mvePIEBALDconsult28-Jan-13 3:28 
AnswerRe: About method TextWriter.Write() Pin
taibc28-Jan-13 14:51
taibc28-Jan-13 14:51 
QuestionNotifyicon in C# website Pin
NickyRamshaw27-Jan-13 21:48
NickyRamshaw27-Jan-13 21:48 
AnswerRe: Notifyicon in C# website Pin
BobJanova28-Jan-13 0:35
BobJanova28-Jan-13 0:35 
GeneralRe: Notifyicon in C# website Pin
NickyRamshaw28-Jan-13 0:52
NickyRamshaw28-Jan-13 0:52 
GeneralRe: Notifyicon in C# website Pin
Pete O'Hanlon28-Jan-13 1:00
mvePete O'Hanlon28-Jan-13 1:00 
GeneralRe: Notifyicon in C# website Pin
NickyRamshaw28-Jan-13 1:34
NickyRamshaw28-Jan-13 1:34 
GeneralRe: Notifyicon in C# website Pin
Pete O'Hanlon28-Jan-13 1:43
mvePete O'Hanlon28-Jan-13 1:43 
Questionfrom java to c# Pin
superamh27-Jan-13 5:46
superamh27-Jan-13 5:46 
AnswerRe: from java to c# Pin
Richard MacCutchan27-Jan-13 6:27
mveRichard MacCutchan27-Jan-13 6:27 
AnswerRe: from java to c# Pin
Dave Doknjas27-Jan-13 16:37
Dave Doknjas27-Jan-13 16:37 
QuestionC# timeout on linq to sql Pin
dcof27-Jan-13 2:52
dcof27-Jan-13 2:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.