Olympia deployment

I have read the posts here on the talk forum, regarding how to deploy the Olympia Session Manager.

But I have not been able to get it working. It crashes instantly.

I have tried both as a service and as standalone.

I use version 9.3.0.1343 of DA/RO/HY

These are the files I have included:

This is the config file:

<?xml version="1.0" encoding="utf-8" ?> 8011 00:30:00 04:00:00 False Username1=Password1 Username2=Password2 1 True

Can you help me out ?`

Thanks.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
      <section name="ROOlympiaServer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
      <section name="OlympiaGUIServer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v2.0.50727" />
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
  </startup>
   <runtime>
      <generatePublisherEvidence enabled="false" />
   </runtime>
  <userSettings>
    <OlympiaGUIServer.Properties.Settings>
      <setting name="Port" serializeAs="String">
        <value>8011</value>
      </setting>
      <setting name="EventTimeout" serializeAs="String">
        <value>00:30:00</value>
      </setting>
      <setting name="SessionTimeout" serializeAs="String">
        <value>04:00:00</value>
      </setting>
      <setting name="RequireAuthentication" serializeAs="String">
        <value>False</value>
      </setting>
      <setting name="ValidUsernames" serializeAs="Xml">
        <value>
          <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <string>Username1=Password1</string>
            <string>Username2=Password2</string>
          </ArrayOfString>
        </value>
      </setting>
      <setting name="MaxOlympiaPoolSize" serializeAs="String">
        <value>1</value>
      </setting>
      <setting name="InMemoryMode" serializeAs="String">
        <value>True</value>
      </setting>
    </OlympiaGUIServer.Properties.Settings>
  </userSettings>
</configuration>

Any more detaails on the crash, like the error message and Windows version used?

Please run Olympia as a console app - this could provide more info on the exception occurred:

ROOlympiaServer.exe /c

Thanks in advance

I have tried several Windows versions - same problem.

The same happens:

Hello

Please do the following:

  1. Copy the System.Data.SQLite.DLL as well.
  2. Remove the line <supportedRuntime version="v2.0.50727" /> from the .config file. This line makes Olympia to try to start using .NET FX 3.5 while it uses .NET 4.0. This results in an immedate crash.

Regards

Thank you.

That did the trick.