ConferenceXP Archive Service 1.3 Installation Guide
In this guide, you’ll learn how to set up ConferenceXP Archive Service 1.3.
Contents
System requirements
Installing Archive Service
Setting up the Archive Service database
Changing Archive Service
configuration settings
Additional information
System requirements
To run ConferenceXP Archive Service 1.3, you’ll need the following hardware and software:
- 3.0 GHz Intel Pentium 4 with 512 MB RAM, or better (recommended)
- 100 GB or larger hard drive, depending on your archiving needs
- 256 MB of RAM minimum; 1 GB of RAM recommended
- Microsoft Windows XP or Microsoft Windows Server 2003
- One of the following:
Top 
Installing Archive Service
After you make sure you have the required hardware and software, you’re ready to install Archive Service 1.3.
Download and install Archive Service 1.3
- Make sure SQL Server 2000 or SQL Server 2005 is installed on the computer on which you want to install Archive Service.
Tip If you are installing SQL Server 2005, choose to install a default instance (that is, an unnamed instance). For
instruction to install a default instance of SQL Server Express Edition, see Install a default instance in SQL Server 2005 Express Edition.
-
Download the setup program (ArchiveServiceSetup13.msi) by saving it to your computer.
- Double-click the CXPArchiveService13.msi file on your computer.
- In the Archive Service Setup Wizard, follow the onscreen instructions.
- If a message appears asking you if you want to initialize your
database, do one of the following:
- If you previously installed a named instance of SQL Server 2005, the message, "SQL Server Not Found" will appear. After you complete the Archive Service Setup Wizard, follow the Enable Archive Service to recognize a named instance of SQL Server 2005 steps to complete the installation.
|

ConferenceXP
Archive Service 1.3 |
Install a default instance in SQL Server 2005 Express Edition
- Start Microsoft SQL Server 2005 Express Edition Setup.
- On the Registration Information screen, clear the Hide advanced configuration options check box, and then click Next.
- Click Next.
- On the Instance Name screen, click Default instance, and then click Next.
- Follow the onscreen instructions to complete the installation.
Enable Archive Service to recognize a named instance of SQL Server 2005
- Open the Archive Service folder, which is located by default in the C:\Program Files\Microsoft Research\ConferenceXP\ folder.
- Edit the AddDatabase.sql file by doing the following:
- Open the AddDatabase.sql file in a text editor, such as Notepad.
- In the CREATE DATABASE ArchiveService section, for both Filename paths, change
MSSQLServerLocation to the SQL Server Data folder, which is typically
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\.
For example, change the following two lines:
FILENAME = N'MSSQLServerLocation\ArchiveService.mdf',
FILENAME = N'MSSQLServerLocation\ArchiveService_log.ldf',
To:
FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\ArchiveService.mdf',
FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\ArchiveService_log.ldf',
Where C:/Program%20Files/Microsoft%20SQL%20Server/MSSQL.1/MSSQL/DATA/ is the actual installation location.
- Save the AddDatabase.sql file in text-only format.
- If you want to change the location, growth rate, or size of your ArchiveService database,
following the Change the location, growth rate, or size of your ArchiveService database
steps below.
- Edit the ArchiveAdmin.exe.config file by doing the following:
- Open the ArchiveAdmin.exe.config file in a text editor, such as Notepad.
- In the following key, specify the instance name for the datasource.
For example, change:
<add key="MSR.LST.ConferenceXP.ArchiveService.SQLConnectionString" value="Data Source = .; Initial Catalog = ArchiveService; Integrated Security = SSPI; Pooling = false"/>
To: <add key="MSR.LST.ConferenceXP.ArchiveService.SQLConnectionString" value="Data Source = .\InstanceName; Initial Catalog = ArchiveService; Integrated Security = SSPI; Pooling = false"/>
Where InstanceName is the instance name of your database.
- Save the ArchiveAdmin.exe.config file in text-only format.
- Edit the ArchiveWindowsService.exe.config file by doing the following:
- Open the ArchiveWindowsService.exe.config file in a text editor, such as Notepad.
- Uncomment the <appSetting> keys, and then specify the instance name for the datasource.
For example, change: <appSettings> <!-- Add any of these as necessary to set up your archiver to work properly. <add key="MSR.LST.ConferenceXP.ArchiveService.SQLConnectionString" value="data source=.;initial catalog=ArchiveService;integrated security=SSPI"/> <add key="MSR.LST.ConferenceXP.ArchiveService.TCPListeningPort" value="8082"/> <add key="MSR.LST.ConferenceXP.ArchiveService.PersistenceName" value="Archive Service"/> --> </appSettings>
To: <appSettings> <!-- Add any of these as necessary to setup your archiver to work properly. --> <add key="MSR.LST.ConferenceXP.ArchiveService.SQLConnectionString" value="data source=.\InstanceName>;initial catalog=ArchiveService;integrated security=SSPI"/> <add key="MSR.LST.ConferenceXP.ArchiveService.TCPListeningPort" value="8082"/> <add key="MSR.LST.ConferenceXP.ArchiveService.PersistenceName" value="Archive Service"/> </appSettings> Where
InstanceName is the instance name of your database.
- Save the ArchiveWindowsService.exe.config file in text-only format.
- Use Osql.exe, a SQL Server tool, to create the ArchiveService database by doing the following:
- Open the Command Prompt window.
- At the command prompt, change the current directory to the C:\Program Files\Microsoft Research\ConferenceXP\Archive Service directory.
- At the command prompt, type:
osql.exe –E –S .\InstanceName –i AddDatabase.sql
- At the command prompt, type:
osql.exe –E –S .\InstanceName –i AddSPs.sql
Where InstanceName is the instance name of your database. For SQL Server Express, the default instance name is SQLExpress.
- Stop and then start the Archive Service.
Top

