Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Apache: Dev

[VOTE] Release mod_aspdotnet build 2004?

 

 

First page Previous page 1 2 Next page Last page  View All Apache dev RSS feed   Index | Next | Previous | View Threaded


colm at stdlib

Jul 20, 2006, 4:16 AM

Post #26 of 30 (1687 views)
Permalink
Re: [TALLY] Release mod_aspdotnet build 2004? [In reply to]

On Thu, Jul 20, 2006 at 01:09:19PM +0200, Trent Nelson wrote:
> 1. Download and install latest Win32 2.2.2 Apache binary.

o.k., well that's a bad start, but I can handle building an Apache
binary :-)

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

They want my email address, so that's a non-starter. Are there any other
ASP applications, liberally licensed, that would serve as a good test?

> 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

How did you compile it?

> 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.

Cool :)

--
Colm MacCárthaigh Public Key: colm+pgp [at] stdlib


jorge.schrauwen at gmail

Jul 20, 2006, 5:47 AM

Post #27 of 30 (1677 views)
Permalink
Re: [TALLY] Release mod_aspdotnet build 2004? [In reply to]

The Microsoft Atlast samples will be a good test aswel:
http://atlas.asp.net/Default.aspx?tabid=47

On 7/20/06, Colm MacCarthaigh <colm [at] stdlib> wrote:
>
> On Thu, Jul 20, 2006 at 01:09:19PM +0200, Trent Nelson wrote:
> > 1. Download and install latest Win32 2.2.2 Apache binary.
>
> o.k., well that's a bad start, but I can handle building an Apache
> binary :-)
>
> > 2. Download .netCHARTING 4.0 evaluation version for .NET 1.1 from
> > http://www.dotnetcharting.com/download.aspx.
>
> They want my email address, so that's a non-starter. Are there any other
> ASP applications, liberally licensed, that would serve as a good test?
>
> > 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
>
> How did you compile it?
>
> > 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.
>
> Cool :)
>
> --
> Colm MacCárthaigh Public Key: colm+pgp [at] stdlib
>



--
~Jorge


tnelson at onresolve

Jul 20, 2006, 9:43 AM

Post #28 of 30 (1686 views)
Permalink
RE: [TALLY] Release mod_aspdotnet build 2004? [In reply to]

> On Thu, Jul 20, 2006 at 01:09:19PM +0200, Trent Nelson wrote:
> > 1. Download and install latest Win32 2.2.2 Apache binary.
>
> o.k., well that's a bad start, but I can handle building an Apache
> binary :-)

Yah, I was just recalling what I did; if you want to build directly you're more than welcome :)

> > 2. Download .netCHARTING 4.0 evaluation version for .NET 1.1 from
> > http://www.dotnetcharting.com/download.aspx.
>
> They want my email address, so that's a non-starter. Are there any other
> ASP applications, liberally licensed, that would serve as a good test?

Yeah, it's a commercial product, so you'd be downloading the eval version. Microsoft released a whole bunch of ASP.NET 1.1 webapps you could try:

http://www.asp.net/downloads/default11.aspx

I recall trying the 'Issue Tracker' and 'Portal Starter Kit' but didn't actually have any luck getting them running; wasn't sure if it was a mod_aspdotnet thing or something else, though. Didn't pursue it as all the .NET webapps that I wanted to run, ran ;-)

> > # ASP.NET Configuration
> > LoadModule aspdotnet_module modules/mod_aspdotnet.so
>
> How did you compile it?

I used the binary installer Bill provided. Didn't have any inclination to build it given that it needs VS .NET 2002, and the installer worked fine.

> Colm MacCárthaigh

Trent.


wrowe at rowe-clan

Jul 20, 2006, 11:39 AM

Post #29 of 30 (1689 views)
Permalink
Re: [TALLY] Release mod_aspdotnet build 2004? [In reply to]

Colm MacCarthaigh wrote:
> On Thu, Jul 20, 2006 at 01:09:19PM +0200, Trent Nelson wrote:
>
>> 2. Download .netCHARTING 4.0 evaluation version for .NET 1.1 from
>> http://www.dotnetcharting.com/download.aspx.
>
> They want my email address, so that's a non-starter. Are there any other
> ASP applications, liberally licensed, that would serve as a good test?

Assuming you have Windows, you have no trouble obtaining one of the .NET
SDK's (not the "Windows Platform SDK", but the ".NET SDK" with C#, VB.NET,
samples, etc etc) - you will find two trees in that install; QuickStart\,
and Samples\. You can make either of those an Alias + AspNetMount, enable
AspNet Files in the appropriate <directory >, and run either the MakeAll.bat
file or just nmake the makefile in the sample/quickstart directory you want
to take for a spin.

If you install VisualStudio .NET (2002) or later - you probably already
installed the .NET SDK as part of that installation... so it comes free.

>> 4. Edit httdp.conf and add the following:
>>
>> # ASP.NET Configuration
>> LoadModule aspdotnet_module modules/mod_aspdotnet.so
>
> How did you compile it?

This user likely didn't. Most users likely won't. To compile it, install
the original VisualStudio .NET (at least the C/C++ and .NET components of the
product) and simply follow the instructions in the tarball's README.

Now - I realize it's almost absurd to ask people to go back to the original
.NET version of VisualStudio (2002) but you have to recognize that Microsoft
substantially redesigned *the language C++.NET* between 2002 and 2003, and
started virtually from scratch between 2003 and 2005 Visual Studio.

If this project had the wherewithal to oversee mod_aspdotnet, the next step
of it's evolution was clearly identified as migrating to 2005. There is the
'light' version available of C++.NET. But it's not a trivial migration, and
not worth my time or effort if the module's not hanging around (hell - I wasted
too many cycles on preparing to release build 2004 and updating all of the
documentation contexts as well to integrate it better into the httpd project).
So, this was my basis for a 'last call' on the VisualStudio .NET 2002 flavor,
with every major problem for the VS .NET/2002 builds resolved.

So do what every project asks you to do, read the README in the .zip ball :)
Note that it's out of date in one respect; installer (now compiled from the
InstallShield 11.5 flavor) can no longer integrate into the build schema. You
would get more out of reading the 'deployment notes' section of;

http://svn.apache.org/repos/asf/httpd/mod_aspdotnet/trunk/README.txt

Since README is out-of-date with respect to "installer"; I'll whack that note.

Bill


wrowe at rowe-clan

Jul 20, 2006, 1:16 PM

Post #30 of 30 (1677 views)
Permalink
Re: [TALLY] Release mod_aspdotnet build 2004? [In reply to]

William A. Rowe, Jr. wrote:

> So do what every project asks you to do, read the README in the .zip ball :)
> Note that it's out of date in one respect; installer (now compiled from the
> InstallShield 11.5 flavor) can no longer integrate into the build
> schema. You
> would get more out of reading the 'deployment notes' section of;
>
> http://svn.apache.org/repos/asf/httpd/mod_aspdotnet/trunk/README.txt
>
> Since README is out-of-date with respect to "installer"; I'll whack that
> note.

Update committed, thanks for your question that triggered a revisit, Colm :)

First page Previous page 1 2 Next page Last page  View All Apache dev RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.