How Can I Configure ChatBot on Web.Config

I was following the manual: https://docs.oneidentity.com/bundle/one-identity-manager_intelligent-query-chatbot_10.0/page/sources/iqc/iqcconfiguration.htm

But unfortunately, after that, my portal stopped working. Someone have a tip to how to configure the chatbot properly?

Top Replies

  • Hello  

    Can you share the error that you see, or a snip of the web.config showing where you made so I can see what might be missing?

    Before making the change in the documentation, we need to decrypt…

  • Hello  

    Can you share the error that you see, or a snip of the web.config showing where you made so I can see what might be missing?

    Before making the change in the documentation, we need to decrypt the web.config file. On the Web Server, open a command prompt and run:

    cd c:\Windows\Microsoft.NET\Framework\v4.0.30319\

    Once in the directory, decrypt the web.config file:

    .\aspnet_regiis.exe -pdf "connectionStrings" c:\inetpub\wwwroot\ApiServer

    That lets you add the setting from the documentation.

    Once finished, you just need to re-encrypt the connection string by running:

    aspnet_regiis.exe -pef "connectionStrings" c:\inetpub\wwwroot\ApiServer

    If this does not help, I'd be curious what error you see in the log under the \ApiServer\App_Data\Logs

    -Roman