Click here to Skip to main content
16,011,680 members
Home / Discussions / C#
   

C#

 
AnswerRe: game dev doubt Pin
benjymous5-Feb-09 0:34
benjymous5-Feb-09 0:34 
Questionlogin code is not working Pin
ashish1nov20084-Feb-09 20:22
ashish1nov20084-Feb-09 20:22 
AnswerRe: login code is not working Pin
Christian Graus4-Feb-09 20:37
protectorChristian Graus4-Feb-09 20:37 
AnswerRe: login code is not working Pin
Vimalsoft(Pty) Ltd4-Feb-09 21:28
professionalVimalsoft(Pty) Ltd4-Feb-09 21:28 
QuestionHttpWebResponse's GetResponse() hangs.. Pin
bigeyed4-Feb-09 20:07
bigeyed4-Feb-09 20:07 
AnswerRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott4-Feb-09 21:38
Rob Philpott4-Feb-09 21:38 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
bigeyed4-Feb-09 21:48
bigeyed4-Feb-09 21:48 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott4-Feb-09 21:59
Rob Philpott4-Feb-09 21:59 
Don't know then. I've tried your code slightly modified (below) and it works fine. Suspicion turns to the timer. If you call this just once from Main rather than repeatedly, does it work?

public static void Main(string[] args)
{
    System.Net.WebRequest request = null;
    System.Net.HttpWebResponse response = null;

    request = System.Net.WebRequest.Create("http://news.bbc.co.uk");
    WebProxy p = new WebProxy("...our proxy", true);
    p.UseDefaultCredentials = true;
    request.Proxy = p;

    response = (System.Net.HttpWebResponse)request.GetResponse();
}


Regards,
Rob Philpott.

GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
bigeyed5-Feb-09 1:29
bigeyed5-Feb-09 1:29 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott5-Feb-09 1:54
Rob Philpott5-Feb-09 1:54 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott5-Feb-09 2:00
Rob Philpott5-Feb-09 2:00 
QuestionHelp C -> C# (FSC-16 Table Generator) Pin
TaeGyu Kang4-Feb-09 20:05
TaeGyu Kang4-Feb-09 20:05 
AnswerRe: Help C -> C# (FSC-16 Table Generator) Pin
Christian Graus4-Feb-09 20:38
protectorChristian Graus4-Feb-09 20:38 
AnswerRe: Help C -> C# (FSC-16 Table Generator) Pin
Dave Doknjas5-Feb-09 14:08
Dave Doknjas5-Feb-09 14:08 
GeneralRe: Help C -> C# (FSC-16 Table Generator) Pin
Dave Doknjas5-Feb-09 14:15
Dave Doknjas5-Feb-09 14:15 
QuestionLog analyzer Pin
CodingLover4-Feb-09 19:59
CodingLover4-Feb-09 19:59 
AnswerRe: Log analyzer Pin
SeMartens4-Feb-09 21:16
SeMartens4-Feb-09 21:16 
NewsRe: Log analyzer Pin
CodingLover4-Feb-09 21:37
CodingLover4-Feb-09 21:37 
GeneralRe: Log analyzer Pin
SeMartens4-Feb-09 22:12
SeMartens4-Feb-09 22:12 
QuestionSend SMS to multiple recipients Pin
oviyaa4-Feb-09 19:44
oviyaa4-Feb-09 19:44 
AnswerRe: Send SMS to multiple recipients Pin
stancrm4-Feb-09 20:31
stancrm4-Feb-09 20:31 
AnswerRe: Send SMS to multiple recipients Pin
Christian Graus4-Feb-09 20:32
protectorChristian Graus4-Feb-09 20:32 
AnswerRe: Send SMS to multiple recipients Pin
Bharat Jain4-Feb-09 20:59
Bharat Jain4-Feb-09 20:59 
AnswerRe: Send SMS to multiple recipients Pin
arun_pk4-Feb-09 23:54
arun_pk4-Feb-09 23:54 
GeneralRe: Send SMS to multiple recipients Pin
arun_pk4-Feb-09 23:55
arun_pk4-Feb-09 23:55 

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.