Authentication & authorizations scenarios

 

UNAUTHENTICATED

·      Set XML/A virtual directory security to Anonymous access

·      Data sources (OLAP cubes, SQL databases...) must have public access

·      web.config should have impersonate="false";

·      aspnet local account (account that executes the asp.net processes) must

have read/write/delete rights on ChartsTemp.

 

INTEGRATED WINDOWS with users credentials

·      Set XML/A virtual directory security to Integrated Windows (dissable Anonymous access)

·      Set XML/A datasources (XAfolder\config\dataSources.xml) for integrated security. For example:

  <DataSourceInfo>"Provider=SQLOLEDB.1;Integrated Security=SSPI;Data Source=MyServer"</DataSourceInfo>

·      Set your application virtual directory security to Integrated Windows (dissable Anonymous access)

·      Insert in your application's Web.config file:

  <identity impersonate="true"/>

·      User must have read/write/delete rights on ChartsTemp directory

 

INTEGRATED WINDOWS with specific credentials

·      Set XML/A virtual directory security to Integrated Windows (dissable Anonymous access)

·      Set XML/A datasources for integrated security

·      Insert in your application's Web.config file:

  <identity impersonate="true" userName="MyDomain\MyUser" password="MyPass" />

·      Specified user must have read/write/delete rights on ChartsTemp directory

 

 

 

 

images\imrcleft.gif

Copyright © 2004 Intellimerce Inc. All rights reserved.