When anonymous users login in the SharePoint site which has BDC web parts, you will see the error message “You do not have permission to access abc in xyzInstance”. This is fixed in the Infrastructure update of WSS and MOSS. In the Application Definition File, for each method instance ( for which we need to give anonymous access), we need to add a property called AllowAnonymousExecute. Its a boolean value which needs to be set as true.

<MethodInstance Type="Finder" ReturnParameterName="Products" ReturnTypeDescriptorName="ProductDataReader" ReturnTypeDescriptorLevel="0" Name="ProductFinderInstance">

<Properties>

         <Property Name="AllowAnonymousExecute" Type="System.Boolean">true</Property>

    </Properties>

</MethodInstance>

相关文章:

  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2021-12-21
  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-24
  • 2021-08-17
  • 2021-08-09
  • 2022-02-17
  • 2022-12-23
  • 2021-11-13
  • 2021-12-19
相关资源
相似解决方案