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
  1. Home
  2. General Programming
  3. C#
  4. windows socket

windows socket

Scheduled Pinned Locked Moved C#
questioncsharpdata-structuresperformance
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W Offline
    W Offline
    WaleedH
    wrote on last edited by
    #1

    Hi all ,,, a have an exception message when i try to create a TcpClient in win socket says : lack of memory or queue is full . iI am using winXP Pro , C#, port no > 1024 ( is it OK ?) , and on toshiba laptop. what is the solution please . Thanks to you all

    A K 2 Replies Last reply
    0
    • W WaleedH

      Hi all ,,, a have an exception message when i try to create a TcpClient in win socket says : lack of memory or queue is full . iI am using winXP Pro , C#, port no > 1024 ( is it OK ?) , and on toshiba laptop. what is the solution please . Thanks to you all

      A Offline
      A Offline
      Alex Korchemniy
      wrote on last edited by
      #2

      From the information you have given us we can't help you much. Well I guess you "ran out of memory or your queue is full". This is mostly like a debugging task you'll have to do on your own... check all your code. Also, please dont post same thing twice. This posting is provided "AS IS" with no warranties, and confers no rights. Alex Korchemniy

      1 Reply Last reply
      0
      • W WaleedH

        Hi all ,,, a have an exception message when i try to create a TcpClient in win socket says : lack of memory or queue is full . iI am using winXP Pro , C#, port no > 1024 ( is it OK ?) , and on toshiba laptop. what is the solution please . Thanks to you all

        K Offline
        K Offline
        kmansari
        wrote on last edited by
        #3

        Getting the inner exceptions can help understand the problem sometimes. Could you post the inner exception messages? try { // ... do whatever .... } catch (Exception ex) { Console.WriteLine (ex.Message); Exception innerEx = ex.InnerException; while (innerEx != null) { Console.WriteLine (ex.Message); innerEx = innerEx.InnerException; } }

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

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