In order to modify the URL prefix for reports sent via email, change the URL prefix in the following locations on the CardioLog application server:
If you site is using HTTP, please do the following:
1) Edit the [CardioLog Installation Folder]\CardioLogScheduleServices\Settings.config file and restart the CardioLog Scheduling Service.
<param>
<handlerId>6</handlerId>
<name>reportWebService</name>
<val><![CDATA[http://cardiologserver:29999/CardioLog/Data/generateReports.aspx]]>
</val>
</param>
2) Edit the [CardioLog Installation Folder]\CardioLog\web.config
<add key="CardioLogSendToRoot" value="http://cardiologserver:29999/" />
If you site is using HTTPS, please do the following:
1) Edit the [CardioLog Installation Folder]\CardioLogScheduleServices\Settings.config file and restart the CardioLog Scheduling Service.
<param>
<handlerId>6</handlerId>
<name>reportWebService</name>
<val><![CDATA[https://cardiologserver/CardioLog/Data/generateReports.aspx]]>
</val>
</param>
2) Edit the [CardioLog Installation Folder]\CardioLog\web.config
<add key="CardioLogSendToRoot" value="https://cardiologserver/" />
Verify that you can browse to the modified URL on the CardioLog server locally (the expected result is an XML file).
0 Comments