Welcome Guest Search | Active Topics | Sign In | Register

Which are the trial limitation of EO Browser? Options
Jim B
Posted: Wednesday, February 18, 2015 6:58:12 AM
Rank: Advanced Member
Groups: Member

Joined: 1/31/2015
Posts: 70
Hello,

I read here http://www.essentialobjects.com/forum/postst611_Whats-the-difference-between-the-trial-version-and-licensed-version.aspx that there are no funtional differences between trial and licensed dlls. Is this valid for the EO Browser or are there any e.g. number-of-requests limitations? I couldn't find this info. Please forgive if it's written somewhere :)

Regards,

Jim
eo_support
Posted: Wednesday, February 18, 2015 9:45:01 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,196
Hi,

For EO.WebBrowser trial version there is also a number of request limitation. After that you will have to restart your application to reset the counter.

Thanks!
Jim B
Posted: Wednesday, February 18, 2015 9:57:38 AM
Rank: Advanced Member
Groups: Member

Joined: 1/31/2015
Posts: 70
What's the counter limit?

We are trying to figure out why some repetitive code crashes with "CanEvalScript" after some iterations that look similar. One code returns CanEvalScript=true when the next script command may give an error that scripts cannot run at that point.
eo_support
Posted: Wednesday, February 18, 2015 10:07:26 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,196
Hi,

The counter can vary. When the limit is reached, the exception message should be something like "a license is needed...". So if you do not see that exception message, then it is something else instead of a limitation of the trail version.

CanEvalScript is not really reliable because the status can change after you have checked CanEvalScript but before you call EvalScript. Try to use QueueScriptCall instead (make sure you have the latest build first). That function is more reliable since it checks the status internally and if it is not ready, it will wait instead of triggering an exception.

Thanks!
Jim B
Posted: Wednesday, February 18, 2015 10:09:59 AM
Rank: Advanced Member
Groups: Member

Joined: 1/31/2015
Posts: 70
Cool, thank you!

Jim
eo_support
Posted: Wednesday, February 18, 2015 12:13:31 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,196
You are welcome. Please feel free to let us know if there is anything else.

Thanks!
Jim B
Posted: Friday, February 20, 2015 4:19:44 AM
Rank: Advanced Member
Groups: Member

Joined: 1/31/2015
Posts: 70
Regarding the QueueScriptCall...

Let's say that we have a list of javascript calls, e.g. fill a text field and then click a button.

Is the following going to run always in the same order?

Code: C#
webview.QueueScriptCall([javascript to fill the text field]);
webview.QueueScriptCall([javascript to click the button]);


Is the order guaranteed?

thanks
eo_support
Posted: Friday, February 20, 2015 11:24:29 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,196
Hi,

Yes. They are always executed in the same order you call QueueScriptCall.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.