• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Server returned http response code:999

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have multiple threads that use a set of httpurlconnections. I read the contents line by line. From each line , I pick a particular value based on a criteria and put this into a file. FOr example I open 5 httpurlconnections as threads and pick values from each urlconnection based on a criteria. These values are then written into a file on my system. The urlconnections I need to open are more than 1000. When my progaram executes at a point I get Server returned http response code:999.
I tried hard for what the error means. Is there someone who can guide me please,
Thanks a ton
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The highest-numbered response code defined in HTTP 1.1 is 505, so 999 is not a legal response code. What server is this? Maybe it's the "something's horribly broken" response unique to that server.
 
reply
    Bookmark Topic Watch Topic
  • New Topic