Processing Service
This topic describes how, and where, the Bizview Processing Services are configured.
This topic contains the following sections:
Install path: $PROGRAMFILES$/NCG Group/Bizview/Services/ProcessingService/
Config file: $PROGRAMFILES$/NCG Group/Bizview/Services/ProcessingService/BvProc.exe.config
Replace the part marked in yellow with the correct IIS binding:
<endpoint address="https://localhost/bizview/Services/ProcessingService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ProcessingService" contract="BvService.ProcessingService" name="BasicHttpBinding_ProcessingService"/>
</client>
<instances>
<add url="https://localhost/bizview" fromConfig="/bizview" />
</instances>
Alternatively, you can set up a connection string:
<defaultConnectionStrings>
<add name="default" connectionString="Server=<SQL Server>;Database=<Bizview database>;Trusted_Connection=<True/False>;User Id=<Username>;Password=<Password>;"/>
</defaultConnectionStrings>
Manually Create and Start Service
To manually create and start the service the following commands can be used:
sc create "BV_ProcessingServices" binpath= "C:\Program files\Bizview\Services\ProcessingService\BVProc.exe" DisplayName= "Bizview Processing Services" start= "auto"
sc start "BV_ProcessingService"
Known Issues
Issue: Job fails when executing event type FORMUPD (Update form).
Format of the initialization string does not conform to specification starting at index 0.
Solution: Check that you are using the correct connection string and the SQL server name is correct.
select
serverproperty('machinename') [machinename],
serverproperty('servername') [servername],
serverproperty('instance') [instance],
@@servername [servername_2]
Additionally, check that the name attribute in connection string are set to default:
<defaultConnectionStrings>
<add name="default" connectionString="Server=<SQL Server>;Database=<Bizview database>;Trusted_Connection=<True/False>;User Id=<Username>;Password=<Password>;"/>
</defaultConnectionStrings>
Next step:Messenger Service