| Q. | I have added the tracking code to CORE.js, but when I browse my SharePoint portal - I get an authentication login box for the CardioLog server. |
| A. | Check the authentication provider for the CardioLog web site. If the provider is not NTLM, do the following:
- Change the authentication provider for the CardioLog web site to "NTLM".
- Change "impersonate=false" in the following files:
[installation folder]\CardioLog [Lite]\CardioLog[Lite]\Web.config
[installation folder]\CardioLog [Lite]\CardioLogAPI\Web.config
[installation folder]\CardioLog [Lite]\SP2007Tree\Web.config
Otherwise, install the CardioLogAgent web application on the SharePoint machine:
- Create a new CardioLogAgent virtual directory on the SharePoint machine.
- For the new virtual directory, set ASP.NET version to 2.0, an set the authentication method to Inetgrated Windows Authentication (un-check Enable anonymous access).
- Copy the files from [installation directory]\CardioLogAgent to the new directory.
-
Change the URL domain and port in the following locations:
1. SharePoint CORE.js file -
script.src = "http://domain:port/CardioLogAgent/AgentEmbed.aspx?env=MOSS2007&r="+Math.random()*100000;
2. [installation folder]\CardioLogAgent\AgentEmbed.aspx -
element.TunnelPath = "http://domain:port/CardioLogAgent/tunnel.aspx";
element.AgentDirectory = "http://domain:port/CardioLogAgent";
element.HelpletFile = "";
element.AgentBaseLocation = "http://domain:port/CardioLogAgent/agentBaseEmbed.aspx";
|