| Author |
Error running pipeline
|
|
|
| I am getting error message:
There was an error loading resources for the messageManager section. Please
check that the baseName 'DefualtNamespace.MessageManager ' is valid and a
valid satellite assembly exists for the default culture 'en-US'.
When trying to execute the following line in my code.
PipelineInfo pipeInfo = new PipelineInfo(pipelineName);
What could be the problem?
Thanks in advance for any help.
| |
| Jeff Lynch 2006-10-15, 7:30 pm |
| A few things to check.
1) Make sure your web application's "bin" folder contains the
CommerceMessageManager.dll assembly and a subfolder called "en-us" which
should contain the CommerceMessageManager.resources.dll assembly.
2) Make sure your web.config file contains the <messageManager> element with
some <cultures> elements below it as shown here:
<messageManager>
<cultures default="en-US" baseName="CommerceMessageManager"
assembly="CommerceMessageManager">
<culture id="en-US"/>
<culture id="fr-fr"/>
<culture id="ja-JP"/>
<culture id="de-DE"/>
</cultures>
<resources>
<resource id="pur_badsku"/>
<resource id="pur_badplacedprice"/>
<resource id="pur_discount_changed"/>
<resource id="pur_discount_removed"/>
<resource id="pur_noitems"/>
....
<resource id="unknown_shipping_method"/>
</resources>
</messageManager>
--
Jeff Lynch
MVP Windows Server System - Commerce Server
http://codebetter.com/blogs/jeff.lynch
"JC" <JC@discussions.microsoft.com> wrote in message
news:DB52A463-86F0-40DA-A425-CB0199209AF6@microsoft.com...
>I am getting error message:
>
> There was an error loading resources for the messageManager section.
> Please
> check that the baseName 'DefualtNamespace.MessageManager ' is valid and a
> valid satellite assembly exists for the default culture 'en-US'.
>
> When trying to execute the following line in my code.
>
> PipelineInfo pipeInfo = new PipelineInfo(pipelineName);
>
> What could be the problem?
>
> Thanks in advance for any help.
>
| |
|
| Hi Jeff,
Worked. Thank you for your help.
JC
"Jeff Lynch" wrote:
> A few things to check.
>
> 1) Make sure your web application's "bin" folder contains the
> CommerceMessageManager.dll assembly and a subfolder called "en-us" which
> should contain the CommerceMessageManager.resources.dll assembly.
>
> 2) Make sure your web.config file contains the <messageManager> element with
> some <cultures> elements below it as shown here:
>
> <messageManager>
> <cultures default="en-US" baseName="CommerceMessageManager"
> assembly="CommerceMessageManager">
> <culture id="en-US"/>
> <culture id="fr-fr"/>
> <culture id="ja-JP"/>
> <culture id="de-DE"/>
> </cultures>
> <resources>
> <resource id="pur_badsku"/>
> <resource id="pur_badplacedprice"/>
> <resource id="pur_discount_changed"/>
> <resource id="pur_discount_removed"/>
> <resource id="pur_noitems"/>
> ....
> <resource id="unknown_shipping_method"/>
> </resources>
> </messageManager>
>
>
> --
> Jeff Lynch
> MVP Windows Server System - Commerce Server
> http://codebetter.com/blogs/jeff.lynch
>
>
> "JC" <JC@discussions.microsoft.com> wrote in message
> news:DB52A463-86F0-40DA-A425-CB0199209AF6@microsoft.com...
>
>
>
| |
| Dave Marini 2006-11-13, 8:42 am |
| I too am having this problem but I also can't find the
CommerceMessageManager.dll file. It's nowhere on my machine and I've
installed CS2007. Any tips on where I can get this? My basket pipelines
won't run unless I configure these in the web.config. no globalization on
our site. no satellite assemblies..
Thanks,
Dave
"JC" wrote:
[vbcol=seagreen]
> Hi Jeff,
>
> Worked. Thank you for your help.
>
> JC
>
> "Jeff Lynch" wrote:
>
|
|
|
|