Does anyone know of why asp.dll would not be included in the build when
sysgen_asp = 1 is defined. I have been tring for some time to sysgen a os
that will support asp. Html files serve up quite nicely, however, .asp files
generate 501/505 errors. Upon investigation I realized asp.dll is not
included in the release directory. Obviously I'm missing some
flag/setting/component, but of couse I don't know which?
Thanks

Re: Including asp.dll in build by John

John
Tue Jun 03 10:06:14 PDT 2008

If you're building from a build window, you need the ASP to look like as
follows

set SYSGEN_ASP=1

Case does matter. Also, please make sure you do a full platform rebuild,
since whenever you add or remove a component you need a rebuild for all the
depencency logic to run again.

Also don't forget to include JScript and/or VBscript. (SYSGEN_JSCRIPT=1 or
SYSGEN_VBSCRIPT=1). ASP.dll will build fine without them, but you'll get
runtime errors since it needs one of those scripting engines.

--
John Spaith
Senior Software Design Engineer
Windows CE Networking
Microsoft Corporation

http://blogs.msdn.com/cenet/.

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2007 Microsoft Corporation. All rights
reserved.

"BigBoom" <BigBoom@discussions.microsoft.com> wrote in message
news:47E42530-75CA-4432-A913-ED4E597A807F@microsoft.com...
> Does anyone know of why asp.dll would not be included in the build when
> sysgen_asp = 1 is defined. I have been tring for some time to sysgen a os
> that will support asp. Html files serve up quite nicely, however, .asp
> files
> generate 501/505 errors. Upon investigation I realized asp.dll is not
> included in the release directory. Obviously I'm missing some
> flag/setting/component, but of couse I don't know which?
> Thanks
>



Re: Including asp.dll in build by BigBoom

BigBoom
Tue Jun 03 12:11:02 PDT 2008

Thanks, the trick in my case was "a full platform rebuild"
"John Spaith [MS]" wrote:

> If you're building from a build window, you need the ASP to look like as
> follows
>
> set SYSGEN_ASP=1
>
> Case does matter. Also, please make sure you do a full platform rebuild,
> since whenever you add or remove a component you need a rebuild for all the
> depencency logic to run again.
>
> Also don't forget to include JScript and/or VBscript. (SYSGEN_JSCRIPT=1 or
> SYSGEN_VBSCRIPT=1). ASP.dll will build fine without them, but you'll get
> runtime errors since it needs one of those scripting engines.
>
> --
> John Spaith
> Senior Software Design Engineer
> Windows CE Networking
> Microsoft Corporation
>
> http://blogs.msdn.com/cenet/.
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
> You assume all risk for your use. © 2007 Microsoft Corporation. All rights
> reserved.
>
> "BigBoom" <BigBoom@discussions.microsoft.com> wrote in message
> news:47E42530-75CA-4432-A913-ED4E597A807F@microsoft.com...
> > Does anyone know of why asp.dll would not be included in the build when
> > sysgen_asp = 1 is defined. I have been tring for some time to sysgen a os
> > that will support asp. Html files serve up quite nicely, however, .asp
> > files
> > generate 501/505 errors. Upon investigation I realized asp.dll is not
> > included in the release directory. Obviously I'm missing some
> > flag/setting/component, but of couse I don't know which?
> > Thanks
> >
>
>
>

Re: Including asp.dll in build by Bruce

Bruce
Tue Jun 03 12:59:51 PDT 2008

The rule of thumb, and this applies to any OS and compiler, when using make
(or nmake) is that if you change a file that is being built then you can
generally just build. But if you are changing something that make doesn't
do a dependency check on, like a makefile or an environment variable, then
you need to do a clean build.

Selecting different Catalog items is really just a GUI wrapping the
setting/clearing of environment variables, so do a clean build. There may
be some exceptions where the variable only changes the makeimg results, but
when in doubt, clean before building is your friend.

--
Bruce Eitman (eMVP)
Senior Engineer
Bruce.Eitman AT EuroTech DOT com
My BLOG http://geekswithblogs.net/bruceeitman

EuroTech Inc.
www.EuroTech.com

"BigBoom" <BigBoom@discussions.microsoft.com> wrote in message
news:C20BB509-F343-4237-B3B8-4D89692A7972@microsoft.com...
> Thanks, the trick in my case was "a full platform rebuild"
> "John Spaith [MS]" wrote:
>
>> If you're building from a build window, you need the ASP to look like as
>> follows
>>
>> set SYSGEN_ASP=1
>>
>> Case does matter. Also, please make sure you do a full platform rebuild,
>> since whenever you add or remove a component you need a rebuild for all
>> the
>> depencency logic to run again.
>>
>> Also don't forget to include JScript and/or VBscript. (SYSGEN_JSCRIPT=1
>> or
>> SYSGEN_VBSCRIPT=1). ASP.dll will build fine without them, but you'll get
>> runtime errors since it needs one of those scripting engines.
>>
>> --
>> John Spaith
>> Senior Software Design Engineer
>> Windows CE Networking
>> Microsoft Corporation
>>
>> http://blogs.msdn.com/cenet/.
>>
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>> You assume all risk for your use. © 2007 Microsoft Corporation. All
>> rights
>> reserved.
>>
>> "BigBoom" <BigBoom@discussions.microsoft.com> wrote in message
>> news:47E42530-75CA-4432-A913-ED4E597A807F@microsoft.com...
>> > Does anyone know of why asp.dll would not be included in the build when
>> > sysgen_asp = 1 is defined. I have been tring for some time to sysgen a
>> > os
>> > that will support asp. Html files serve up quite nicely, however, .asp
>> > files
>> > generate 501/505 errors. Upon investigation I realized asp.dll is not
>> > included in the release directory. Obviously I'm missing some
>> > flag/setting/component, but of couse I don't know which?
>> > Thanks
>> >
>>
>>
>>