Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The runtime can run in production and development mode. While using the development mode you can start a project via the development dashboard. While using production mode you can only use a shortcut.

Start a project via the development dashboard

The development plugin must be installed before you can use this dashboard. Once the plugin is installed navigate to http://HOSTNAME:PORT/Runtime/server/dev/vaadin/dashboard. The following dashboard should appear:

...

Code Block
<dataSource name="studio" type="studio" prefix="studio">
        <parameters>
          <parameter name="url" value="http://localhost:8097/aquima/studio/ManagementService"/>
          <parameter name="authenticationtype" value="basic"/>
          <parameter name="user" value="admin"/>
          <parameter name="password" value="welcome"/>
        </parameters>
      </dataSource>

 

...

Start a project via a shortcut

...

Info

Please not if you leave aut the shortcut.NAME.version property the runtime will automatically select the latest version

 

.NET web.xml

You can configure a shortcut via the web.xml. This file is located in your wwwroot directory.

Code Block
 

 todo

Export a project

You can export a project to an XML file in Studio. 

  • Open a project in Studio
  • Select the File tab
  • Select export
  • Check the Encrypt box if the XML must be encrypted
  • Save the project export

 

Java aquima.properties

Exported projects can be placed in the exports directory in the Aquima home folder. You can also configure the location of the exports directory via the aquima.properties file.

Code Block
  ### Exports ###
exportsR8.description=Studio Exports
exportsR8.prefix=export
exportsR8.folder=exports
exportsR8.files=

 

.NET web.xml

Exported projects can be placed in the exports directory located in the Aquima home folder. You  You can configure the exports location of the exports directory via the web.xml. This file is located in your wwwroot directory.

Code Block
 <!-- DataSources -->
    <dataSources>
      <dataSource name="xml" type="xml" prefix="xml">
        <parameters>
          <parameter name="folder" value="aquima:Exports\"/>
        </parameters>
      </dataSource>

...