> Feel free to chip in, I'd be more than happy to vote +1 for the module
> if I knew how to get it up and running and test it with even a hello
> world ASP. I had a brief look, and it seemed like a lot of effort. You
> could document that, and it might make it easier for testers.

Here are the steps I took to get .netCHARTING working with
mod_aspdotnet:

1.  Download and install latest Win32 2.2.2 Apache binary.

2.  Download .netCHARTING 4.0 evaluation version for .NET 1.1 from
http://www.dotnetcharting.com/download.aspx.

3.  Unzip somewhere, e.g. c:\dotnetcharting.

4.  Edit httdp.conf and add the following:

# ASP.NET Configuration
LoadModule aspdotnet_module modules/mod_aspdotnet.so

AddHandler asp.net asax ascx ashx asmx aspx aspxauth axd config cs
csproj \
                   licx rem resources resx soap vb vbproj vsdisco
webinfo

<IfModule mod_aspdotnet.cpp>

    AspNetVersion v1.1.4322

    AspNetMount /dotnetcharting "C:/dotnetcharting"

    Alias /dotnetcharting "C:/dotnetcharting"

    <Directory "C:/dotnetcharting">
        Options FollowSymlinks ExecCGI
        Order allow,deny
        Allow from all
        DirectoryIndex Default.htm Default.aspx
    </Directory>

    # For all virtual ASP.NET webs, we need the aspnet_client files 
    # to serve the client-side helper scripts.
    AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \
    "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
    <Directory \
          "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
        Options FollowSymlinks
        Order allow,deny
        Allow from all
    </Directory>

</IfModule>

5. Restart httpd and visit http://localhost/dotnetcharting.

And that's all that needs to be done.


        Trent.

Reply via email to