FAQs

  Certificate error on XURL call to https url
You can use the XURL plugin to access resources on the web. Normally this can be done without any problem. But sometimes it can happen that you have problems with the used certificate when accessing resources using an SSL connection with https. You will get an error stating that the plugin was &...
 Wed, 6 Jun, 2018 at 4:17 PM
  no construct with name was found in package
The messages that look like this: no construct with name stringToMD5 was found in package Hash no construct with name save was found in package File etc These messages indicate that the construct that is used is not available.  Solution Update the code 
 Wed, 6 Jun, 2018 at 4:17 PM
  I get a Java heap space Unexpected exception. How to fix it.
How to deal with "Java heap space Unexpected exception” error. Cause This error is caused by the limited maximal amount of memory that is allocated to the JVM.  Solution This can be solved by increasing the value of the Xmx value in the JVMOptions section of the \Xill IDE\app\Xill IDE.cfg...
 Fri, 10 Feb, 2017 at 1:56 PM
  Scheduling to run a robot
In order to run a robot at a specified time, place the following code at the top of the robot you want to schedule: use System, Date; var startTime = "2017-02-17 21:00"; startTime = Date.parse(startTime, "yyyy-MM-dd HH:mm"); var hasToWait = true; while(hasToWait){   System....
 Wed, 6 Jun, 2018 at 10:04 AM