Error - Trying Get Advertisement(MarketingSystem).
I am trying to get a Ads(Advertisement) created in my commerce server, but an error is happen...
error =http://www40.brinkster.com/guilhermegara/images/error.jpg
There is my code:
IPrincipal principal =newWindowsPrincipal(WindowsIdentity.GetCurrent());
Thread.CurrentPrincipal = principal;
stringcurrentUser = principal.Identity.Name;
stringstrNomeSite ="SCE"; //Name application
MarketingContext ctx =MarketingContext.Create(strNomeSite,@"C:\Inetpub\wwwroot\application\MarketingWebService\MarketingAuthorizationStore.xml",AuthorizationMode.ThreadContext,10,20);
PageGroup[] pg = ctx.PageGroups.GetAllPageGroups();
I was set all configurations for *.webserviceAthorizationStore (in azman.msc)!
My MarketingWebService is with windows authentication (not allow user anonymous).
I trying change the mode of authentication in parameter... ->
MarketingContext.Create(strNomeSite,@"C:\Inetpub\wwwroot\application\MarketingWebService\MarketingAuthorizationStore.xml",AuthorizationMode.HttpContext);
... and not solve my problem!!!
Know anybody what happens?
Thanks in advance!
Guilherme Gara.

