Please, try the latest WiX v2 drops (http://wix.sourceforge.net/releases).  All 
of these bugs should be fixed there.  We're getting close to zero bugs in WiX 
v2 so it would be helpful if people started picking up the weekly drops of WiX 
v2 to help us ensure nothing regresses.

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of david adams
Sent: Thursday, March 01, 2007 8:46 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Create new IIS WebSite

If replacing the dll corrected your problem (and you were using the current 
codebase / binary drop), then I suspect that a bug has been reintroduced.
It was fixed a couple of months back.

The error that was occurring was an array buffer overflow in the SCA dll when 
it read the IIS metadata.  The array is on the index value, which until Win 
2003 / IIS 6.0 was always 0.  Mike Dimmick posted the code fix a while back and 
it was checked back into the project.

To your point, yes.  Drop #3309 did not have the error.

To answer your other questions, I'd suggest that you look at the 
<WebDirProperties> element in the WiX Help file.  You associate it via the 
@DirProperties attribute of your <WebSite> element.

David Adams
MSN MessengerID: [EMAIL PROTECTED]





>From: [EMAIL PROTECTED]
>To: "Matthew Janulewicz"
><[EMAIL PROTECTED]>,<wix-users@lists.sourceforge.net>
>Subject: Re: [WiX-users] Create new IIS WebSite
>Date: Thu, 01 Mar 2007 16:21:21 +0000
>MIME-Version: 1.0
>Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by
>bay0-mc2-f10.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);
>Thu, 1 Mar 2007 08:22:36 -0800
>Received: from sc8-sf-list1-new.sourceforge.net
>(sc8-sf-list1-new-b.sourceforge.net [10.3.1.93])by
>sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 3425A12B5D; Thu,  1
>Mar
>2007 08:21:47 -0800 (PST)
>Received: from sc8-sf-mx2-b.sourceforge.net
>([10.3.1.92]helo=mail.sourceforge.net)by
>sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43)id
>1HMo2J-0007iq-Lcfor wix-users@lists.sourceforge.net; Thu, 01 Mar 2007
>08:21:43 -0800
>Received: from sccrmhc14.comcast.net ([63.240.77.84])by
>mail.sourceforge.net with esmtp (Exim 4.44) id 1HMo2H-0000YM-L0for
>wix-users@lists.sourceforge.net; Thu, 01 Mar 2007 08:21:43 -0800
>Received: from smailcenter47.comcast.net ([204.127.205.147])by
>comcast.net
>(sccrmhc14) with SMTPid <2007030116212101400pt9tue>; Thu, 1 Mar 2007
>16:21:21 +0000
>Received: from [66.255.44.169] by smailcenter47.comcast.net;Thu, 01 Mar
>2007 16:21:21 +0000
>X-Message-Info: LsUYwwHHNt2xefYWvTrnm8rEYCvZfxYb4ztguHEdPlQ=
>X-Mailer: AT&T Message Center Version 1 (Oct  4 2006)
>X-Authenticated-Sender: Y29zbW81MUBjb21jYXN0Lm5ldA==
>X-Spam-Score: 0.8 (/)
>X-Spam-Report: Spam Filtering performed by sourceforge.net.See
>http://spamassassin.org/tag/ for more details.Report problems
>tohttp://sf.net/tracker/?func=add&group_id=1&atid=2000010.2 NO_REAL_NAME
>        From: does not include a real name0.5 FROM_ENDS_IN_NUMS      From:
>ends in numbers0.0 HTML_MESSAGE           BODY: HTML included in message0.1
>MIME_BOUND_NEXTPART    Spam tool pattern in MIME boundary
>X-BeenThere: wix-users@lists.sourceforge.net
>X-Mailman-Version: 2.1.8
>Precedence: list
>List-Id: "General discussion for Windows Installer XML
>toolset."<wix-users.lists.sourceforge.net>
>List-Unsubscribe:
><https://lists.sourceforge.net/lists/listinfo/wix-users>,<mailto:wix-us
>[EMAIL PROTECTED]>
>List-Archive:
><http://sourceforge.net/mailarchive/forum.php?forum=wix-users>
>List-Post: <mailto:wix-users@lists.sourceforge.net>
>List-Help:
><mailto:[EMAIL PROTECTED]>
>List-Subscribe:
><https://lists.sourceforge.net/lists/listinfo/wix-users>,<mailto:wix-us
>[EMAIL PROTECTED]>
>Errors-To: [EMAIL PROTECTED]
>Return-Path: [EMAIL PROTECTED]
>X-OriginalArrivalTime: 01 Mar 2007 16:22:37.0547 (UTC)
>FILETIME=[D37EFBB0:01C75C1D]
>
>Thank you for your reply.  Your were right... it should be working.  I
>figured out the problem was a bug with wix.  I am using an early
>version 2.0.4415.0.  So i just replaced the effected dll (sca*.dll and
>scawix.dll) with an even early version (3309) where it was working.
>
>Having said that, i do have another problem.  I am trying to set some
>properties within the website.  For example I would like to set the
>execute permission to 'Scripts Only', I would also like to name the default 
>page.
>And one more thing.. i would like to be able to set the authenticated
>access to integrated security or prompt the user for username and
>password for anonymous access.  Is this possible with Wix?  I have
>searched the user list and couldn't find anything.
>
>Thank you for your help,
>Shayla
>-------------- Original message --------------
>From: "Matthew Janulewicz" <[EMAIL PROTECTED]>
>
>IIS 5.1 (default with XP) only allows one website to be
>installed/running at a time, so that's probably why it replaces your 'Default 
>Web Site'.
>
>IIS 6.0 should allow you to install multiple websites, we do it all the
>time. I don't know if that's the default version for Windows Server
>2003, but that's our current set-up and it works great.
>
>
>-Matt
>
>
>
>
>
>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, February 28, 2007 3:39 PM
>To: wix-users@lists.sourceforge.net
>Subject: [WiX-users] Create new IIS WebSite
>
>I am trying to create a new web site in IIS.
>
>Here is my code.
><WebSite Id='Web Sites' Description='My Web Site' Directory='INSTA LLDIR'
>StartOnInstall='yes'>
>    <WebAddress Id="AllUnassigned" Port="14465"  />< /SPAN> </WebSite>
>
>If I use port 80 it renames the 'Default Web Site' to 'My Web Site'.
>If I use a random port number I get an error (Failed to read IIsWebs table.
>(-2147024774)).
>
>What I am trying to do is create a new web site on windows 2003 and
>windows XP.  Can anyone please help??
>
>TIA
>Shayla


>-----------------------------------------------------------------------
>-- Take Surveys. Earn Cash. Influence the Future of IT Join
>SourceForge.net's Techsay panel and you'll get the chance to share your
>opinions on IT & business topics through brief surveys-and earn cash
>http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVD
>EV


>_______________________________________________
>WiX-users mailing list
>WiX-users@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/wix-users

_________________________________________________________________
Mortgage rates as low as 4.625% - Refinance $150,000 loan for $579 a month.
Intro*Terms
https://www2.nextag.com/goto.jsp?product=100000035&url=%2fst.jsp&tm=y&search=mortgage_text_links_88_h27f6&disc=y&vers=743&s=4056&p=5117



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to