Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Script execution progress error
Tue, Dec 22 2009 10:49 AMPermanent Link

Marcin
There is bug that prevents showing progress while executing script on remote server.
Bug is located in edbremore function TEDBRemoteScriptManager.Execute lines:                
 WriteBoolean(WantProgress);
 WriteBoolean(WantStatusMessages);
 WriteBoolean(WantLogMessages);
Should be changed to:
 WriteBoolean(Self.WantProgress);
 WriteBoolean(Self.WantStatusMessages);
 WriteBoolean(Self.WantLogMessages);

also below
        if WantProgress then
           StartProgress;
        try
           SendReceive;
        finally
           if WantProgress then
              EndProgress;
        end;
to:
        if Self.WantProgress then
           StartProgress;
        try
           SendReceive;
        finally
           if Self.WantProgress then
              EndProgress;
        end;

Please update it in next build if possible.

Regards, Marcin.
Tue, Dec 22 2009 11:50 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Marcin,

<< There is bug that prevents showing progress while executing script on
remote server.  >>

We are aware of the issue, and a new build will be available in the next
week that will fix this.

Thanks,

--
Tim Young
Elevate Software
www.elevatesoft.com

Image