Error 6019

Chris Kelleher

Administrator
Staff member
hi web peggers,

i have a big problem, because i have a program and it fails and i don't
know the reason.

when i run it, i present an html form, later, i choose the submit button,
and reload the same program and then
appers this message :

WebSpeed error from messenger process (6019)
Msngr: Disconnecting with no header on WTA output web stream.
(5814)

it 's very funny because in my program i have a code line with a FIND
sentence .
if i comment this line , my code works without any error .. so, the find
sentence fail ?
This sentence does not have any in particular .

find mytable where string(rowid(mytable)) = myvar exclusive-lock no-wait
no-error.

where myvar is char variable and holds a rowid value .

some knows what kind of error is this ?
or when does this message appear ?
my enviroment is:

WIN NT
WS 2.1
DATABASE PROGRESS 8.2C
WEB SERVER : IIS.

any suggestion is welcome .

thanks.
--------------------------------------------
Ing. Silvia Ordoñez Sánchez
Web developer.
S.S.I. S.A. DE C.V.
Calidad Total en Tecnología de Información
e-mail: sonja@ssi.com
--------------------------------------------
 

Chris Kelleher

Administrator
Staff member
Have you tried it the other way round (which seems more logical to me):
find mytable where
rowid(mytable) = to-rowid(myvar)
exclusive-lock no-wait
no-error.

This might work... (it does every time I use constructs like this).

Of course it also may depend on what follows the find statement, so if this
does not help showing a little more of your code might be helpful.

Paul de Jong
Axias CMS Development.
 

Chris Kelleher

Administrator
Staff member
Hi web peggers :


thanks everybody who answers me.

that was exactly fail .
find mytable where string(rowid(mytable)) = myvar exclusive-lock no-wait
no-error.

i just change the validation (listed above), instead of i use directly the
next:

find mytable where rowid(mytable) = to-rowid(myvar) exclusive-lock no-wait
no-error.

thank you very much .

my best regards.


--------------------------------------------
Ing. Silvia Ordoñez Sánchez
Web developer.
S.S.I. S.A. DE C.V.
Calidad Total en Tecnología de Información
e-mail: sonja@ssi.com
--------------------------------------------
 
Top