Search results

  1. V

    Code / Workflow Generator

    Hi, At my previous employer i made a code generator in BluePrism, based on the application modeller, to generate components, objects and subprocesses. As far as i know there is no commercial tool available. https://medium.com/roborana/bots-building-bots-a76656fe76a6
  2. V

    Command Line execution

    That is not possible with the standard "run proces" vbo, you will need to modify as something like this : p = New System.Diagnostics.Process() p.Start() r = p.StandardOutput If Time_Out>0 AndAlso p.WaitForExit(1000*Time_Out)=False Then Throw New Exception("Failed waiting for application...
  3. V

    How to pause a queue from an action in a proces

    Is there a way to pause a queue from within a process, and also check the status of a queue (running/paused) from within a process ???
  4. V

    Pros and Cons for a Parent Application Modeller

    No, Layered design exists of the Application modeller is 1 layer, then create objects and components both a layer, and on top your process/subprocesses also layers. Benefit is that each developer can work in his layer without disturbing the others. https://info.symphonyhq.com/hubfs/RPABible.pdf
  5. V

    Pros and Cons for a Parent Application Modeller

    The best approach is to have a layered design architecture. That way your application model won't explode, and you can manage your components and objects in a proper way and have excellent reusability.
  6. V

    New file format with BP 6.6 issue

    As from v6.6 there is a new file format for .xml and .bprelease files, resulting in bad positioning of all objects in pages when importing in previous versions. The old format : <displayx>15</displayx> <displayy>-135</displayy> <displaywidth>90</displaywidth> <displayheight>30</displayheight>...
  7. V

    AutomateC how to set session variable

    Is there a way to set session variable with the use of automateC ? In telnet to the listener you can use the "setvar" parameter, but with automateC i can only use the startup parameters....
  8. V

    Dynamic Scheduler and Resource Pool

    Yes, i use a list of resources as well, and check if they are available and if so, send the process.
  9. V

    Dynamic Scheduler and Resource Pool

    Hello, I'm building a similar process, did you manage to solve the pool issue ? For now i check for available robots and send the process to the first available.
Top