I have a servlet I invoke from a button.
The formula behind the button is:
db:=@ReplaceSubstring(@Subset(@DbName;-1);“\”;“/”);
docid:=@Text(@DocumentUniqueID);
agid:=“(Generatedocument)”;
@URLOpen(“http://myserver/servlet/myservlet?dbid=“+db+”&docid=”+docid + “&agid=”+agid + “&actionid=1”)
The servlet creates a document in my database.
This all works fine, but the problem is that the document is created twice in the database. It looks as if the servlet is executed twice. Does anyone have experience with a servlet doing twice what he has to do?
Thanks