<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Microsoft Silverlight Analytics Framework</title><link>http://msaf.codeplex.com/project/feeds/rss</link><description>Extensible Web Analytics Framework for Microsoft Silverlight, WPF, and Windows Phone 7 Applications.</description><item><title>New Post: Google.WebAnalytics.dll source code mantainance</title><link>http://msaf.codeplex.com/discussions/443171</link><description>&lt;div style="line-height: normal;"&gt;Related to the thread below: who is in charge of mantaining the Google.WebAnalytics source code ?&lt;br /&gt;
&lt;br /&gt;
In google site  it says:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;The software for this component is developed and supported by 3rd Party Developers. &amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://developers.google.com/analytics/devguides/collection/other/silverlightTrackingIntro?hl=en" rel="nofollow"&gt;https://developers.google.com/analytics/devguides/collection/other/silverlightTrackingIntro?hl=en&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
However I didn't find the code anywhere  in this project. &lt;br /&gt;
Is it mantained by someone else ? (I googled  but I didn't find it anywhere)&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Claudio. &lt;br /&gt;
&lt;/div&gt;</description><author>cpi</author><pubDate>Thu, 09 May 2013 21:18:18 GMT</pubDate><guid isPermaLink="false">New Post: Google.WebAnalytics.dll source code mantainance 20130509091818P</guid></item><item><title>New Post: Google.WebAnalytics.dll duplicates statistics </title><link>http://msaf.codeplex.com/discussions/443169</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
There is an issue with Google WebAnalytics: when tracking an event: two requests are made to __utm.gif instead of one, so all google statistics become duplicated.&lt;br /&gt;
&lt;br /&gt;
I didn't find the source code of the Google.WebAnalytics.dll anywhere so I decompile it and found that the  code uses the following in order to track:&lt;br /&gt;
&lt;br /&gt;
  public void Track(Uri url)&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    {
       this.image.Source = new BitmapImage(url);
    }
&lt;/code&gt;&lt;/pre&gt;

This code issues 2 requests to the same __utm.gif probably because of the response that google gives to the first request.&lt;br /&gt;
&lt;br /&gt;
If I use webclient instead, only 1 request as expected is sent to analytics.&lt;br /&gt;
&lt;br /&gt;
  public void Track(Uri url)&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    {
        var webClient = new WebClient();
        webClient.OpenReadAsync(url, null);
    }
&lt;/code&gt;&lt;/pre&gt;

Can you fix this  ?&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Claudio. &lt;br /&gt;
&lt;/div&gt;</description><author>cpi</author><pubDate>Thu, 09 May 2013 21:13:02 GMT</pubDate><guid isPermaLink="false">New Post: Google.WebAnalytics.dll duplicates statistics  20130509091302P</guid></item><item><title>New Post: System.IO.IsolatedStorage.IsolatedStorageException: [IsolatedStorage_Operation_ISFS]</title><link>http://msaf.codeplex.com/discussions/440501</link><description>&lt;div style="line-height: normal;"&gt;We have a SL5 app using the msaf and I see this error popping up a lot lately:&lt;br /&gt;
&lt;br /&gt;
Message: [IsolatedStorage_Operation_ISFS]&lt;br /&gt;
Stack trace: System.IO.IsolatedStorage.IsolatedStorageException: [IsolatedStorage_Operation_ISFS]&lt;br /&gt;
Arguments: &lt;br /&gt;
Debugging resource strings are unavailable. Often the key and arguments provide sufficient information to diagnose the problem. See &lt;a href="http://go.microsoft.com/fwlink/?linkid=106663&amp;amp;Version=5.0.20125.00&amp;amp;File=mscorlib.dll&amp;amp;Key=IsolatedStorage_Operation_ISFS" rel="nofollow"&gt;http://go.microsoft.com/fwlink/?linkid=106663&amp;Version=5.0.20125.00&amp;File=mscorlib.dll&amp;Key=IsolatedStorage_Operation_ISFS&lt;/a&gt;&lt;br /&gt;
at System.IO.IsolatedStorage.IsolatedStorageFileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, IsolatedStorageFile isf)&lt;br /&gt;
at Microsoft.WebAnalytics.EventLog.WriteLog()&lt;br /&gt;
at Microsoft.WebAnalytics.EventLog.GetEvents()&lt;br /&gt;
at Microsoft.WebAnalytics.DataCollector.DispatchCachedEvents()&lt;br /&gt;
at Microsoft.WebAnalytics.DataCollector.NetworkChange_NetworkAddressChanged(Object sender, EventArgs e)&lt;br /&gt;
at System.Net.NetworkInformation.InternalNetworkChange.FireNetworkAddressChangedEvent(Object sender, EventArgs e)&lt;br /&gt;
at MS.Internal.JoltHelper.RaiseEvent(IntPtr target, UInt32 eventId, IntPtr coreEventArgs, UInt32 eventArgsTypeIndex)&lt;br /&gt;
&lt;br /&gt;
From what I've read, it looks to be caused by the fact that the path (including filename) to the log file in isolated storage is too long. However, I didn't see a way to change this name (a peek in the sources reveals it to be &amp;quot;Microsoft.Silverlight.Analytics.Framework.WebAnalyticsData.txt&amp;quot;). Also, the EventLog class, when writing to this file, does no error handling whatsoever. So, in this case the error bubbles up to the app-level event handler.&lt;br /&gt;
&lt;br /&gt;
Anyone else have this problem? Or any ideas for a workaround?&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>dotnetrodent</author><pubDate>Tue, 16 Apr 2013 18:35:06 GMT</pubDate><guid isPermaLink="false">New Post: System.IO.IsolatedStorage.IsolatedStorageException: [IsolatedStorage_Operation_ISFS] 20130416063506P</guid></item><item><title>Commented Issue: Metro Win8 Support [17880]</title><link>http://msaf.codeplex.com/workitem/17880</link><description>I am porting my SL4 app which uses MSAF into Metro&amp;#47;Win8 &amp;#40;XAML&amp;#47;C&amp;#35;&amp;#41;. Can this be ported to Win8&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: xperiandri ** &lt;p&gt;As this libraries use MEF and System.Windows.Interactivity, it have to be ported and migrated to Microsoft.Composition (new MEF) and Windows.UI.Interactivity. However Windows.UI.Interactivity is an unofficial port of System.Windows.Interactivity to WinRT.&lt;br&gt;Hence there are a lot of work to do...&lt;/p&gt;</description><author>xperiandri</author><pubDate>Thu, 28 Mar 2013 08:42:25 GMT</pubDate><guid isPermaLink="false">Commented Issue: Metro Win8 Support [17880] 20130328084225A</guid></item><item><title>New Post: Sample code does not work. Traffic doesn't show on Google Analytics site.</title><link>http://msaf.codeplex.com/discussions/431597</link><description>&lt;div style="line-height: normal;"&gt;problem is if you want to setup a website account the url to the website is required. how can I get that configured?&lt;br /&gt;
&lt;/div&gt;</description><author>sanzai</author><pubDate>Sat, 16 Feb 2013 10:20:16 GMT</pubDate><guid isPermaLink="false">New Post: Sample code does not work. Traffic doesn't show on Google Analytics site. 20130216102016A</guid></item><item><title>Created Issue: Offline detection [19338]</title><link>http://msaf.codeplex.com/workitem/19338</link><description>Right now, the code is using the following to detect if the application is offline&amp;#58;&lt;br /&gt;&lt;br /&gt;NetworkInterface.GetIsNetworkAvailable&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;Thing is that if you have other network adapters installed &amp;#40;ex&amp;#58; VMWare&amp;#41;, the framework still thinks you are online when disconnecting the primary network adapter.&lt;br /&gt;&lt;br /&gt;Instead the code should do a request to the provider and check if it is online. &lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Claudio.&lt;br /&gt;</description><author>cpi</author><pubDate>Mon, 11 Feb 2013 15:50:46 GMT</pubDate><guid isPermaLink="false">Created Issue: Offline detection [19338] 20130211035046P</guid></item><item><title>Commented Issue: google analytics version 1.5.4.2 Mango [19267]</title><link>http://msaf.codeplex.com/workitem/19267</link><description>I followed this guide to configure my app&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;mark.mymonster.nl&amp;#47;2012&amp;#47;05&amp;#47;16&amp;#47;google-analytics-on-your-windows-phone-app-in-1-minute&lt;br /&gt;&lt;br /&gt;after three day there aren&amp;#39;t stats on my account, is there any bug&amp;#63;&amp;#63;&lt;br /&gt;- webporpertyId is correct&lt;br /&gt;- no exception calling&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;IAnalyticsTracker tracker &amp;#61; new AnalyticsTracker&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;tracker.Track&amp;#40;&amp;#38;quot&amp;#59;EventCategory&amp;#38;quot&amp;#59;,&amp;#38;quot&amp;#59;EventName&amp;#38;quot&amp;#59;,&amp;#38;quot&amp;#59;EventValue optional&amp;#38;quot&amp;#59;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;any suggest&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: goneale ** &lt;p&gt;I found you had to setup the account in GA as a &amp;quot;website&amp;quot;, not an &amp;quot;app&amp;quot; also just set domain as example.com or something (the &amp;quot;apps&amp;quot; only indicate they support iOS and Android), after this I saw tracking coming through (you can check via Real Time page in GA).&lt;/p&gt;&lt;p&gt;Really sucks if this is the new way of doing it :(&lt;/p&gt;</description><author>goneale</author><pubDate>Sun, 03 Feb 2013 07:41:08 GMT</pubDate><guid isPermaLink="false">Commented Issue: google analytics version 1.5.4.2 Mango [19267] 20130203074108A</guid></item><item><title>New Post: Sample code does not work. Traffic doesn't show on Google Analytics site.</title><link>http://msaf.codeplex.com/discussions/431597</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I found you had to setup the account in GA as a &amp;quot;website&amp;quot;, not an &amp;quot;app&amp;quot; also just set domain as example.com or something (the &amp;quot;apps&amp;quot; only indicate they support iOS and Android), after this I saw tracking coming through (you can check via Real Time page in GA).&lt;/p&gt;
&lt;/div&gt;</description><author>goneale</author><pubDate>Sun, 03 Feb 2013 07:40:14 GMT</pubDate><guid isPermaLink="false">New Post: Sample code does not work. Traffic doesn't show on Google Analytics site. 20130203074014A</guid></item><item><title>New Post: Sample code does not work. Traffic doesn't show on Google Analytics site.</title><link>http://msaf.codeplex.com/discussions/431597</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I've downloaded the SL5 sample code and updated it with the tracking code from my Google Analytics account and I can see that there is some traffice going to google if I use fiddler when clicking the button.  However there is zero activity indicated on Google Analytics' site.&lt;/p&gt;
&lt;p&gt;Does this still work?  These forums don't have many responses to questions.&lt;/p&gt;
&lt;/div&gt;</description><author>mikevh</author><pubDate>Thu, 31 Jan 2013 21:12:02 GMT</pubDate><guid isPermaLink="false">New Post: Sample code does not work. Traffic doesn't show on Google Analytics site. 20130131091202P</guid></item><item><title>New Post: Duplicate calls to google analytics</title><link>http://msaf.codeplex.com/discussions/431208</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I'm using the following example from the documentation to send analytics information to google analytics. I see duplicate calls to google analytics in fiddler. There was a different thread on this issue but I don't see any solution. Can someone help, please?&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration:underline"&gt;&lt;strong&gt;Code:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div id="exampleSection"&gt;&lt;span id="cbc_1"&gt;
&lt;div&gt;
&lt;pre&gt;&lt;span&gt;namespace&lt;/span&gt; SilverlightApplication67
{
    &lt;span&gt;using&lt;/span&gt; System;
    &lt;span&gt;using&lt;/span&gt; System.ComponentModel.Composition;
    &lt;span&gt;using&lt;/span&gt; Microsoft.WebAnalytics;

    &lt;span&gt;public&lt;/span&gt; &lt;span&gt;class&lt;/span&gt; TrackDownload 
    {
        [Import(&lt;span&gt;&amp;quot;Log&amp;quot;&lt;/span&gt;)]
        &lt;span&gt;public&lt;/span&gt; Action&amp;lt;AnalyticsEvent&amp;gt; Log { &lt;span&gt;get&lt;/span&gt;; &lt;span&gt;set&lt;/span&gt;; }

        &lt;span&gt;public&lt;/span&gt; TrackDownload()
        {
            CompositionInitializer.SatisfyImports(&lt;span&gt;this&lt;/span&gt;);
        }

        &lt;span&gt;public&lt;/span&gt; &lt;span&gt;void&lt;/span&gt; LogDownload(&lt;span&gt;string&lt;/span&gt; url)
        {
            &lt;span&gt;var&lt;/span&gt; logEvent = &lt;span&gt;new&lt;/span&gt; AnalyticsEvent()
            {
                ActionValue = url,
                Name = &lt;span&gt;&amp;quot;Downloaded&amp;quot;&lt;/span&gt;,
                ObjectType = GetType().Name
            };

            &lt;span&gt;this&lt;/span&gt;.Log(logEvent);
        }
    }
}&lt;/pre&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</description><author>vbsathya</author><pubDate>Tue, 29 Jan 2013 07:16:30 GMT</pubDate><guid isPermaLink="false">New Post: Duplicate calls to google analytics 20130129071630A</guid></item><item><title>Created Issue: google analytics version 1.5.4.2 Mango [19267]</title><link>http://msaf.codeplex.com/workitem/19267</link><description>I followed this guide to configure my app&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;mark.mymonster.nl&amp;#47;2012&amp;#47;05&amp;#47;16&amp;#47;google-analytics-on-your-windows-phone-app-in-1-minute&lt;br /&gt;&lt;br /&gt;after three day there aren&amp;#39;t stats on my account, is there any bug&amp;#63;&amp;#63;&lt;br /&gt;- webporpertyId is correct&lt;br /&gt;- no exception calling&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;IAnalyticsTracker tracker &amp;#61; new AnalyticsTracker&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;tracker.Track&amp;#40;&amp;#38;quot&amp;#59;EventCategory&amp;#38;quot&amp;#59;,&amp;#38;quot&amp;#59;EventName&amp;#38;quot&amp;#59;,&amp;#38;quot&amp;#59;EventValue optional&amp;#38;quot&amp;#59;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;any suggest&amp;#63;&lt;br /&gt;</description><author>Riccardo91</author><pubDate>Mon, 28 Jan 2013 12:54:36 GMT</pubDate><guid isPermaLink="false">Created Issue: google analytics version 1.5.4.2 Mango [19267] 20130128125436P</guid></item><item><title>New Post: Support and sample code for Windows Phone 7.1</title><link>http://msaf.codeplex.com/discussions/362143</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Nicely, this is my first of all visit for your weblog! We're a group of volunteers and beginning a model new initiative in a group across the same niche. Your weblog provided us helpful data to work on. You've got executed a extraordinary job!
&lt;a href="http://verchini.com/bop-nam"&gt;bop nam&lt;/a&gt; &lt;a href="http://verchini.com/vi-nam"&gt;
vi nam&lt;/a&gt; &lt;a href="http://verchini.com/bop-da"&gt;bop da&lt;/a&gt; &lt;a href="http://verchini.com/that-lung-nam"&gt;
that lung nam&lt;/a&gt; &lt;a href="http://verchini.com/day-nit"&gt;day nit&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>huynhhai</author><pubDate>Wed, 23 Jan 2013 01:28:37 GMT</pubDate><guid isPermaLink="false">New Post: Support and sample code for Windows Phone 7.1 20130123012837A</guid></item><item><title>New Post: Support and sample code for Windows Phone 7.1</title><link>http://msaf.codeplex.com/discussions/362143</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Thanks for such &lt;a rel="dofollow" href="http://vienne.co/gio-xach"&gt;gio xach&lt;/a&gt; a great article
&lt;a rel="dofollow" href="http://verchini.com/bop-da"&gt;bop da&lt;/a&gt;here. I was searching for something like
&lt;a rel="dofollow" href="http://verchini.com/vi-nam"&gt;vi nam&lt;/a&gt; this for quite a long time and at
&lt;a rel="dofollow" href="http://lucyyou.com/mat-kinh-hang-hieu"&gt;mat kinh hang hieu&lt;/a&gt; last I’ve found it on your blog
&lt;a rel="dofollow" href="http://vienne.co/vi-nu"&gt;vi nu&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;</description><author>authuyhuie</author><pubDate>Fri, 11 Jan 2013 09:20:39 GMT</pubDate><guid isPermaLink="false">New Post: Support and sample code for Windows Phone 7.1 20130111092039A</guid></item><item><title>New Post: Support and sample code for Windows Phone 7.1</title><link>http://msaf.codeplex.com/discussions/362143</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;This is &lt;a rel="dofollow" href="http://verchini.com/that-lung"&gt;that lung&lt;/a&gt; what exactly I was
&lt;a rel="dofollow" href="http://lucyyou.com/mat-kinh-hang-hieu"&gt;mat kinh hang hieu&lt;/a&gt; searching, the information was overall very useful for me
&lt;a rel="dofollow" href="http://lucyyou.com/kinh-mat-thoi-trang"&gt;kinh mat thoi trang&lt;/a&gt;, thanks a lot.&lt;/p&gt;
&lt;/div&gt;</description><author>authuyhuie</author><pubDate>Fri, 11 Jan 2013 09:19:08 GMT</pubDate><guid isPermaLink="false">New Post: Support and sample code for Windows Phone 7.1 20130111091908A</guid></item><item><title>New Post: Support and sample code for Windows Phone 7.1</title><link>http://msaf.codeplex.com/discussions/362143</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;This is what exactly I was searching,the information was overall very useful for me, thanks a lot&lt;a rel="dofollow" href="http://verchini.com/bop-da"&gt;.&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>authuyhuie</author><pubDate>Fri, 11 Jan 2013 09:17:33 GMT</pubDate><guid isPermaLink="false">New Post: Support and sample code for Windows Phone 7.1 20130111091733A</guid></item><item><title>New Post: Google Analytics Custom Variables: Remove ProductID variable</title><link>http://msaf.codeplex.com/discussions/273850</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Lostreason87:&lt;/p&gt;
&lt;p&gt;I am unable to send custom variables to google analytics. Could you please share a working code sample.&lt;/p&gt;
&lt;p&gt;Any help will be greatly appreciated.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;
&lt;/div&gt;</description><author>guptroh</author><pubDate>Tue, 08 Jan 2013 11:50:01 GMT</pubDate><guid isPermaLink="false">New Post: Google Analytics Custom Variables: Remove ProductID variable 20130108115001A</guid></item><item><title>New Post: Tracking GA Custom Variable from Code</title><link>http://msaf.codeplex.com/discussions/351703</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi There. Did you find a solution. I am stuck with the same problem. Any help would be greatly appreciated. May be a code sample if you could share.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
Thanks in advance.&lt;/p&gt;
&lt;/div&gt;</description><author>guptroh</author><pubDate>Tue, 08 Jan 2013 11:48:33 GMT</pubDate><guid isPermaLink="false">New Post: Tracking GA Custom Variable from Code 20130108114833A</guid></item><item><title>New Post: Auto Event Tracking - How to turn off?</title><link>http://msaf.codeplex.com/discussions/428341</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I think that I may be on to something, when looking through the code I found that the configured value&amp;nbsp;WebAnalyticsService.IsPageTrackingEnabled is used by&amp;nbsp;WebAnalyticsService.OnFrameNavigated() to conditionally restrict the logging of data&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;if&lt;/span&gt; (&lt;span style="color:blue"&gt;this&lt;/span&gt;.IsPageTrackingEnabled)
{
	&lt;span style="color:blue"&gt;var&lt;/span&gt; logEvent = &lt;span style="color:blue"&gt;new&lt;/span&gt; AnalyticsEvent
	{
		ActionValue = e.Uri.ToString(),
		HitType = Data.HitType.PageView,
		Name = &lt;span style="color:#a31515"&gt;&amp;quot;CurrentScreenChanged&amp;quot;&lt;/span&gt;,
		NavigationState = e.Uri.ToString(),
		ObjectType = sender.GetType().Name
	};

	&lt;span style="color:blue"&gt;this&lt;/span&gt;.Log(logEvent);
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;However when I checked the&amp;nbsp;WebAnalyticsService.AreApplicationLifetimeEventsEnabled property I found it is not referenced anywhere. I would have expected that it would have been similarly used in WebAnalyticsService methods Exited, Exiting, Started and
 Starting to conditionally include a log based on this variable. Has this been over looked?&lt;/p&gt;
&lt;p&gt;Similarly the NavigationStateChanged event in&amp;nbsp;DataCollector.Host_NavigationStateChanged has no conditional logic to govern it's logging. Could this also be modified to either use the existing property or a new one to govern its logging to address this?&lt;/p&gt;
&lt;/div&gt;</description><author>guyza1</author><pubDate>Fri, 04 Jan 2013 00:19:40 GMT</pubDate><guid isPermaLink="false">New Post: Auto Event Tracking - How to turn off? 20130104121940A</guid></item><item><title>New Post: Auto Event Tracking - How to turn off?</title><link>http://msaf.codeplex.com/discussions/428341</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;If I configure my analytics provider (Omniture) in the page interaction.behaviors it works like a charm and happily logs away.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&amp;lt;in:Interaction.Behaviors&amp;gt;
      &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;analytics&lt;/span&gt;&lt;span style="color:blue"&gt;:&lt;/span&gt;&lt;span style="color:#a31515"&gt;AppMeasurement&lt;/span&gt; &lt;span style="color:red"&gt;account&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;xyz&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;pageName&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.pageName}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop1&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop1}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop2&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop2}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop3&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop3}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop4&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop4}&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;/&amp;gt;&lt;/span&gt;
      &amp;lt;/in:Interaction.Behaviors&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;However since I require OOB (Out-Of-Browser) logging as per the doco I have configured it using a&amp;nbsp;WebAnalyticsService in the ApplicationLifetimeObjects. However I get a heap of Application events like&lt;span&gt;&amp;nbsp;Deactivated, Activated,
