I can save only on each 5 minutes?

I’m developing a WEB database and without any new changed, the database has a annormal comportament.

When I try to save a document, appears

‘HTTP Web Server: Couldn’t find design note - 0 [/scor/webpesq.nsf/0/]’

And my Save command is:

@Command([FileSave]);

@URLOpen(“http://” + Server_Name + “/” + @ReplaceSubstring(@Subset(@DbName;-1);“\”;“/”) + “/” +“0/”+@Text(@DocumentUniqueID)+“?OpenDocument”)

Where Server_Name is basic @ServerName. And also, i have a field called $$Return with the same value that I want to open after save.

The strange is that IF i wait 5 minutes with the document opened and after this time i click on SAVE, it works!

But less than 3 minutes generates this error.

Any idea? Could be any configuration on the server?

Thanks!!

Andre

Subject: I can save only on each 5 minutes?

If you have a $$Return field, the second line of your save command is useless.

This has worked for me in the $$Return:

tmpDBURL:=“/”+@ReplaceSubstring(@ReplaceSubstring(@Subset(@DbName; -1); “\”; “/”);" “;”+");

tmp:=“[” + tmpDBURL + “/0/” + @Text(@DocumentUniqueID) +“?OpenDocument]”;

tmp

(Note that the tmpDBURL is actually stored in a field on the form. I included it in the code here for simplicity)