Smart Grid Applications Overview > Smart Operations Solution > SOS Configuration Overview > OASyS > OASyS - Configure Responder Data Services |
Version: 10.1 |
In this section, you will install and configure Responder Data Services and set the logins for Responder and OASyS listeners. First install the Responder Server following the directions provided in the Responder Read Me file.
Ensure the RealTime Integration for OASyS is installed. This is part of the Responder Server installer and NOT installed by default.
Next, you will need to modify the Data Services configuration file.
Copy Code
|
|
---|---|
<setting name="SmartgridEnabled" serializeAs="String"> <value>True</value> </setting> |
Copy Code
|
|
---|---|
<setting name="UseGlobalIds" serializeAs="String">> <value>False</value> </setting> |
If you are using Network Adapter to export to DMS, then the GlobalIDs setting in NetworkAdapter.exe.config MUST match the setting in Miner.Responder.DataServices.exe.config. |
Copy Code
|
|
---|---|
<add key="hostName" value="HostName"/> |
Copy Code
|
|
---|---|
<Miner.Smartgrid.Mappers.SmartGridRelationshipMapper> <add key="connection" value="Data Source=GDB Name;Persist Security Info=True;User ID=SMARTGRID;Password=SMARTGRID"/> <add key="driverAssembly" value="Oracle.DataAccess.Client.OracleConnection, Oracle.DataAccess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/> </Miner.Smartgrid.Mappers.SmartGridRelationshipMapper> |
If you're configuring to use a SQL database, the XML would look like the following example.
Copy Code <Miner.Smartgrid.Mappers.SmartGridRelationshipMapper> <add key="fillMetadata" value="yes"/> <add key="connection" value="Data Source=GDB Name;InitialCatalog=SMARTGRID;User ID=SMARTGRID;Password=SMARTGRID"/> <add key="driverAssembly" value="System.Data.SqlClient.SqlConnection,System.Data, Version=2.0.0.0, Culture=neutral,PublicKeyToken=b77a5c561934e089"/> </Miner.Smartgrid.Mappers.SmartGridRelationshipMapper>