-
GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
There are several problems related with IO Completition Port. One of them is that Connect Server has a bug related with IOCP, another problem is that in win2k3 sp2 after some hours GS disconnects all users and noone can enter game, everyone stuck awaiting for Login Results and then get disconnected with error in gs related with response error.
Let's try to fix first problem related with CS.
Most of the people who used WebZen CS noticed that after a period of time it logs a error related with connection aborted by local system. Here it is: "The network connection was aborted by the local system", error 1236.
When this error occurres thread that receives this error just exits. I don't know how much threads CS starts for receiving and parsing data, probably 2*cpus(or cores). So for example if our CS has 2 working threads and if all of them have received this error CS stops parsing received data, because there no more working threads. So you can connect to CS, send data, but it will be in the deaf state.
But the point is that when using IOCP some of the errors must be ignored and 1236 is one of them, but in CS it's not ignored, that's why it dies.
take a look in CS code and GS code.
GS ignores this error. 0x4D4(1236)
CS:
http://img510.imageshack.us/img510/6323/snap1dg9.jpg
GS:
http://img503.imageshack.us/img503/1544/snap2zm4.jpg
So the solution is by adding a code that ignores this error.
1. jump to free space
http://img233.imageshack.us/img233/3941/snap4ml1.jpg
2. check for errors, decide ignore or exit thread
http://img229.imageshack.us/img229/153/snap5yz6.jpg
haven't tested it, but it should help.
Let's talk about GS and win2k3 sp2, i had a possibility to learn why gs disconnects all users and then doesn't allow them to enter. I noticed that when this problem occured Worker Threads were suspended, so like with CS, GS becomes deaf. Then i found that threads exit with error 0x79(121) ERROR_SEM_TIMEOUT, tryed to google it but found nothing, so i decided to add code that ignores this error and continues execution. I had the possibility to test server only 24 hours and it worked without problems.
So win2k3 sp2 solution is by adding ignore error code 0x79(121) to CS(it also gave this error) and GS like we did for CS.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
so for gs we must do same as in cs but instead of 0x4D4 put 0x79?
for cs part 10/10
thanks
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
[RCZ]ShadowKing
so for gs we must do same as in cs but instead of 0x4D4 put 0x79?
for cs part 10/10
thanks
yep, but don't change original 0x4d4 :D + add in CS 1 more ignore for 0x79
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
thanks man,my problem was finally solved(i hope) xD
PS: the problem dont appear only in win2k3 sp2,i got it in win xp sp2 too
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
[RCZ]ShadowKing
thanks man,my problem was finally solved(i hope) xD
PS: the problem dont appear only in win2k3 sp2,i got it in win xp sp2 too
i don't know all the parts of this problem, cause i don't have the possibility to learn about it
for example JS checks only for net name delete 0x40 error, may be it also has threads suspending problem, i noticed only GS and CS errors, so may be all these errors should be also ignored in JS if it will stop receiving data from GS
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
[RCZ]ShadowKing
thanks man,my problem was finally solved(i hope) xD
PS: the problem dont appear only in win2k3 sp2,i got it in win xp sp2 too
that must be because ur OS is windows xp 2003 version with SP2
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
ok parts of this problem, cause i don't have the possibility to learn about it
for example
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
KREATOR
that must be because ur OS is windows xp 2003 version with SP2
is 2002 version,i dont know a newer version of windows xp,if you have send me on pm the torrent or where i can get it
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
i got the windows xp 2003 version 64-bit.. but its genuine.. ^^
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Sorry for bumping this but is this tutorial really work?... Anyone Tested and have a success story?
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
so basically if i use other connectserver instead of webzen i wont have this kind of problem? or this guide applies to all connectserver out there? well my question is not a help thing but information on the guide so i think i didnt violate any rules asking much here
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
bor team cs dont have this problems
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
[RCZ]ShadowKing
bor team cs dont have this problems
are you sure? the problem GetQueuedCompletionStatus is only on CS Webzen and no GS?
if me change mi CS Webzen x CS Borteam , I not will have problems? or need edit the GS?
plz help me :(
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Ok this is not help section. The question been answered in good way. Thanks.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
sandrox
are you sure? the problem GetQueuedCompletionStatus is only on CS Webzen and no GS?
if me change mi CS Webzen x CS Borteam , I not will have problems? or need edit the GS?
plz help me :(
some gs give this error,if yes apply the guide
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Can someone please put a CS with this fix i cant know use ollydbg. Thks
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Gembrid
There are several problems related with IO Completition Port. One of them is that Connect Server has a bug related with IOCP, another problem is that in win2k3 sp2 after some hours GS disconnects all users and noone can enter game, everyone stuck awaiting for Login Results and then get disconnected with error in gs related with response error.
Let's try to fix first problem related with CS.
Most of the people who used WebZen CS noticed that after a period of time it logs a error related with connection aborted by local system. Here it is: "The network connection was aborted by the local system", error 1236.
When this error occurres thread that receives this error just exits. I don't know how much threads CS starts for receiving and parsing data, probably 2*cpus(or cores). So for example if our CS has 2 working threads and if all of them have received this error CS stops parsing received data, because there no more working threads. So you can connect to CS, send data, but it will be in the deaf state.
But the point is that when using IOCP some of the errors must be ignored and 1236 is one of them, but in CS it's not ignored, that's why it dies.
take a look in CS code and GS code.
GS ignores this error. 0x4D4(1236)
CS:
http://img510.imageshack.us/img510/6323/snap1dg9.jpg
GS:
http://img503.imageshack.us/img503/1544/snap2zm4.jpg
So the solution is by adding a code that ignores this error.
1. jump to free space
http://img233.imageshack.us/img233/3941/snap4ml1.jpg
2. check for errors, decide ignore or exit thread
http://img229.imageshack.us/img229/153/snap5yz6.jpg
haven't tested it, but it should help.
Let's talk about GS and win2k3 sp2, i had a possibility to learn why gs disconnects all users and then doesn't allow them to enter. I noticed that when this problem occured Worker Threads were suspended, so like with CS, GS becomes deaf. Then i found that threads exit with error 0x79(121) ERROR_SEM_TIMEOUT, tryed to google it but found nothing, so i decided to add code that ignores this error and continues execution. I had the possibility to test server only 24 hours and it worked without problems.
So win2k3 sp2 solution is by adding ignore error code 0x79(121) to CS(it also gave this error) and GS like we did for CS.
how do i find these errors?
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Please, someone can do this in this CS
http://files.filefront.com/CSzip/;82.../fileinfo.html
And fix and upload please.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
turati
fixed webzen cs
Quote:
Originally Posted by
KREATOR
how do i find these errors?
what do you mean? you have to add 0x4D4 and 0x79
-
1 Attachment(s)
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Gembrid Thks for u help, but i have now the client invalid socket error, if u can, please put the code in attachment gameserver...
thks a lot man.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
turati
Gembrid Thks for u help, but i have now the client invalid socket error, if u can, please put the code in attachment gameserver...
thks a lot man.
invalid socket is not the problem, you are using win2k3 sp2? you need to fix gs only if you have "Error Thread" in logs
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
men u can helpme with my CS damn....i can't edit CS :S
Download
my version is 1.02c
OS vista
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Hi!
I have this in the GS:
http://s3.subirimagenes.com/otros/22...alidsocket.jpg
What need i to do, and how to do it?.
Please Help me!
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Could this be a fix for "error-L1 : CloseClient INVALID_SOCKET" Error in GS.exe????
If yes, how to apply the fix? or may i upload the file and u help me with this???
IT would be a great help.
P.D: Using Windows Server 2003 SP2 64 bits OS
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Update:
I use the CS.exe fixed here, but i'm still getting that GetQueuedCompletionStatus, it show the error, but it still have not D/C from the GameServer, so i'll be waiting for updates if it work in half way or what.
-
1 Attachment(s)
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Can you fix my CS and Gs Pleas! I dont know how to do this! :S
THANKS YOU!
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
I Have someting like this. ( Windows 2003 SP2 )
Response error after connection causes conclusion .
6-10 hours server stable than drop all from server and cant go in dc and need to restart server.
I am Beginer than please can you fix my gameserver and cs its for S4
My GS And CS
please fix it.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
My gameservers are packed. What can i do in this case?
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Maybe this don't have nothing about CS (I think) but GS closed whit this error(log DataServer):
GetQueuedCompletionStatus failed with error 64
0 server delete
StateMode Change 0
09:41:34a UserIndex [0] Connected IP : 127.0.0.1
Socket number 104 connecte
Is about the same problem?
Thanks on advance!
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
|ARIES|
Maybe this don't have nothing about CS (I think) but GS closed whit this error(log DataServer):
GetQueuedCompletionStatus failed with error 64
0 server delete
StateMode Change 0
09:41:34a UserIndex [0] Connected IP : 127.0.0.1
Socket number 104 connecte
Is about the same problem?
Thanks on advance!
dataserver always writes this error when gs disconnects from it
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
So then, the problem is the same? What I have to do? test whit the connectserver you post here??
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
|ARIES|
So then, the problem is the same? What I have to do? test whit the connectserver you post here??
check gs log, not ds log)
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
T_T my gs don't show any error on log.. directly close whitout message..
18:41:07 ***0504*** [patuerto22][xXRIPPERXx] SI(3,Plate Armor,13,0,0,0)serial:(3175707) dur:(102) Ex:(0,0,0,0,0,0,0) Set : (5)
18:41:07 ***0504*** [patuerto22][xXRIPPERXx] SI(4,Plate Pants,13,0,1,0)serial:(5997733) dur:(97) Ex:(0,0,1,0,0,0,0) Set : (0)
18:41:07 ***0504*** [patuerto22][xXRIPPERXx] SI(5,Plate Gloves,13,0,0,0)
(Here Gs Close)
(Hours later, i see the gs closed and launch them again)
serial:Gate information data load complete.
NON-PK Server
PK Limit Free Server
(Skill) Skill information data load complete
[Quest] (Scroll of Emperor) Load : Index 0, SubInfoCount 2
[Quest] (Three Treasures of Mu) Load : Index 1, SubInfoCount 3
[Quest] (Hero Status) Load : Index 2, SubInfoCount 1
[Quest] (Secret 'Dark Stone) Load : Index 3, SubInfoCount 1
[Quest] (Certificate of Strength!) Load : Index 4, SubInfoCount 9
[Quest] (Infiltration of Barracks of Ballgass!) Load : Index 5, SubInfoCount 3
[Quest] (Infiltration of Barracks of Refuge!) Load : Index 6, SubInfoCount 1
21:59:20 [Quest] [SetQuestItem] Scroll of the Emperor
21:59:20 [Quest] [SetQuestItem] Scroll of the Emperor
21:59:20 [Quest] [SetQuestItem] Broken Sword
As you see, is not error message on gs log, I've download the connectserver fixed on first page and i've tested it, but the gs after some hours close again, so this is not my solution.
Thanks =
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
|ARIES|
T_T my gs don't show any error on log.. directly close whitout message..
18:41:07 ***0504*** [patuerto22][xXRIPPERXx] SI(3,Plate Armor,13,0,0,0)serial:(3175707) dur:(102) Ex:(0,0,0,0,0,0,0) Set : (5)
18:41:07 ***0504*** [patuerto22][xXRIPPERXx] SI(4,Plate Pants,13,0,1,0)serial:(5997733) dur:(97) Ex:(0,0,1,0,0,0,0) Set : (0)
18:41:07 ***0504*** [patuerto22][xXRIPPERXx] SI(5,Plate Gloves,13,0,0,0)
(Here Gs Close)
(Hours later, i see the gs closed and launch them again)
serial:Gate information data load complete.
NON-PK Server
PK Limit Free Server
(Skill) Skill information data load complete
[Quest] (Scroll of Emperor) Load : Index 0, SubInfoCount 2
[Quest] (Three Treasures of Mu) Load : Index 1, SubInfoCount 3
[Quest] (Hero Status) Load : Index 2, SubInfoCount 1
[Quest] (Secret 'Dark Stone) Load : Index 3, SubInfoCount 1
[Quest] (Certificate of Strength!) Load : Index 4, SubInfoCount 9
[Quest] (Infiltration of Barracks of Ballgass!) Load : Index 5, SubInfoCount 3
[Quest] (Infiltration of Barracks of Refuge!) Load : Index 6, SubInfoCount 1
21:59:20 [Quest] [SetQuestItem] Scroll of the Emperor
21:59:20 [Quest] [SetQuestItem] Scroll of the Emperor
21:59:20 [Quest] [SetQuestItem] Broken Sword
As you see, is not error message on gs log, I've download the connectserver fixed on first page and i've tested it, but the gs after some hours close again, so this is not my solution.
Thanks =
what gs you are using? it just crashes
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Gembrid
what gs you are using? it just crashes
I'm using files 7.11.65 from SCFMT, but not full files, like betox, i'm from Argentina, and here is not money to pay for that files full, so, maybe the problem be the crack, or another thing, I don't know, i have my server about 1 year ago (more, like 1,5) and always use files cracked, and always have the same problem, on 7 or 8 hours gs's crash, all, of course, on previus versions I use the Xupload, so when gs crash, Xupload re-up the gs on 3 or less minutes, but, whit new sistem crack, that is imposible :P
Thanks for reed me and, sorry my bad english.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
:blush::blush:
Quote:
Originally Posted by
|ARIES|
I'm using files 7.11.65 from SCFMT, but not full files, like betox, i'm from Argentina, and here is not money to pay for that files full, so, maybe the problem be the crack, or another thing, I don't know, i have my server about 1 year ago (more, like 1,5) and always use files cracked, and always have the same problem, on 7 or 8 hours gs's crash, all, of course, on previus versions I use the Xupload, so when gs crash, Xupload re-up the gs on 3 or less minutes, but, whit new sistem crack, that is imposible :P
Thanks for reed me and, sorry my bad english.
It should show the error... something like INVALID_SOCKET, the gs doesnt crash, it just kicks all players and it doesnt let anyone go in game until gameserver is restarted. 7.11.56 files are not supposed to have this error (you have 7.11.65). I have not tested these files on win 2003 SP2 so I dont know if they have this error and i think this error and the cs error are similar but they do not cause either one to stop working. Maybe a fix for each one? :blush:
How can we fix it?
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
KREATOR
:blush::blush:
It should show the error... something like INVALID_SOCKET, the gs doesnt crash, it just kicks all players and it doesnt let anyone go in game until gameserver is restarted. 7.11.56 files are not supposed to have this error (you have 7.11.65). I have not tested these files on win 2003 SP2 so I dont know if they have this error and i think this error and the cs error are similar but they do not cause either one to stop working. Maybe a fix for each one? :blush:
How can we fix it?
Mmm, not, my GS's (GS, GSSUB, GSCS <This las isversion 7.11.56) simply crash, not error, not log, not information.
I've deactivated the bug report of windows, so when gs crash, it's simply close whitout message, this happen to me always whit all gs's of all versions of scfmt, i know about my files are not full, so i don't have right to cry about this, but I post here to try to find any solution.
Thanks to all.
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
I added the code into GS to ignore the error 0x79.
Using BoR CS. Final 1k Release.
Now I can say after few days, it will help or not.
Because I have too the problem with error-L1 : CloseClient INVALID_SOCKET.
My OS, Windows Vista Ultimate (x64)
-
Re: [Guide] GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Guide works perfect. No more people disconnection and problem with error-L1 : CloseClient INVALID_SOCKET.
Tested 3 days on ONLINE server, with 50-60 online.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
one question. will the SP3 solve this problem?!
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Someone make it on my GS? Please!
MY GS: http://www.megaupload.com/?d=8F4U0OK9
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Thanks. This guide fix error error L1: Socket Header error?
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
My Game Server is packed, what I need to do?
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
I have windows 2003 server sp2, and I get L1 invalid Socket error.
does this guide fix this error?
not many info around for solving it
Thank you
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
So nobody never actually fix that problem with Invalid Socket (GS) or uploaded the fixed one, I don't know a thing about coding, so obviously, I don't know how to add the code to the gs for error ignor, I am using 97d+99i version of the server files, and after like 3-5 minutes of playing gives me disconnect(with that Socket error) in gs, please explain me how to fix it, I wanna play so badly((
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
there are hundreds of threads about the same problems, but this one is not fixed anywhere. Dunno why
And it's a very big problem that every GS seems to have, I have tryed 3 GS for 1.0.2c and still get the socket error.I have every update and security fixes for my windows version(2003 server R2 SP2), and can't get around this problem.
Nobody knows the answer?
It's a problem with the windows version I'm using?
All the GS are broken and need a fix?
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
i got this problem same with my server but i dun know how to manage it i hope someone can help me to fix this problem because after 2 - days server online then automatic offline :S need urgenly fixing thanks!
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
I have a question.
How can i see these Codes?
With what program? or How?
Thanks.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Woak
I have a question.
How can i see these Codes?
With what program? or How?
Thanks.
OllyDbg :rolleyes:
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Diabolik can you do this guide my GS for me?
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Dear Gembrid, I need ignore GetQueuedCompletionStatus Error in my GameServer 97+99Items.
Please, can you do that in my GameServer?
I beg you.
Download GS: GameServer.rar
Thanks very much.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Does it fix 'Response error after connection causes conclusion' error?
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
How do I get to that black screen? The only thing I see is 3 white screen and I can not find that mentioned address.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
mijodesapo
Deixa de ser preguiçoso. Aprende a fazer e faça você mesmo. O pior foi resolver o problema e disponibiliza-lo aqui. O mínimo que você poderia fazer é resolver você mesmo e agradecer ao autor do tópico.
Stop being lazy. The worst part was discovering the error and making a tutorial. The LEAST thing you could do is fixing it yourself and saying thanks to the thread's author.
I made myself a better Guide based on this thread:
http://forum.ragezone.com/f82/fix-re...causes-722786/
If anyone is lazy and can't do what you read in this thread, go to mine.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
yes i have this error when i got a new vps server...
but before i never encounter that error...i run the GS and CS smoothly without editing the program...
but now i encountering now.. i am trying to configure what is the other solution....because i can run before the GS + GSCS on my previous VPS....
my theory was maybe it was on OS...
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
That is not a bug at all. This is just a new timeout error code for GetQueuedCompletionStatus() implemented since SP2 of Windows 2003 and XP. So, the only problem is that WebZen don't made the code to handle this timeout event. We can find some clues in Windows hotfixes (FIX: When TN3270 Server is running on a Windows Server 2003-based computer, event 902 is logged after a TN3270 session times out)...
Quote:
When a TN3270 session is disconnected because of inactivity, the TN3270 server expects to receive one of the following error messages when the TN3270 server calls the GetQueuedCompletionStatus function:
ERROR_NETNAME_DELETED (error 64)
ERROR_UNEXP_NET_ERR (error 59)
ERROR_CONNECTION_ABORTED (error 1236)
...
When TN3270 Server is running on a Windows Server 2003-based computer, it receives the following error message in response to the GetQueuedCompletionStatus function call when the TN3270 session times out:
ERROR_SEM_TIMEOUT (error 121)
TN3270 Server does not expect to receive error 121 when the call to the GetQueuedCompletionStatus function returns. Therefore, TN3270 Server logs an event 902 error.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Young
I sent you a private message. Please read it.
Thank you very much.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Someone please adding new screens for the guide bcoz images don't work.
thanks.
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
I need those screens too, please upload again!
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Fixed CS + GS + GS_CS + JS running for 34 days with 400+ online players (no crash or disconnect)
http://i.imgur.com/hiic1Fh.png
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Young
man.. the getqeuecompletionstatus ERROR, appear when you have a windows with SP2 (SERVICE PACK 2 ) .... so, you dont have this error because you are ussing a windows with SP1 (service pack 1)
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Lucila
man.. the getqeuecompletionstatus ERROR, appear when you have a windows with SP2 (SERVICE PACK 2 ) .... so, you dont have this error because you are ussing a windows with SP1 (service pack 1)
What part of WINDOWS 2008 R2 you didn't see? I will not discuss with dumb people. OMG!
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Young
What part of WINDOWS 2008 R2 you didn't see? I will not discuss with dumb people. OMG!
who cares windows 1 2 3 4 5 6 7 8 9 10 11 12 bablabla????? the problem is with sp2... you already using sp1,..
learn read n00b
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Lucila
who cares windows 1 2 3 4 5 6 7 8 9 10 11 12 bablabla????? the problem is with sp2... you already using sp1,..
learn read n00b
As I said here 3 years ago this is an new timeout event implemented since the Service Pack 2 of Windows 2003 and all base operational systems after, including the service packs. So you must learn read! "n00b". Problem? Discuss with Microsoft: https://support.microsoft.com/en-us/kb/953904
How-to followers/leechers are funny ^^
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
The error happens on any windows > 2003 SP1.
So, @Young is right.
PS: I made one small tool to "fix" this issue on any cs, js, gs ;)
[]'s
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
navossoc
The error happens on any windows > 2003 SP1.
So, @
Young is right.
PS: I made one small tool to "fix" this issue on any cs, js, gs ;)
[]'s
You can please share this tool? I really need it and images of this post don't work :(:
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
I have the same problem but I use a 64bit version 97J and Windows7 really need your help. :(
GS LOG:
Error Thread : GetQueueCompletionStatus( 121 )
error-L1 : CloseClient INVALID_SOCKET
16:20:35 Item Lost(Zen:463/level:0/skill:0)
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
16:20:36 Item Lost(Zen:463/level:0/skill:0)
Error Thread : GetQueueCompletionStatus( 121 )
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Lucila
who cares windows 1 2 3 4 5 6 7 8 9 10 11 12 bablabla????? the problem is with sp2... you already using sp1,..
learn read n00b
The problem is in net frame work. Not sp2
- - - Updated - - -
Quote:
Originally Posted by
NeTw0rK
I have the same problem but I use a 64bit version 97J and Windows7 really need your help. :(
GS LOG:
Error Thread : GetQueueCompletionStatus( 121 )
error-L1 : CloseClient INVALID_SOCKET
16:20:35 Item Lost(Zen:463/level:0/skill:0)
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
16:20:36 Item Lost(Zen:463/level:0/skill:0)
Error Thread : GetQueueCompletionStatus( 121 )
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
error-L1 : CloseClient INVALID_SOCKET
Your database is misconfigured. Make a new 1
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
Quote:
Originally Posted by
Mr X
Your database is misconfigured. Make a new 1
But where I find a clean DB 97J version?
Pero donde encuentro una DB limpia de la version 97j?
-
Re: GetQueuedCompletionStatus errors GS, CS + win2k3 sp2 solutions.
The most clear solution for this issue i ever experienced was:
1. use windows server 2003 sp1
2. use other files.
3. maybe - use other joinserver and connectserver.