NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: ccordes on September 11, 2007, 10:37:59 AM

Title: File system errors and timeouts
Post by: ccordes on September 11, 2007, 10:37:59 AM
I don't see anything here on this so I must be missing something...
I am using MSSQL and doing some auto-updating from uploaded csv files.
This all works very nicely until there is an error during the update.
Clarion pops a message on the server and the poor shlub out on the web gets a wait cursor and a timeout.

In my update procedure, I use -
 if access:myTable.tryupdate()
    posterror( this a procedure that builds a static page with processing errors)
 end

and then continue processing the rest of the incoming records (i think)
Like I said, did I miss something?

Thanks,
chris c

x-posted on 3rd party NG

Title: Re: File system errors and timeouts
Post by: Poul on September 12, 2007, 04:47:31 AM
Clarion pops a message on the server and ...
quote]

If you mean a netalk file message, the message is from deep in abc and you need to hook the message, i use capesoft's messagebox  to quietly suppress.  Some messages can be supressed with the tick box on the netwebserver settings, but i have always ticked this so the only messages from the server is usually from the filemanager (much less of these lately) or ones i introduce myself.

i debug things with a message on the server which auto clears after a few seconds.
Title: Re: File system errors and timeouts
Post by: ccordes on September 12, 2007, 06:01:27 AM
Theres a checkbox? I will have to look for that.
And I was thinking about using messagebox.

THANKS!
chris