Hi,
I use WIX v3 ...in version 2 I never had this problem Best Regards. Silvio -----Ursprüngliche Nachricht----- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von david adams Gesendet: Donnerstag, 08. Februar 2007 15:03 An: wix-users@lists.sourceforge.net Betreff: Re: [WiX-users] use WebSite element Silvo: I use Wix 2 and do not have to add the xmlns:iis namespace to utilize the IIS management elements (<WebSite>, <WebAddress>, etc.). However, I think that the extensions are defined in separate set of files that have to be included with your command line calls (to Light.exe definitely, Candle.exe maybe). David Adams MSN MessengerID: [EMAIL PROTECTED] >From: "Ziegelwanger, Silvio" <[EMAIL PROTECTED]> >To: <wix-users@lists.sourceforge.net> >Subject: [WiX-users] use WebSite element >Date: Thu, 8 Feb 2007 14:02:28 +0100 >MIME-Version: 1.0 >Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by >bay0-mc8-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Thu, 8 >Feb 2007 05:03:48 -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 5C882122C3; Thu, 8 Feb >2007 05:03: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 1HF8wB-0004gE-Kzfor >wix-users@lists.sourceforge.net; Thu, 08 Feb 2007 05:03:43 -0800 >Received: from fabaglexfr.fabasoft.com ([192.84.221.196])by >mail.sourceforge.net with esmtp (Exim 4.44) id 1HF8w7-0001VO-Qnfor >wix-users@lists.sourceforge.net; Thu, 08 Feb 2007 05:03:43 -0800 >Received: from FABAMAIL.fabagl.fabasoft.com ([10.10.5.136]) by >fabaglexfr.fabasoft.com with InterScan Messaging Security Suite;Thu, 08 Feb >2007 14:04:38 +0100 >X-Message-Info: LsUYwwHHNt3odVf8DO6MP1ilDjKi5xVYq5PtA1OBYjU= >X-MimeOLE: Produced By Microsoft Exchange V6.5 >Content-class: urn:content-classes:message >X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: use WebSite element >Thread-Index: AcdLgWNdljtkJWo1Tpy93PwfP41kdg== >X-imss-version: 2.046 >X-imss-result: Passed >X-imss-scores: Clean:46.41970 C:2 M:3 S:5 R:5 >X-imss-settings: Baseline:2 C:3 M:2 S:3 R:4 (0.1500 0.1500) >X-Spam-Score: 0.2 (/) >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.0 HTML_MESSAGE > BODY: HTML included in message0.2 HTML_90_100 BODY: >Message is 90% to 100% HTML >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:[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:[EMAIL >PROTECTED]> >Errors-To: [EMAIL PROTECTED] >Return-Path: [EMAIL PROTECTED] >X-OriginalArrivalTime: 08 Feb 2007 13:03:48.0710 (UTC) >FILETIME=[92AE2860:01C74B81] > >Hi, > > > >I want to use the IIS commands in a .wxs file See here: > > > > > > > ><?xml version="1.0"?> > ><Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" >xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension"> > > <Product Id="64752695-e839-4982-bd0b-896e7b750625" > >...... > >...... > > <Component Id='WebserviceVirtualDirComponent' Guid="UUID"> > > <iis:WebSite Id='DefaultWebSite' Description='Default Web Site'> > > <iis:WebAddress Id='AllUnassigned' Port='80' /> > > <iis:WebVirtualDir Id='WebserviceVirtualDir' >Alias='WMISystemMonitorWebservices' Directory='WWW' >WebSite='DefaultWebSite' > > > <iis:WebApplication Id='WebApplication' >Name="WMISystemMonitorWebservices" WebAppPool="WMISysMonAppPool" /> > > </iis:WebVirtualDir> > > </iis:WebSite> > > </Component> > > > > <Component Id='WebAppPoolComponent' Guid="UUID"> > > <iis:WebAppPool Id="WMISysMonAppPool" Identity="networkService" >Name="WMISystemMonitorPool" /> > > </Component> > > > > > >The candle output is following: > > > > > >install.wxs.wpp > >C:\source\wmi\install.wxs.wpp(101) : error CNDL0200 : The Component element >cont > >ains an unhandled extension element 'iis:WebSite'. Please ensure that the >exten > >sion for elements in the 'http://schemas.microsoft.com/wix/IIsExtension' >namespa > >ce has been provided. > >C:\source\wmi\install.wxs.wpp(110) : error CNDL0200 : The Component element >cont > >ains an unhandled extension element 'iis:WebAppPool'. Please ensure that >the ex > >tension for elements in the 'http://schemas.microsoft.com/wix/IIsExtension' >name > >space has been provided. > >NMAKE : fatal error U1077: '"C:\Program Files\Windows Installer XML >v3\bin\candl > >e.exe"' : return code '0xc8' > >Stop. > > > > > >Whats wrong? > > > > > > > >Best regards > > > >Silvio > > > > > >Silvio Ziegelwanger >Research & Development > >Fabalabs Software GmbH >Honauerstraße 4 >4020 Linz >Austria >Tel: [43] (732) 60 61 62 >Fax: [43] (732) 60 61 62-609 >E-Mail: [EMAIL PROTECTED] >www.fabalabs.org <http://www.fabasoft.com/> > >------------------------------------------------------------------------- >Using Tomcat but need to do more? Need to support web services, security? >Get stuff done quickly with pre-integrated technology to make your job >easier. >Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >_______________________________________________ >WiX-users mailing list >WiX-users@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/wix-users _________________________________________________________________ Talk now to your Hotmail contacts with Windows Live Messenger. http://get.live.com/messenger/overview ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users