<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Gael Duhamel [MVP]</title>
	<atom:link href="http://www.gaelduhamel.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gaelduhamel.com</link>
	<description>SharePoint dude &#38; Commerce Server expert</description>
	<lastBuildDate>Wed, 16 Feb 2011 11:15:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on How to install and configure a SharePoint / Commerce Server 2009 development environment by Alen Ziver MALHASOGLU</title>
		<link>http://www.gaelduhamel.com/how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/comment-page-1/#comment-5274</link>
		<dc:creator>Alen Ziver MALHASOGLU</dc:creator>
		<pubDate>Wed, 16 Feb 2011 11:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/sharepoint-commerce-server-2009-how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/#comment-5274</guid>
		<description>Hello Reuben M, 

I think your problem is because you have configured your web application using &quot;Classic Authentication&quot; if you switch it to &quot;Claims Based Authentication&quot; the site should work fine.

Just try it and post the result here and email to me please.

Regards,
Alen</description>
		<content:encoded><![CDATA[<p>Hello Reuben M, </p>
<p>I think your problem is because you have configured your web application using &#8220;Classic Authentication&#8221; if you switch it to &#8220;Claims Based Authentication&#8221; the site should work fine.</p>
<p>Just try it and post the result here and email to me please.</p>
<p>Regards,<br />
Alen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to preview your Commerce Server marketing data by GaelDuhamel</title>
		<link>http://www.gaelduhamel.com/how-to-preview-your-commerce-server-marketing-data/comment-page-1/#comment-2820</link>
		<dc:creator>GaelDuhamel</dc:creator>
		<pubDate>Tue, 23 Nov 2010 23:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/?p=465#comment-2820</guid>
		<description>Hi Caesar,

Thanks for sharing, that&#039;s cool :)

The thing I don&#039;t like with your solution is that you have to go to each of the campaign items you want to preview and set the targeting value to 1 or 1 and a date (if we go with your advanced solution)... So, if you have let&#039;s say 50 ads and/or 20 discounts to preview it&#039;s pretty tiring and hassle... As far as you have to rollback each ones to preview for other date range.

With these stored procedures, you do not have to change something in the marketing items. Everything is loaded at the runtime with the stored procedures set in the web.config...

For information, I haven&#039;t change the built-in stored procedures. There are all new and loaded only by the preview web application. The production environnement is clean and the support is not break...

Anyway, thanks again for your idea :)</description>
		<content:encoded><![CDATA[<p>Hi Caesar,</p>
<p>Thanks for sharing, that&#8217;s cool <img src='http://www.gaelduhamel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The thing I don&#8217;t like with your solution is that you have to go to each of the campaign items you want to preview and set the targeting value to 1 or 1 and a date (if we go with your advanced solution)&#8230; So, if you have let&#8217;s say 50 ads and/or 20 discounts to preview it&#8217;s pretty tiring and hassle&#8230; As far as you have to rollback each ones to preview for other date range.</p>
<p>With these stored procedures, you do not have to change something in the marketing items. Everything is loaded at the runtime with the stored procedures set in the web.config&#8230;</p>
<p>For information, I haven&#8217;t change the built-in stored procedures. There are all new and loaded only by the preview web application. The production environnement is clean and the support is not break&#8230;</p>
<p>Anyway, thanks again for your idea <img src='http://www.gaelduhamel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to preview your Commerce Server marketing data by Caesar</title>
		<link>http://www.gaelduhamel.com/how-to-preview-your-commerce-server-marketing-data/comment-page-1/#comment-2795</link>
		<dc:creator>Caesar</dc:creator>
		<pubDate>Tue, 23 Nov 2010 01:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/?p=465#comment-2795</guid>
		<description>I like the idea, but modifying product stored procedures has the risk of side effects as bugs :-).

The two site idea is the right approach though. However, you want the preview site to have a &quot;PREVIEW&quot; environment variable defined (you can feed define this as a global variable in ASP.NET for the application). For example g_PREVIEW = True

You can feed the g_PREVIEW value into the marketing rule by using a custom Profile definition (I believe there is a Targeting custom profile already built in).

When you define the marketing rules simply add a rule that says Targeting.g_PREVIEW=TRUE OR (the rest of the rules).

That way when you run on the preview app, the marketing rules will always fire.

Note that everything will fire, so if you have a discount for Dec 1-24, and separately Dec 25-30, you will have both discounts fire at the same time.

To refine the approach a bit, the Preview site should be sensitive to a user provided date and time to simulate such that the rules will preview on a specific date.

You can do this using another global variable that takes a datetime value, same method as g_PREVIEW method above.

Enjoy! :-)</description>
		<content:encoded><![CDATA[<p>I like the idea, but modifying product stored procedures has the risk of side effects as bugs <img src='http://www.gaelduhamel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>The two site idea is the right approach though. However, you want the preview site to have a &#8220;PREVIEW&#8221; environment variable defined (you can feed define this as a global variable in ASP.NET for the application). For example g_PREVIEW = True</p>
<p>You can feed the g_PREVIEW value into the marketing rule by using a custom Profile definition (I believe there is a Targeting custom profile already built in).</p>
<p>When you define the marketing rules simply add a rule that says Targeting.g_PREVIEW=TRUE OR (the rest of the rules).</p>
<p>That way when you run on the preview app, the marketing rules will always fire.</p>
<p>Note that everything will fire, so if you have a discount for Dec 1-24, and separately Dec 25-30, you will have both discounts fire at the same time.</p>
<p>To refine the approach a bit, the Preview site should be sensitive to a user provided date and time to simulate such that the rules will preview on a specific date.</p>
<p>You can do this using another global variable that takes a datetime value, same method as g_PREVIEW method above.</p>
<p>Enjoy! <img src='http://www.gaelduhamel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install and configure a SharePoint / Commerce Server 2009 development environment by GaelDuhamel</title>
		<link>http://www.gaelduhamel.com/how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/comment-page-1/#comment-2419</link>
		<dc:creator>GaelDuhamel</dc:creator>
		<pubDate>Tue, 09 Nov 2010 10:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/sharepoint-commerce-server-2009-how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/#comment-2419</guid>
		<description>Yes you do not need to have a domain controller for your development box.</description>
		<content:encoded><![CDATA[<p>Yes you do not need to have a domain controller for your development box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install and configure a SharePoint / Commerce Server 2009 development environment by Antonio Rosario</title>
		<link>http://www.gaelduhamel.com/how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/comment-page-1/#comment-2418</link>
		<dc:creator>Antonio Rosario</dc:creator>
		<pubDate>Tue, 09 Nov 2010 09:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/sharepoint-commerce-server-2009-how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/#comment-2418</guid>
		<description>Gael... thanks for your response.  Would it be possible to demote (dcPromo)the domain controller (Windows Server 2008 R2).  Then from scratch install SQL 2008 R2, then Commerce 2009, then SharePoint 2010 all on one box without it being a domain controller? Is this possible?
or do I need a domain controller?....Tony</description>
		<content:encoded><![CDATA[<p>Gael&#8230; thanks for your response.  Would it be possible to demote (dcPromo)the domain controller (Windows Server 2008 R2).  Then from scratch install SQL 2008 R2, then Commerce 2009, then SharePoint 2010 all on one box without it being a domain controller? Is this possible?<br />
or do I need a domain controller?&#8230;.Tony</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install and configure a SharePoint / Commerce Server 2009 development environment by GaelDuhamel</title>
		<link>http://www.gaelduhamel.com/how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/comment-page-1/#comment-2376</link>
		<dc:creator>GaelDuhamel</dc:creator>
		<pubDate>Mon, 08 Nov 2010 09:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/sharepoint-commerce-server-2009-how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/#comment-2376</guid>
		<description>Hi Antonio,

Commerce Server is not supported on a domain controller and even if you can force the installation there are lots of bugs. You have no other choices than moving it to another box.

Gaël</description>
		<content:encoded><![CDATA[<p>Hi Antonio,</p>
<p>Commerce Server is not supported on a domain controller and even if you can force the installation there are lots of bugs. You have no other choices than moving it to another box.</p>
<p>Gaël</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install and configure a SharePoint / Commerce Server 2009 development environment by Antonio Rosario</title>
		<link>http://www.gaelduhamel.com/how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/comment-page-1/#comment-2345</link>
		<dc:creator>Antonio Rosario</dc:creator>
		<pubDate>Sat, 06 Nov 2010 21:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/sharepoint-commerce-server-2009-how-to-install-and-configure-a-sharepoint-commerce-server-2009-development-environment-2/#comment-2345</guid>
		<description>Hello Gael: (Commerce Server 2009 &amp; Windows Server 2008 R2)

During the Commerce Server Configuration I get, &quot;an error occured when configuring the feature &quot;Staging Service.&quot;  In the error log it says, 

&quot;Exception occured during feature configuration: Microsoft.CommerceServer.Internal.Config.ConfigurationException: Exception has been thrown by the target of an invocation. ---&gt; System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---&gt; System.Runtime.InteropServices.COMException (0x8007056C): A new member could not be added to a local group because the member has the wrong account type.&quot; 

My question is are  you familiar with this error? and The staging service account, &quot;CSStageSvc&quot;  which group are in its properites.  I am installing it on a Domain Controller?  Any ideas... Tony</description>
		<content:encoded><![CDATA[<p>Hello Gael: (Commerce Server 2009 &amp; Windows Server 2008 R2)</p>
<p>During the Commerce Server Configuration I get, &#8220;an error occured when configuring the feature &#8220;Staging Service.&#8221;  In the error log it says, </p>
<p>&#8220;Exception occured during feature configuration: Microsoft.CommerceServer.Internal.Config.ConfigurationException: Exception has been thrown by the target of an invocation. &#8212;&gt; System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. &#8212;&gt; System.Runtime.InteropServices.COMException (0x8007056C): A new member could not be added to a local group because the member has the wrong account type.&#8221; </p>
<p>My question is are  you familiar with this error? and The staging service account, &#8220;CSStageSvc&#8221;  which group are in its properites.  I am installing it on a Domain Controller?  Any ideas&#8230; Tony</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Data Warehouse &amp; analytics reports in Commerce Server by Pritesh Gandhi</title>
		<link>http://www.gaelduhamel.com/commerce-server-the-data-warehouse-analytics-reports/comment-page-1/#comment-2047</link>
		<dc:creator>Pritesh Gandhi</dc:creator>
		<pubDate>Wed, 27 Oct 2010 06:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/commerce-server-the-data-warehouse-analytics-reports/#comment-2047</guid>
		<description>Hi Gael,

I am facing same problem which abdul mentioned in first post.

Not able to view Commerce server Data warehouse in Commerce Server Manager ...

I have tried multiple times but still it&#039;s not working ...

Any help from your side is helpful to me.

Thanks
Pritesh Gandhi</description>
		<content:encoded><![CDATA[<p>Hi Gael,</p>
<p>I am facing same problem which abdul mentioned in first post.</p>
<p>Not able to view Commerce server Data warehouse in Commerce Server Manager &#8230;</p>
<p>I have tried multiple times but still it&#8217;s not working &#8230;</p>
<p>Any help from your side is helpful to me.</p>
<p>Thanks<br />
Pritesh Gandhi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Data Warehouse &amp; analytics reports in Commerce Server by GaelDuhamel</title>
		<link>http://www.gaelduhamel.com/commerce-server-the-data-warehouse-analytics-reports/comment-page-1/#comment-1991</link>
		<dc:creator>GaelDuhamel</dc:creator>
		<pubDate>Mon, 25 Oct 2010 08:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/commerce-server-the-data-warehouse-analytics-reports/#comment-1991</guid>
		<description>Hi Pritesh,

Which questions are you talking about?</description>
		<content:encoded><![CDATA[<p>Hi Pritesh,</p>
<p>Which questions are you talking about?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Data Warehouse &amp; analytics reports in Commerce Server by Pritesh Gandhi</title>
		<link>http://www.gaelduhamel.com/commerce-server-the-data-warehouse-analytics-reports/comment-page-1/#comment-1931</link>
		<dc:creator>Pritesh Gandhi</dc:creator>
		<pubDate>Fri, 22 Oct 2010 13:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.gaelduhamel.com/commerce-server-the-data-warehouse-analytics-reports/#comment-1931</guid>
		<description>Hi Gael

Where is solution of abdul question ?

Thanks
Pritesh Gandhi</description>
		<content:encoded><![CDATA[<p>Hi Gael</p>
<p>Where is solution of abdul question ?</p>
<p>Thanks<br />
Pritesh Gandhi</p>
]]></content:encoded>
	</item>
</channel>
</rss>

