Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

kontrolakka

@kontrolakka
About
Posts
5
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Can´t Create Unit Tests
    K kontrolakka

    Thank you very much.

    C# csharp question visual-studio collaboration announcement

  • Can´t Create Unit Tests
    K kontrolakka

    Hi, I'm developing with Microsoft Visual Studio 2005 Version 8. I want to create unit tests but can´t do so. I don't have the new test option in the solution explorer. Also, I can't add it as a project. Don't know why, I have done it in other installations. Do you know how can I add the possibility to create unit tests in C# in Visual Studio 2005? Do I require the team edition? Thanks Martín

    C# csharp question visual-studio collaboration announcement

  • How can I avoid waiting for a response after an HttpWebRequest POST?
    K kontrolakka

    Thanks again for your help. xibeifeijian, won't that create a new thread to hear for the async answer? Thanks. Martín

    C# question csharp performance

  • How can I avoid waiting for a response after an HttpWebRequest POST?
    K kontrolakka

    Thanks for your answer. If I use a WebService, won´t I have a lot of extra overhead? I´m trying to avoid overhead as much as possible. Thanks again. Martín Suárez Viacava

    C# question csharp performance

  • How can I avoid waiting for a response after an HttpWebRequest POST?
    K kontrolakka

    I’m POSTING to an ashx file from my aplication. What I want to do is just post information about some variables of my aplication, and never wait for an answer. What I need is to avoid waiting for an answer, because I don’t need it. I’m accesing the file this way. ----------------------------- string queryString = "http://website/PrivateHandler.ashx"; System.Net.HttpWebRequest myHttpWebRequest = (System.Net.HttpWebRequest)WebRequest.Create(queryString); myHttpWebRequest.Method = "POST"; myHttpWebRequest.ContentType = "application/x-www-form-urlencoded"; string strRequest = "mode=1&bID=1&gID=1"; UTF8Encoding objUTF8Encoding = new UTF8Encoding(); byte[] arrRequest = objUTF8Encoding.GetBytes(strRequest); myHttpWebRequest.ContentLength = arrRequest.Length; Stream strmRequest = myHttpWebRequest.GetRequestStream(); strmRequest.Write(arrRequest, 0, arrRequest.Length); strmRequest.Close(); //Wait for an answer (I don’t need an answer). System.Net.WebResponse resp = myHttpWebRequest.GetResponse(); System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream()); sr.ReadToEnd(); --------------------------------- WebResponse and ReadToEnd are there because if I don’t read what return, I can only call the ashx file twice and then the system hangs. What I need is to post multiple times and never wait for an answer and waste performance because of that. Is there a way to achieve what I need? Thank you very much. Martín Suárez Viacava

    C# question csharp performance
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups