On 9 huhti, 21:29, gonzalez_kar...@hotmail.com wrote:
> English version
>
[quoted text clipped - 33 lines]
> Could someone suggest me other approach or the error I am making to
> make this work?
You've probably already gotten help for this, but for the sake of
search engines, at least the last approach should work when you set:
activeSite.AllowUnsafeUpdates = true;
E.g.
SPWeb activeSite= new SPSite( fileUrl).OpenWeb();
activeSite.AllowUnsafeUpdates = true ;
SPFile spFile= activeSite.GetFile( fileUrl);
spFile.SaveBinary( binXml, false);
HTH,
Jarno