Any suggestion what could be wrong? I found in this forum that users hit 
different kind of errors with WriteIIS7ConfigChanges with error code 
0x80070103, which means ERROR_NO_MORE_ITEMS
What does this error indicate in this context?


----- Original Message -----
From: Zhisheng Huang <zhhuang5...@yahoo.com>
To: John Cooper <jocoo...@jackhenry.com>; General discussion for Windows 
Installer XML toolset. <wix-users@lists.sourceforge.net>
Cc: 
Sent: Tuesday, November 15, 2011 11:28 AM
Subject: Re: [WiX-users] intermittent WriteIIS7ConfigChanges failure on read 
webDir webkey

 
Here is the WebSite element defined. There is no IP attribute specified 
explicitly. This setup code works fine with WIX30. This problem shows up only 
after we change to use WIX35 to compile the setup.
 
  <iis:WebSite Id='DefaultWebSite' Description='Default Web Site'>
    <iis:WebAddress Id='WebAddress' Port='80' Secure='no'/>
    <iis:WebAddress Id='WebAddressSSL' Port='443' Secure='yes'/>
  </iis:WebSite>


----- Original Message -----
From: John Cooper <jocoo...@jackhenry.com>
To: Zhisheng Huang <zhhuang5...@yahoo.com>; General discussion for Windows 
Installer XML toolset. <wix-users@lists.sourceforge.net>
Cc: 
Sent: Tuesday, November 15, 2011 6:45 AM
Subject: RE: [WiX-users] intermittent WriteIIS7ConfigChanges failure on read 
webDir webkey

You must have a WebSite element with an Id of "DefaultWebSite" somewhere with a 
child WebAddress element.  What is in that authoring?  I get errors like this 
when the IP attribute is specified but is blank or whitespace.

--
John Merryweather Cooper
Jack Henry & Associates, Inc.
Build & Install Engineer - jXchange
Office:  913-341-3434 x791011
jocoo...@jackhenry.com




-----Original Message-----
From: Zhisheng Huang [mailto:zhhuang5...@yahoo.com] 
Sent: Tuesday, November 15, 2011 1:32 AM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] intermittent WriteIIS7ConfigChanges failure on read webDir 
webkey

HI,
 
We are using WIX 3.5 RTM build and hit the following sproadically.
ConfigureIIs7Exec:  Error 0x80070057: Invalid web address.
Port was not separated by a colon.
ConfigureIIs7Exec:  Error 0x80070057: Invalid web address.
IP was not separated by a colon.
ConfigureIIs7Exec:  Error 0x80070057: Invalid web address.
IP was not separated by a colon.
ConfigureIIs7Exec:  Error 0x80070057: Invalid web address.
IP was not separated by a colon.
WriteIIS7ConfigChanges:  Error 0x80070103: Failed read webDir webkey
WriteIIS7ConfigChanges:  Error 0x80070103: Failed to configure IIS web svc ext.
WriteIIS7ConfigChanges:  Error 0x80070103:
WriteIIS7ConfigChanges Failed.
Here is the related WIX markup. Any idea why it fails to read webDir webkey? 
What is webDir webkey? (didn't find a good explanation)
 
  <iis:WebDirProperties Id='WebDirProperties'
                          Read='yes' 
                          Script='yes' 
                          AnonymousAccess='yes'
                          WindowsAuthentication 
='$(var.WebDirWindowsAuthentication)'
                          AccessSSL='yes' 
                          AccessSSL128='yes'
                          AccessSSLRequireCert='no'
                          AccessSSLNegotiateCert='no' />

    <Component Id="c_$(var.WebServiceName)"
             Guid="$(var.WebServiceComponentGuid)"
             Directory="$(var.VirtualDirDirectory)">
        <CreateFolder/>
        <iis:WebVirtualDir Id='$(var.WebServiceName)VirtualDir'
                           Alias='$(var.WebServiceName)'
                           Directory='$(var.VirtualDirDirectory)'
                           WebSite='DefaultWebSite'
                           DirProperties='$(var.WebDirProperties)'>
            <iis:WebApplication Id='$(var.WebServiceName)WebApplication'
                                Name='$(var.WebServiceName)'
                                Isolation='low'
                                AllowSessions='no'
                                SessionTimeout='60'
                                Buffer='yes'
                                ParentPaths='no'
                                DefaultScript='VBScript'
                                ScriptTimeout='60'
                                WebAppPool='$(var.WebServiceName)Pool'/>
        </iis:WebVirtualDir>
          <iis:WebAppPool Id='$(var.WebServiceName)Pool'
                          Name='$(var.WebServiceName)Pool'
                          Identity='networkService'
                          RecycleMinutes='$(var.AppPoolRecycleTimeInMinutes)'
                          QueueLimit='$(var.AppPoolQueueLimit)'
                          IdleTimeout='1740'
                          RecycleRequests='0'
                          ManagedRuntimeVersion='v4.0'/>
     </Component>
 
Thanks,
Zhisheng

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to