Setting up the Archive Service database
You can change the ArchiveService database initialization settings by editing the SQL script file, AddDatabase.sql, located in the Archive Service folder. The default settings install the database on the C drive with a growth rate of 50 MB and a default size of 100 MB. We recommended that you restrict the growth rate to a small number of bytes, because the Archive Service must cache incoming data while SQL Server is growing the database. Setting the growth rate too high may result in losing data during recording. Change the location, growth rate, or size of your ArchiveService database
- If you clicked Yes during setup to initialize the ArchiveService database, open Enterprise Manager and delete the ArchiveService database.
- Open the Archive Service folder, which is located by default in the
C:\Program Files\Microsoft Research\ConferenceXP\ folder.
- Open the AddDatabase.sql file in a text editor, such as Notepad.
- Make the changes you want for the location, growth rate, or size of the ArchiveService database, and then save the file in text-only format.
- Use Osql.exe, a SQL Server tool, to create the ArchiveService database by doing the following:
- Open the Command Prompt window.
- At the command prompt, change the current directory to the C:\Program
Files\Microsoft Research\ConferenceXP\Archive Service directory.
- At the command prompt, type:
osql.exe –E –i AddDatabase.sql
- At the command prompt, type:
osql.exe –E –i AddSPs.sql
Top

Changing Archive Service configuration settings
You can change Archive Service settings, such as the TCP Listening port it listens on
or the timeout setting, by editing the Archive Service configuration files, located in the
<install location>\Microsoft Research\ConferenceXP\Archive Service folder. After making changes to
a configuration file, restart the Archive Service to make sure the new settings take effect.
Change the TCP Listening port
- Open the ArchiveWindowsService.exe.config file, located in the Archive
Service folder, in a text editor, such as Notepad.
- Edit the value for the following key:
<add key="MSR.LST.ConferenceXP.ArchiveService.TCPListeningPort"
value="8082"/>
Where 8082 is the default TCP listening port.
- Save the file in text-only format.
- Restart the Archive Service.
Change the timeout value
- Open the ArchiveAdmin.exe.config file, located in the Archive Service folder, in a text editor, such as Notepad.
- Edit the value for the following key:
<add key="MSR.LST.ConferenceXP.ArchiveService.CommandTimeout"
value="600"/>
Where 600 is the number of seconds that Archive Service waits for a response
before timing out.
- Save the file in text-only format.
- Restart the Archive Service.
Top

Additional information
For more information about setting up and using the Archive Service in ConferenceXP 3.5, see
ConferenceXP Client 3.5 Help.
Top

|
|