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. After installation the runtime will contain some example projects. You can add projects by configuring a connection to Studio or add project exports

Start a project via the development dashboard

...

Info

You can save your selection by pressing the "save as favorite" button. A link will appear in the favorites widget 

After installation the runtime will contain two example projects. You can configure a connection to Studio or export your projects to load and test your development projects

Start a project via a shortcut

...

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

Code Block
 

 

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 can configure the exports location 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>

 

 

...