&lt;span&gt;NavigationStateChanged,&amp;nbsp;&lt;/span&gt;Starting and Started events logging to my Analytics provider and skewing my results. These do not appear when using the behaviors method. &amp;nbsp;I have set the properties&amp;nbsp;&lt;/span&gt;WebAnalyticsService&amp;nbsp;properties
 IsPageTrackingEnabled &amp;&amp;nbsp;AreApplicationLifetimeEventsEnabled to false, but they still come through. What am I missing?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&amp;lt;Application.ApplicationLifetimeObjects&amp;gt;
        &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;mwa&lt;/span&gt;&lt;span style="color:blue"&gt;:&lt;/span&gt;&lt;span style="color:#a31515"&gt;WebAnalyticsService&lt;/span&gt; &lt;span style="color:red"&gt;IsPageTrackingEnabled&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;False&amp;quot;&lt;/span&gt; &lt;span style="color:red"&gt;AreApplicationLifetimeEventsEnabled&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;False&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
            &amp;lt;mwa:WebAnalyticsService.Services&amp;gt; 
                &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;oa&lt;/span&gt;&lt;span style="color:blue"&gt;:&lt;/span&gt;&lt;span style="color:#a31515"&gt;AppMeasurement&lt;/span&gt; &lt;span style="color:red"&gt;account&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;xyz&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;pageName&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.pageName}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop1&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop1}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop2&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop2}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop3&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop3}&amp;quot;&lt;/span&gt;
                                   &lt;span style="color:red"&gt;prop4&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;{}{msaf.EventArgs.prop4}&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;/&amp;gt;&lt;/span&gt;
            &amp;lt;/mwa:WebAnalyticsService.Services&amp;gt;
        &lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;mwa&lt;/span&gt;&lt;span style="color:blue"&gt;:&lt;/span&gt;&lt;span style="color:#a31515"&gt;WebAnalyticsService&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
    &amp;lt;/Application.ApplicationLifetimeObjects&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;pre&gt;
      
            
                                
                
            
       
&lt;/pre&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>guyza1</author><pubDate>Thu, 03 Jan 2013 06:23:14 GMT</pubDate><guid isPermaLink="false">New Post: Auto Event Tracking - How to turn off? 20130103062314A</guid></item><item><title>New Post: Development RoadMap</title><link>http://msaf.codeplex.com/discussions/405753</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Guy,&lt;/p&gt;
&lt;p&gt;As the author and maintainer of the project, I can assure you that the there are no &amp;quot;nasties&amp;quot; in the framework.&amp;nbsp; We are not taking any outside submissions to the project.&amp;nbsp; Being an open source framework, you can download and review the code at any time.&lt;/p&gt;
&lt;p&gt;Michael&lt;/p&gt;
&lt;/div&gt;</description><author>mscherotter</author><pubDate>Wed, 12 Dec 2012 21:50:56 GMT</pubDate><guid isPermaLink="false">New Post: Development RoadMap 20121212095056P</guid></item></channel></rss>