hi, unfortunately i need a bit of help with a config for a program that an ex-employee of ours wrote. Basically, the program verifies itself on a website and verifys one specific type of bluetooth hardware is connected. we have recently changed hardware suppliers and need to take the requirement tying us to the old hardware manufacturer out. any help on this simple issue would be great. I've posted the code for the config file below

<?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="Blue2_VB.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
        </sectionGroup>
        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="Blue2_VB.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        </sectionGroup>
    </configSections>
    <connectionStrings>
        <add name="Blue2_VB.My.MySettings.Blue2ConnectionString" connectionString="Data Source=IDSCANDEVSERVER\SQLEXPRESS;Initial Catalog=Blue2;User ID=sa;Password=Idscan123"
            providerName="System.Data.SqlClient" />
    </connectionStrings>
    <system.diagnostics>
        <sources>
            <!-- This section defines the logging configuration for My.Application.Log -->
            <source name="DefaultSource" switchName="DefaultSwitch">
                <listeners>
                    <add name="FileLog"/>
                    <!-- Uncomment the below section to write to the Application Event Log -->
                    <!--<add name="EventLog"/>-->
                </listeners>
            </source>
        </sources>
        <switches>
            <add name="DefaultSwitch" value="Information" />
        </switches>
        <sharedListeners>
            <add name="FileLog"
                 type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                 initializeData="FileLogWriter"/>
            <!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
            <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
        </sharedListeners>
    </system.diagnostics>
    <userSettings>
        <Blue2_VB.My.MySettings>
            <setting name="IsAutoStartup" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="IsRunInTaskBar" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="IsAutomaticUpdate" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="Hotkey" serializeAs="String">
                <value>F6</value>
            </setting>
            <setting name="RetryAttempts" serializeAs="String">
                <value>Unlimited</value>
            </setting>
            <setting name="PairingCode" serializeAs="String">
                <value>0000</value>
            </setting>
            <setting name="ComputerName" serializeAs="String">
                <value />
            </setting>
            <setting name="IsLicenceValid" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="MacAddress" serializeAs="String">
                <value />
            </setting>
            <setting name="isdfs" serializeAs="String">
                <value />
            </setting>
            <setting name="RefreshTime" serializeAs="String">
                <value>600</value>
            </setting>
            <setting name="TimeOut" serializeAs="String">
                <value>20</value>
            </setting>
        </Blue2_VB.My.MySettings>
    </userSettings>
    <applicationSettings>
        <Blue2_VB.My.MySettings>
            <setting name="Blue2_VB_LiscenceValidator_LicenseActions" serializeAs="String">
                <value>http://217.148.32.104/services/authoriseapp.asmx</value>
            </setting>
        </Blue2_VB.My.MySettings>
    </applicationSettings>
</configuration>

isn't there any documentation for this configuration file ?

Unless we have to reverse engineer that program in source code
level ( if you have the source code).

The best thing is that email the ex-employee unless you have to
fully reverse engineer this.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.