Changing application settings in the VHQMWS web.config file

Note:
  • This process is optional.

  • This change pertains to a limitation occurring in deployments based on the reference architecture of two Core Instances, two Management Instances and one database. Because there is only one database instance, it is not possible to include the host name of a second Management Instance in the database. Therefore, a change has been made so that the URL information will be pulled directly from the Web services of the same Management Instance.

If required after installing Callback, change the application settings in the VHQMWS web.config file on any Management Instance, located at VirtualHoldTechnology\VirtualHoldPub\VHQMWS, so VHQMWS knows where to look to access VHGlobalConfigWS, VHACDConfigWS and VHSysConfigWS to help initialize Queue Manager.

<applicationSettings
<VHQMWS.Properties.Settings>
   <setting name="VHQMWS_VHGlobalWS_VHGlobalConfigWS" serializeAs="String">
      <value>http://localhost/VHGlobalConfigWS/VHGlobalConfigWS.asmx</value>
   </setting>
   <setting name="VHQMWS_VHSysWS_VHSysConfigWS" serializeAs="String">
      <value>http://localhost/VHSysConfigWS/VHSysConfigWS.asmx</value>
   </setting>
   <setting name="VHQMWS_VHACDWS_VHACDConfigWS" serializeAs="String">
      <value>http://localhost/VHACDConfigWS/VHACDConfigWS.asmx</value>
   </setting>
</VHQMWS.Properties.Settings>
</applicationSettings>