Configuring Responder/Smart Grid
OASyS - Configure Responder Data Services

Version: 10.1

Resource Center Home

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.

  1. Browse to and open Miner.Responder.DataServices.exe.config. By default, this file is installed here: \Program Files\Miner and Miner\Responder\Server.
  2. Look for the following line of XML:
    Copy Code
          <setting name="SmartgridEnabled" serializeAs="String">
            <value>True</value>
          </setting>
    
  3. Set the value to "True". By default this value is set to False.
  4. The next step determines whether you use GlobalIDs or FCID/OID/Phase (FOP) to communicate feature information between the applications in SOS (e.g., Responder, DMS, OASyS). Look for the following XML:
    Copy Code
          <setting name="UseGlobalIds" serializeAs="String">>
            <value>False</value>
          </setting>
    
  5. Set the value to True to use GlobalIDs. Set the value to False to use FCID/OID/Phase. The default value in this field is False.

    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.

  6. Set all "hostName" values to the name of your OASyS server. The best way is to perform a search for hostName and set the Value attribute for each one in the Miner.Responder.DataServices.exe.config file.
    Copy Code
    <add key="hostName" value="HostName"/>
    
  7. Look for the following bit of XML:
    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>
  1. For the Data Source value, enter the name of the geodatabase in which the Smart Grid tables reside. Enter the user name/password for the Smart Grid user. If you're configuring a SQL database set the InitialCatalog value to the name of the database.
  2. Save and close Miner.Responder.DataServices.exe.config.

Send Comment to documentation@schneider-electric.com