Versions Compared

Key

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

...

Code Block
### Studio connectivity Studio 8+ ###
# Authentication can be NTLM, NTLM_CUSTOM or BASIC
studio8.description=Studio Projects
studio8.prefix=Studio
studio8.authentication=BASIC
studio8.url=http://localhost:8097/aquima/studio/ManagementService
studio8.domain=
studio8.username=admin
studio8.password=welcome

 

.NET

...

web.xml

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

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>

 todo

 

Start a project via a shortcut

Shortcuts can be used for running a project with specific settings with a user friendly URL.  By default there are no shortcuts available. The URL for a shortcut is: http://HOSTNAME:PORT/server/start/SHORTCUTNAMEA shortcut usually refers to a project export that is available at runtime, it can also refer to a project in Studio. The following chapters will describe how you can export your project manually and create a shortcut. Projects can also be exported via the publisher

Create a shortcut

There are multiple ways to configure 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

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

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
 

 

.NET

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

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

 

 todo