Spread ASP.NET 17
Spread for ASP.NET 17 Product Documentation / Developer's Guide / Getting Started / Working with the Component / Working with Windows Azure
In This Topic
    Working with Windows Azure
    In This Topic

    You can use Spread for ASP.NET in a Windows Azure project. Use the following steps:

    1. Copy the fp_client folder to your WebRole project folder.
    2. Include this fp_client folder in your WebRole project and add the following setting to the web.config file.
      Code
      Copy Code
      <appSettings>
      <add key="fp_client" value="fp_client"/>
      </appSettings>
      

    You do not need to edit web.config if you use the development fabric in Visual Studio.

    You can also use the Chart control in a Windows Azure project. You would need to add the ChartImageHttpHandler to the web server section of the web.config file. If you are using integrated managed pipeline mode, set validateIntegratedModeConfiguration to False. For example:

    Code
    Copy Code
    <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <handlers>
    ...
    <add name="chart" path="FpChart.axd" verb="*" type="FarPoint.Web.Chart.ChartImageHttpHandler"/>