[WiX-users] Can not create third website under iis with wix?

2006-06-26 Thread Young Yang (Worksoft)








 I am building an msi to deploy a
website, when there is only the default web site under the IIS, it works.

But when there is already 2 websites under IIS, when I run the
msi, It return an error Failed to read IISWebs table and
the installation failed.

Any help on where I should look to solve this problem is
greatly appreciated.



Below is part of my script.







Component Id='WebSiteComponent' Guid='F199EE95-7847-4b85-B58A-60857D22545D' Permanent='yes'

 WebSite Id='WebSite' Description='My Web Site'
Directory='pages'
AutoStart='yes' DirProperties='ReadAndExecute'
ConfigureIfExists='no'


WebAddress
Id='DefaultWebSiteAddress'
Port='81' Secure='no'/



WebApplication
Id='WebSiteWebApp'
Name='WebSite Web App'
Isolation='medium'


WebApplicationExtension
Extension='aspx'
CheckPath='no' Executable='[FRAMEWORKDIR]aspnet_isapi.dll'
Script='yes' Verbs='GET,HEAD,POST,DEBUG'
/


/WebApplication

 /WebSite

/Component



Thanks



Young








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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] job postings...

2006-06-26 Thread Albert van Peppen
SourceForge.net offers a service like this; see
https://sourceforge.net/people/

Albert 

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens Stefan Krueger
[MVP]
Verzonden: vrijdag 23 juni 2006 18:06
Aan: wix-users@lists.sourceforge.net
Onderwerp: Re: [WiX-users] job postings...

Just wanted to add that there is a section for job postings on the
InstallSite.org forum:
http://forum.installsite.net/index.php?showforum=65


-- 
Stefan Krueger
Microsoft Windows Installer MVP

Please post your questions in the newsgroup or vist one of these web
sites:

Windows Installer FAQ
http://www.msifaq.com - http://www.msifaq.de

InstallSite - Resources for Setup Developers
http://www.installsite.org
http://www.installsite.de (GERMAN)

Rob Mensching [EMAIL PROTECTED] schrieb im Newsbeitrag 
news:[EMAIL PROTECTED]
.corp.microsoft.com...
 Okay, I thought about that but figured people would think it was
overkill. 
 This is why I ask questions... smile/





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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How ro create CustomAction Type 34?

2006-06-26 Thread Peter G. Sakhno
First I tried following:

CustomAction Id=MyEXECA Property=[SourceDir][REDIST_DIR]\my.exe 
ExeCommand= Return=ignore /

And next following:

Property Id=PROP_MYEXE Value=[SourceDir][REDIST_DIR]\my.exe /
CustomAction Id=MyEXECA Property=PROP_MYEXE ExeCommand= 
Return=ignore /

In both cases installation passed to the end without error messages but 
also without any mentioning about required custom action. And only in 
log I found info about my CA:

Info 1721. There is a problem with this Windows Installer package. A 
program required for this install to complete could not be run. Contact 
your support personnel or package vendor. Action: InstDCOM2, location: 
[SourceDir][REDIST_DIR]\my.exe, command:  

and:
Property(S): PROP_MYEXE = [SourceDir][REDIST_DIR]\my.exe

So why MSI installer does not resolve properties [SourceDir] and 
[REDIST_DIR] in to their values?

I finally achieve required CA after using property MYEXEEXISTS that get 
from:

Property Id=MYEXEEXISTS
   DirectorySearch Id=MYREDISTDIR Path=[SourceDir][REDIST_DIR] 
Depth=0
 FileSearch Id=MYEXEFILESEARCH Name=my.exe /
   /DirectorySearch
/Property


Best regards,
Peter G. Sakhno
C-MAP RUSSIA Ltd
http://www.c-map.ru/

Bob Arnson wrote:
 Peter G. Sakhno wrote:
 Hello.

 I need to run external stand-alone exe-file that is not part of the 
 installation package and is not included into Binary table.
 Does anybody can explain how to create such custom action using WiX?

 I tried following:

 CustomAction Id=ExeFile 
 ExeCommand=[SourceDir][ExeFilePATH]\Myprogram.exe Return=ignore /
   
 You need to use Property=[path][to]program.exe and ExeCommand=command 
 line arguments.
 

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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Moving my wix 2 project into wix 3...

2006-06-26 Thread Harrborg Richard








WixCop produced the same
code as I tried, so the syntax is right. But Votive still says: 



error
CNDL0200 : The Component element contains an unhandled extension element
'difx:Driver'. Please ensure that the extension for elements in the
'http://schemas.microsoft.com/wix/DifxAppExtension' namespace has been
provided.



I have tried putting the
file difxapp.xsd in my Microsoft Visual Studio 8\Xml\Schemas
folder. At least that trigged the IntelliSense function I believe



Im sure there is a
really simple solution to this =)



// Richard









From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: den 21 juni 2006 17:08
To: Harrborg Richard
Cc:
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Moving my
wix 2 project into wix 3...





Harrborg Richard wrote: 

Hello!



Trying code from link below in
[EMAIL PROTECTED] 2005 (build 3.0.1821.0).



http://shmarya.net/?cat=28



I have replaced the smiley with difx:Driver!



I dont find any documentation
on using the new schema changes in wix 3. For example, what is required to
compile with the element Driver? I guess candle must have some
link to the difxapp.xsd?

DIFx support is in the
WixDifxAppExtension. Try using WixCop on your original sources -- it should
correctly update them to use the new schema.

-- sig://boBhttp://bobs.org




 
  DISCLAIMER:
 
 
 
  This email is confidential and may also be privileged. Please
  delete the email and notify us immediately if you are not the intended
  recipient. The Trio Group of companies do not enter into contracts or
  contractual obligations via electronic mail, unless otherwise agreed in
  writing between parties concerned.
 


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Moving my wix 2 project into wix 3...

2006-06-26 Thread Derek Cicerone








You need to place WixDifxAppExtension.dll
and the difx wixlib file (I dont know its name) in the same directory
with candle, lit, light, etc Then when calling candle, you need to
provide ext WixDifxAppExtension on the command line. Im not
sure if this is possible from within Votive at this point. Justin would
have to comment on that.











From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Harrborg Richard
Sent: Monday, June 26, 2006 2:56
AM
To: Bob
 Arnson
Cc:
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Moving my
wix 2 project into wix 3...





WixCop produced the same
code as I tried, so the syntax is right. But Votive still says: 



error
CNDL0200 : The Component element contains an unhandled extension element
'difx:Driver'. Please ensure that the extension for elements in the 'http://schemas.microsoft.com/wix/DifxAppExtension'
namespace has been provided.



I have tried putting the
file difxapp.xsd in my Microsoft Visual Studio 8\Xml\Schemas
folder. At least that trigged the IntelliSense function I believe



Im sure there is a
really simple solution to this =)



// Richard









From: Bob Arnson
[mailto:[EMAIL PROTECTED] 
Sent: den 21 juni 2006 17:08
To: Harrborg Richard
Cc:
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Moving my
wix 2 project into wix 3...





Harrborg Richard wrote: 

Hello!



Trying code from link below in
[EMAIL PROTECTED] 2005 (build 3.0.1821.0).



http://shmarya.net/?cat=28



I have replaced the smiley with difx:Driver!



I dont find any documentation
on using the new schema changes in wix 3. For example, what is required to
compile with the element Driver? I guess candle must have some
link to the difxapp.xsd?

DIFx support is
in the WixDifxAppExtension. Try using WixCop on your original sources -- it
should correctly update them to use the new schema.

-- sig://boBhttp://bobs.org




 
  DISCLAIMER:
 
 
 
  This email is confidential and may also be privileged. Please
  delete the email and notify us immediately if you are not the intended
  recipient. The Trio Group of companies do not enter into contracts or
  contractual obligations via electronic mail, unless otherwise agreed in
  writing between parties concerned.
 


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] [Wix-users] Votive 2.0.4221.0 doesn't work

2006-06-26 Thread Florin Adrian Radu



Hi!
I downloaded votive2.msi (Votive-2.0.4221.0.zip) 
and the file doesn't work. I get this error: "This installation package could 
not be opened! Contact the application vendor to verify that this is a valid 
Windows Installer package".
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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Can not create third website under iis with wix?

2006-06-26 Thread david adams
Try changing:
WebAddress Id='DefaultWebSiteAddress' Port='81' Secure='no'/

To:
WebAddress Id='DefaultWebSiteAddress' Port='nn' Secure='no'/

**Where 'nn' represents another Port Number that may not be used on your web 
server
like 82**

If this fixes your problem, I will guess that you install website #1 to Port 
80 and website #2 to Port 81.

David Adams
MSN MessengerID: [EMAIL PROTECTED]





From: Young Yang (Worksoft) [EMAIL PROTECTED]
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Can not create third website under iis with wix?
Date: Mon, 26 Jun 2006 15:14:21 +0800
MIME-Version: 1.0
Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by 
bay0-mc7-f6.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Mon, 26 
Jun 2006 00:14:45 -0700
Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by 
sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 700DD16471; Mon, 26 Jun 
2006 00:14:35 -0700 (PDT)
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 1FulIn-00072Y-FZfor 
wix-users@lists.sourceforge.net; Mon, 26 Jun 2006 00:14:33 -0700
Received: from mail-sin1.microsoft.com ([207.46.50.72])by 
mail.sourceforge.net with esmtp (Exim 4.44) id 1FulIl-0004gt-NUfor 
wix-users@lists.sourceforge.net; Mon, 26 Jun 2006 00:14:33 -0700
Received: from APS-MSG-01.southpacific.corp.microsoft.com ([157.60.218.46]) 
bymail-sin1.microsoft.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 26 
Jun 2006 16:14:24 +0900
X-Message-Info: LsUYwwHHNt094Q/fjw1Mbs6JFeYKfr6fyuBsVCduhf8=
X-MimeOLE: Produced By Microsoft Exchange V6.5
Content-class: urn:content-classes:message
X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Can not create third 
website under iis with wix?
Thread-Index: AcaY8CW+hBpODJFGR16LSH763TI3aA==
X-OriginalArrivalTime: 26 Jun 2006 07:14:24.0935 
(UTC)FILETIME=[2786B370:01C698F0]
X-Spam-Score: 0.0 (/)
X-Spam-Report: Spam Filtering performed by sourceforge.net.See 
http://spamassassin.org/tag/ for more details.Report problems 
tohttp://sf.net/tracker/?func=addgroup_id=1atid=210.0 HTML_MESSAGE
BODY: HTML included in message
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]

 I am building an msi to deploy a website,  when there is only the
default web site under the IIS, it works.

But when there is already 2 websites under IIS, when I run the msi,  It
return an error 'Failed to read IISWebs table' and the installation
failed.

Any help on where I should look to solve this problem is greatly
appreciated.



Below is part of my script.







Component Id='WebSiteComponent'
Guid='F199EE95-7847-4b85-B58A-60857D22545D' Permanent='yes'

WebSite Id='WebSite' Description='My Web Site' Directory='pages'
AutoStart='yes' DirProperties='ReadAndExecute' ConfigureIfExists='no'

 WebAddress Id='DefaultWebSiteAddress' Port='81'
Secure='no'/

 WebApplication Id='WebSiteWebApp' Name='WebSite Web App'
Isolation='medium'

  WebApplicationExtension Extension='aspx'
CheckPath='no' Executable='[FRAMEWORKDIR]aspnet_isapi.dll' Script='yes'
Verbs='GET,HEAD,POST,DEBUG' /

 /WebApplication

/WebSite

/Component



Thanks



Young





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=lnkkid=120709bid=263057dat=121642


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



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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix-users] Votive 2.0.4221.0 doesn't work

2006-06-26 Thread Frederik Carlier



Sorry about that, the file somehow gotten corrupt. It should be fixed now.


Van: [EMAIL PROTECTED] namens Florin Adrian RaduVerzonden: ma 26/06/2006 13:39Aan: wix-users@lists.sourceforge.netOnderwerp: [WiX-users] [Wix-users] Votive 2.0.4221.0 doesn't work

Hi!
I downloaded votive2.msi (Votive-2.0.4221.0.zip) and the file doesn't work. I get this error: "This installation package could not be opened! Contact the application vendor to verify that this is a valid Windows Installer package".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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] SQL Extended stored procedures

2006-06-26 Thread Albert van Peppen



Hello all,

I am currently trying to get some extended stored procedures registered in 
SQL.I did not found any samples for this. So maybe my code can be of any 
help in the tutorial ;-)

Altough, I'm having some problems with extended stored procedures for 
SQL.

I use the following piece of code in my WiX script:

!-- codesnippet --

?define strD4WXPProcDll = "[D4WBINDIR]xp_D4WProc.dll" ?

DirectoryRef Id="TARGETDIR"Component 
Id="DatabaseComponent" 
Guid="$(var.guidDatabaseComponent)"ConditionD4WSQLSERVER 
lt;gt; ""/Condition

SqlDatabase Id="DrumisDatabase" 
Database="master"Server="[D4WSQLSERVER]" 
CreateOnInstall="yes" DropOnInstall="no" 
DropOnUninstall="no" DropOnReinstall="no"

!-- Uninstall / rollback install 
--SqlString 
Id="UnRegister_xp_D4W_Func1"Sequence="1"ContinueOnError="yes"ExecuteOnInstall="no" 
ExecuteOnReinstall="yes" ExecuteOnUninstall="yes" 
RollbackOnInstall="yes"SQL="if exists (select 
* from sysobjects where id = object_id(N'[\[]dbo[\]].[\[]xp_D4W_Func1[\]]') and 
OBJECTPROPERTY(id, N'IsExtendedProc') = 1) EXEC sp_dropextendedproc 
'xp_D4W_Func1'"/

!-- After unregister, before delete xp_D4WProc.dll 
--!-- After this the xp_D4WProc.dll can be deleted 
/ replaced --SqlString 
Id="Free_xp_D4WProc"Sequence="2"ContinueOnError="yes"ExecuteOnInstall="no" 
ExecuteOnReinstall="yes" ExecuteOnUninstall="yes" 
RollbackOnInstall="yes"SQL="DBCC 
xp_D4WProc(FREE)"/

!-- Register on install / reinstall 
--SqlString 
Id="Register_xp_D4W_Func1"Sequence="3"ExecuteOnInstall="yes" 
ExecuteOnReinstall="yes" 
RollbackOnUninstall="yes"SQL="if not exists 
(select * from sysobjects where id = 
object_id(N'[\[]dbo[\]].[\[]xp_D4W_Func1[\]]') and OBJECTPROPERTY(id, 
N'IsExtendedProc') = 1) EXEC sp_addextendedproc 'xp_D4W_Func1', 
'$(var.strD4WXPProcDll)' GRANT EXECUTE ON [\[]xp_D4W_Func1[\]] TO 
[\[]public[\]]"//SqlDatabase/Component/DirectoryRef

!-- /codesnippet --

Installation goes 100% ok.But uninstalling results in an 
error:

Failed to connect to SQL database. (-2147467259master 
)

Can anyone help me with this one? Is there a way to debug the 
uninstall?

And another problem with the above code is when an error does occour during 
installation the rollback attempts to drop the master database. Which is 
reported as not possible (and so it should!).But how can i add a extended 
stored procedure to SQL without the need of creating a database? (XPs are usualy 
registered in the master database)

Thanks in advance,

Albert van Peppen
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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [WiX-devs] [ wix-Feature Requests-1509926 ] Fill property withfileversion

2006-06-26 Thread Albert van Peppen
 
Ok, but then I still cannot point to my main exefile for the version?
So what I should do in my nightly build is generate a file with the
version and buildnumer in it (like MyVersion.wxi) in which the version
and buildnumbers are defined.
This file I can then add tou my wxs file and done..

IMHO it would be easier to let candle read the version from the
generated EXE file :)
(Maybe it is possible, but I didn't found it)

Albert

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens SourceForge.net
Verzonden: zondag 25 juni 2006 0:57
Aan: [EMAIL PROTECTED]
Onderwerp: [WiX-devs] [ wix-Feature Requests-1509926 ] Fill property
withfileversion

Feature Requests item #1509926, was opened at 2006-06-21 05:42 Message
generated for change (Settings changed) made by derekc You can respond
by visiting: 
https://sourceforge.net/tracker/?func=detailatid=642717aid=1509926gro
up_id=105970

Please note that this message will contain a full copy of the comment
thread, including the initial issue submission, for this request, not
just the latest update.
Category: compiler
Group: Denied
Status: Closed
Priority: 5
Submitted By: The Mad Butcher (mad_burcher) Assigned to: Derek (derekc)
Summary: Fill property with fileversion

Initial Comment:
Make it possible to implement a way to assign the fileversion of a file
(embedded in the MSI) to a property.

This property might be used in the rest of the wix- code (eg. my goal is
that the Product/@Version can be filled based on my main application in
the msi file)

But it should also be possible to check for upgrades based on this
property.

Greetings,


Albert van Peppen


--

Comment By: Derek (derekc)
Date: 2006-06-24 15:56

Message:
Logged In: YES
user_id=518766

You can already do something like this by using the wix preprocessor.
We had a discussion about a feature like this a while ago and the
consensus was that its cleanest to just pass in any versioning
information as a preprocessor variable which is then used in the
appropriate places in the authoring.  For example, the upgrade
information cannot be populated with a property because it doesn't
support formatted columns - so this can only be done with the
preprocessor.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=642717aid=1509926gro
up_id=105970

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=lnkkid=120709bid=263057dat=121642
___
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs

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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Adding new .wxs files to votive project

2006-06-26 Thread Torsten Rudnick
I am trying to add new files to my WiX project inside of Visual Studio 
2003 and it does not work. I have installed version 2.0.4221.0. So do I 
anything wrong or it is a failure.
I can create create new projects and have no problems. The first .wxs 
file will be created but adding more does not work. After opening the 
dialog with the templates no WiX related templates are there. I can 
remind me that it worked with an older version.

Any hints of solving this problem?

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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] SampleUpgrade WiX seems doesn't work

2006-06-26 Thread Dmitryus

Hello, I am just newbie in the word of MSI and WiX. Could you help me and say
what I am doing wrong way?
I'm interested in MSI Upgrade mode (not patch, only upgrade). I have built
sample SampleUpgrade got from  Gábor DEÁK JAHN's Tutorial
(http://www.tramontana.co.hu/wix/lesson4.php). But I am confused - I've
never seen A later version of [ProductName] is already installed error
message when I try to install the older version over the never ove. When I
open MSI log, I see Product registered: entering maintenance mode string
and later Skipping FindRelatedProducts action: not run in maintenance
mode. But If I understand well, FindRelatedProducts is necessary to
determine if the product is already installed on the mashine?
The second strange thing is when I run msiexec /i SampleUpgrade.msi
REINSTALL=ALL REINSTALLMODE=vomus, but sample application haven't installed
yet, nothing is installed - no one file is put on target mashine. When I
press Custom button, I see that all features are disabled. What is it?
Dmitry.
--
View this message in context: 
http://www.nabble.com/%22SampleUpgrade%22-WiX-seems-doesn%27t-work-t1849674.html#a5049242
Sent from the wix-users forum at Nabble.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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Moving my wix 2 project into wix 3...

2006-06-26 Thread Justin Rockwood








Unfortunately, extensions arent supported in Votive right now,
so youll have to build via the command line.



Justin







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Derek
Cicerone
Sent: Monday, June 26, 2006 4:00 AM
To: 'Harrborg Richard'; 'Bob Arnson'
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Moving my wix 2 project into wix 3...







You need to place WixDifxAppExtension.dll and the difx wixlib file
(I dont know its name) in the same directory with candle, lit, light,
etc Then when calling candle, you need to provide ext
WixDifxAppExtension on the command line. Im not sure if this is possible
from within Votive at this point. Justin would have to comment on that.











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Harrborg
Richard
Sent: Monday, June 26, 2006 2:56 AM
To: Bob Arnson
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Moving my wix 2 project into wix 3...





WixCop produced the same code as I tried, so the syntax is right.
But Votive still says: 



error CNDL0200 : The Component element contains an unhandled
extension element 'difx:Driver'. Please ensure that the extension for
elements in the 'http://schemas.microsoft.com/wix/DifxAppExtension' namespace
has been provided.



I have tried putting the file difxapp.xsd in my Microsoft Visual
Studio 8\Xml\Schemas folder. At least that trigged the IntelliSense function I
believe



Im sure there is a really simple solution to this =)



// Richard









From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: den 21 juni 2006 17:08
To: Harrborg Richard
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Moving my wix 2 project into wix 3...





Harrborg Richard wrote: 

Hello!



Trying
code from link below in [EMAIL PROTECTED] 2005 (build 3.0.1821.0).



http://shmarya.net/?cat=28



I
have replaced the smiley with difx:Driver!



I
dont find any documentation on using the new schema changes in wix 3. For
example, what is required to compile with the element Driver? I guess candle
must have some link to the difxapp.xsd?

DIFx support is
in the WixDifxAppExtension. Try using WixCop on your original sources -- it
should correctly update them to use the new schema.

-- sig://boBhttp://bobs.org

DISCLAIMER: 
This
email is confidential and may also be privileged. Please delete the email and
notify us immediately if you are not the intended recipient. The Trio Group of
companies do not enter into contracts or contractual obligations via electronic
mail, unless otherwise agreed in writing between parties concerned. 






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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Registry element causes error 2727

2006-06-26 Thread JustinPitts

Adding the following element to a component causes the generated MSI to
throw error 2727:

Registry Root=HKCR Key=CLSID\{2ED33534-3318-4CE9-9D3D-40E5F7E930F5}
Value=USBPort Class Type=string /

I see the following in the log:
DEBUG: Error 2727:  The directory entry 'WindowsFolder' does not exist in
the Directory table



Here is an entire .wxs that reproduces the problem:

?xml version='1.0'?
Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'
  Product Id='71842172-8139-4817-911d-51b2214491e1' Name='Wix Problem'
Language='1033' Version='1.0.0.0' Manufacturer='JP'
  Package Id='734aef1d-d18f-44d1-91ce-b17419c1f717' Description='Yada
yada' Comments='none' Manufacturer='JP' InstallerVersion='200'
Compressed='yes' /
  Upgrade Id='9e56eb51-8204-44b4-a6e0-6194be10dc1e'/
  Media Id='1' Cabinet='product.cab' EmbedCab='yes' /
  Directory Id='INSTALLDIR' Name='SourceDir'
Component Id=component0 DiskId=1
Guid=1154736f-1297-43c0-94a3-142c1073aeb0
  File Id=file0 Name=USBHEL_1.DLL
LongName=USBHelper.dll src=Z:\tools\wix\problem\lib\USBHelper.dll /
  Registry Root=HKCR
Key=CLSID\{2ED33534-3318-4CE9-9D3D-40E5F7E930F5} Value=USBPort Class
Type=string /
/Component
  /Directory
  Feature Id='feature1' Title='feature1' Level='1'
ComponentRef Id ='component0' /
  /Feature
  /Product
/Wix

What am I doing wrong?
.,.,..,...,.,,.
Justin E. Pitts, Lead Technical Analyst
Data and Application Integration Services
BIG LOTS -- World's Best Bargain Place


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Registry element causes error 2727

2006-06-26 Thread Rob Mensching
All Directory elements must be rooted in TARGETDIR/SourceDir.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, June 26, 2006 12:05 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Registry element causes error 2727


Adding the following element to a component causes the generated MSI to
throw error 2727:

Registry Root=HKCR Key=CLSID\{2ED33534-3318-4CE9-9D3D-40E5F7E930F5}
Value=USBPort Class Type=string /

I see the following in the log:
DEBUG: Error 2727:  The directory entry 'WindowsFolder' does not exist in
the Directory table



Here is an entire .wxs that reproduces the problem:

?xml version='1.0'?
Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'
  Product Id='71842172-8139-4817-911d-51b2214491e1' Name='Wix Problem'
Language='1033' Version='1.0.0.0' Manufacturer='JP'
  Package Id='734aef1d-d18f-44d1-91ce-b17419c1f717' Description='Yada
yada' Comments='none' Manufacturer='JP' InstallerVersion='200'
Compressed='yes' /
  Upgrade Id='9e56eb51-8204-44b4-a6e0-6194be10dc1e'/
  Media Id='1' Cabinet='product.cab' EmbedCab='yes' /
  Directory Id='INSTALLDIR' Name='SourceDir'
Component Id=component0 DiskId=1
Guid=1154736f-1297-43c0-94a3-142c1073aeb0
  File Id=file0 Name=USBHEL_1.DLL
LongName=USBHelper.dll src=Z:\tools\wix\problem\lib\USBHelper.dll /
  Registry Root=HKCR
Key=CLSID\{2ED33534-3318-4CE9-9D3D-40E5F7E930F5} Value=USBPort Class
Type=string /
/Component
  /Directory
  Feature Id='feature1' Title='feature1' Level='1'
ComponentRef Id ='component0' /
  /Feature
  /Product
/Wix

What am I doing wrong?
.,.,..,...,.,,.
Justin E. Pitts, Lead Technical Analyst
Data and Application Integration Services
BIG LOTS -- World's Best Bargain Place


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Registry element causes error 2727

2006-06-26 Thread Derek Cicerone
This is a common authoring mistake which is caught by MSI validation - be
sure to run validation on all your MSI files.

Derek

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, June 26, 2006 12:30 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Registry element causes error 2727

Thank you. Fixed.
.,.,..,...,.,,.
Justin E. Pitts, Lead Technical Analyst
Data and Application Integration Services
BIG LOTS -- World's Best Bargain Place


   
 Rob Mensching   
 [EMAIL PROTECTED] 
 rceforge.net  To 
   [EMAIL PROTECTED],  
 06/26/2006 03:17  wix-users@lists.sourceforge.net   
 PM cc 
   
   Subject 
 Please respond to RE: [WiX-users] Registry element
 [EMAIL PROTECTED] causes error 2727   
   rceforge.net   
   
   
   
   
   




All Directory elements must be rooted in TARGETDIR/SourceDir.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, June 26, 2006 12:05 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Registry element causes error 2727


Adding the following element to a component causes the generated MSI to
throw error 2727:

Registry Root=HKCR Key=CLSID\{2ED33534-3318-4CE9-9D3D-40E5F7E930F5}
Value=USBPort Class Type=string /

I see the following in the log:
DEBUG: Error 2727:  The directory entry 'WindowsFolder' does not exist in
the Directory table



Here is an entire .wxs that reproduces the problem:

?xml version='1.0'?
Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'
  Product Id='71842172-8139-4817-911d-51b2214491e1' Name='Wix Problem'
Language='1033' Version='1.0.0.0' Manufacturer='JP'
  Package Id='734aef1d-d18f-44d1-91ce-b17419c1f717' Description='Yada
yada' Comments='none' Manufacturer='JP' InstallerVersion='200'
Compressed='yes' /
  Upgrade Id='9e56eb51-8204-44b4-a6e0-6194be10dc1e'/
  Media Id='1' Cabinet='product.cab' EmbedCab='yes' /
  Directory Id='INSTALLDIR' Name='SourceDir'
Component Id=component0 DiskId=1
Guid=1154736f-1297-43c0-94a3-142c1073aeb0
  File Id=file0 Name=USBHEL_1.DLL
LongName=USBHelper.dll src=Z:\tools\wix\problem\lib\USBHelper.dll /
  Registry Root=HKCR
Key=CLSID\{2ED33534-3318-4CE9-9D3D-40E5F7E930F5} Value=USBPort Class
Type=string /
/Component
  /Directory
  Feature Id='feature1' Title='feature1' Level='1'
ComponentRef Id ='component0' /
  /Feature
  /Product
/Wix

What am I doing wrong?
.,.,..,...,.,,.
Justin E. Pitts, Lead Technical Analyst
Data and Application Integration Services
BIG LOTS -- World's Best Bargain Place


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing 

Re: [WiX-users] Can not create third website under iis with wix?

2006-06-26 Thread Michael Osmond






Young,

I notice the Port number is 81. Are you trying to create a web site, 
or are you expecting to install to an existing web site. I have seen this 
error when I am expecting an existing web site to be there, and the installer 
can't match either the port number or the ip address. Is there an existing 
web site with port 81?

There are some posts on this type of thing in the wix users list 

Michael

  -Original Message- From: 
  [EMAIL PROTECTED]on behalf ofYoung Yang 
  (Worksoft) Sent: Mon 26/06/2006 5:14 PM To: 
  wix-users@lists.sourceforge.net Cc: Subject: [WiX-users] 
  Can not create third website under iis with wix?
  
   I am building an msi to deploy a 
  website, when there is only the default web site under the IIS, it 
  works.
  But when there is already 2 websites under IIS, when I run 
  the msi, It return an error ‘Failed to read IISWebs table’ and the 
  installation failed.
  Any help on where I should look to solve this problem is 
  greatly appreciated.
  
  Below is part of my script.
  
  
  
  Component Id='WebSiteComponent' Guid='F199EE95-7847-4b85-B58A-60857D22545D' Permanent='yes'
   
  WebSite Id='WebSite' Description='My Web 
  Site' Directory='pages' AutoStart='yes' 
  DirProperties='ReadAndExecute' ConfigureIfExists='no'
   
  WebAddress Id='DefaultWebSiteAddress' Port='81' Secure='no'/ 
  
   
  WebApplication Id='WebSiteWebApp' 
  Name='WebSite Web 
  App' Isolation='medium'
   
  WebApplicationExtension Extension='aspx' 
  CheckPath='no' Executable='[FRAMEWORKDIR]aspnet_isapi.dll' Script='yes' Verbs='GET,HEAD,POST,DEBUG' /
   
  /WebApplication
   
  /WebSite
  /Component
  
  Thanks
  
  Young
  



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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] SQL Extended stored procedures

2006-06-26 Thread Michael Osmond




Hello,

When doing the uninstall how is the property [D4WSQLSERVER] resolved, it 
could be that this has no value set and hence the installer can't locate the 
database server when uninstalling. 

Also its trying to uninstall the master database because its part of a 
component. Try putting the sqldatabase element under 
product not in the component and then use the SqlDb="xxx" attribute to 
link to the database. That way the installer is just referencing master 
not trying to install it.

Michael


  -Original Message- From: 
  [EMAIL PROTECTED]on behalf ofAlbert van 
  Peppen Sent: Mon 26/06/2006 11:09 PM To: 
  wix-users@lists.sourceforge.net Cc: Subject: [WiX-users] 
  SQL Extended stored procedures
  Hello all,
  
  I am currently trying to get some extended stored procedures registered 
  in SQL.I did not found any samples for this. So maybe my code can be of 
  any help in the tutorial ;-)
  
  Altough, I'm having some problems with extended stored procedures for 
  SQL.
  
  I use the following piece of code in my WiX script:
  
  !-- codesnippet --
  
  ?define strD4WXPProcDll = "[D4WBINDIR]xp_D4WProc.dll" ?
  
  DirectoryRef Id="TARGETDIR"Component 
  Id="DatabaseComponent" 
  Guid="$(var.guidDatabaseComponent)"ConditionD4WSQLSERVER 
  lt;gt; ""/Condition
  
  SqlDatabase Id="DrumisDatabase" 
  Database="master"Server="[D4WSQLSERVER]" 
  CreateOnInstall="yes" DropOnInstall="no" 
  DropOnUninstall="no" DropOnReinstall="no"
  
  !-- Uninstall / rollback install 
  --SqlString 
  Id="UnRegister_xp_D4W_Func1"Sequence="1"ContinueOnError="yes"ExecuteOnInstall="no" 
  ExecuteOnReinstall="yes" ExecuteOnUninstall="yes" 
  RollbackOnInstall="yes"SQL="if exists 
  (select * from sysobjects where id = 
  object_id(N'[\[]dbo[\]].[\[]xp_D4W_Func1[\]]') and OBJECTPROPERTY(id, 
  N'IsExtendedProc') = 1) EXEC sp_dropextendedproc 
  'xp_D4W_Func1'"/
  
  !-- After unregister, before delete xp_D4WProc.dll 
  --!-- After this the xp_D4WProc.dll can be 
  deleted / replaced --SqlString 
  Id="Free_xp_D4WProc"Sequence="2"ContinueOnError="yes"ExecuteOnInstall="no" 
  ExecuteOnReinstall="yes" ExecuteOnUninstall="yes" 
  RollbackOnInstall="yes"SQL="DBCC 
  xp_D4WProc(FREE)"/
  
  !-- Register on install / reinstall 
  --SqlString 
  Id="Register_xp_D4W_Func1"Sequence="3"ExecuteOnInstall="yes" 
  ExecuteOnReinstall="yes" 
  RollbackOnUninstall="yes"SQL="if not exists 
  (select * from sysobjects where id = 
  object_id(N'[\[]dbo[\]].[\[]xp_D4W_Func1[\]]') and OBJECTPROPERTY(id, 
  N'IsExtendedProc') = 1) EXEC sp_addextendedproc 'xp_D4W_Func1', 
  '$(var.strD4WXPProcDll)' GRANT EXECUTE ON [\[]xp_D4W_Func1[\]] TO 
  [\[]public[\]]"//SqlDatabase/Component/DirectoryRef
  
  !-- /codesnippet --
  
  Installation goes 100% ok.But uninstalling results in an 
  error:
  
  Failed to connect to SQL database. (-2147467259master 
  )
  
  Can anyone help me with this one? Is there a way to debug the 
  uninstall?
  
  And another problem with the above code is when an error does occour 
  during installation the rollback attempts to drop the master database. Which 
  is reported as not possible (and so it should!).But how can i add a 
  extended stored procedure to SQL without the need of creating a database? (XPs 
  are usualy registered in the master database)
  
  Thanks in advance,
  
  Albert van PeppenUsing 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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] (OT) Screwed up on per machine install; what should I do?

2006-06-26 Thread Joe Kaplan



Hi guys,

This is more of a general Windows Installer issue 
than a WiX issue, butI thought I'd solicit the feedback of the list as 
many of you will certainly have useful opinions.

Essentially, last year when I was still quite 
newwith WiX and WI,I built an installer that really really should 
have been per machine and should have specified ALLUSERS=1, but I didn't know 
about that and got a per user install instead. The software installs an 
IIS add-on and is definitely machine specific. 

Now, I'm having the problems you would expect with 
major upgrades and even simple uninstalls, in that only the user who installed 
the software can uninstall it or detect that it is installed properly. 


What would you do? I plan to change future 
versions to do per machine installs, but it would be nice if I had a way to fix 
the mess I've created. This software is for internal consumption and 
hasn't been installed broadly, so I have a reasonable chance of chasing down 
most of the installs.

All insights are greatly appreciated.

Joe Kaplan
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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] (OT) Screwed up on per machine install; what should I do?

2006-06-26 Thread Michael Osmond




Joe,

Have a look at the MSI Automation interface - through the ProductState 
property of the Installer object you can find out the installed state of an 
MSI- including that it is installed for the current or a different 
user. At least it might show where the install is. The WMI interface 
may provide some more information as well.

You could use it as part of a bootstrap for your new install - tell the 
person installing that the previous version is there and needs to be manually 
uninstalled first.

When I did this I was lucky it was a server application, so I knew exactly 
where it was.

Michael

  -Original Message- From: 
  [EMAIL PROTECTED]on behalf ofJoe Kaplan 
  Sent: Tue 27/06/2006 9:24 AM To: 
  wix-users@lists.sourceforge.net Cc: Subject: [WiX-users] 
  (OT) Screwed up on per machine install;what should I do?
  Hi guys,
  
  This is more of a general Windows Installer issue 
  than a WiX issue, butI thought I'd solicit the feedback of the list as 
  many of you will certainly have useful opinions.
  
  Essentially, last year when I was still quite 
  newwith WiX and WI,I built an installer that really really should 
  have been per machine and should have specified ALLUSERS=1, but I didn't know 
  about that and got a per user install instead. The software installs an 
  IIS add-on and is definitely machine specific. 
  
  Now, I'm having the problems you would expect 
  with major upgrades and even simple uninstalls, in that only the user who 
  installed the software can uninstall it or detect that it is installed 
  properly. 
  
  What would you do? I plan to change future 
  versions to do per machine installs, but it would be nice if I had a way to 
  fix the mess I've created. This software is for internal consumption and 
  hasn't been installed broadly, so I have a reasonable chance of chasing down 
  most of the installs.
  
  All insights are greatly 
appreciated.
  
  Joe KaplanUsing 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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Can not create third website under iis with wix?

2006-06-26 Thread Young Yang (Worksoft)








I am trying to create a new web
site , the port is 81, and the port is not used by other web sites. 





Thanks



Young







From: Michael Osmond
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 27, 2006 5:53 AM
To: Young Yang (Worksoft); wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Can not create third website under iis with
wix?









Young,











I
notice the Port number is 81. Are you trying to create a web site, or are
you expecting to install to an existing web site. I have seen this error
when I am expecting an existing web site to be there, and the installer can't
match either the port number or the ip address. Is there an existing web
site with port 81?











There
are some posts on this type of thing in the wix users list 











Michael







-Original Message- 
From: [EMAIL PROTECTED]on
behalf ofYoung Yang (Worksoft) 
Sent: Mon 26/06/2006 5:14 PM 
To: wix-users@lists.sourceforge.net

Cc: 
Subject: [WiX-users] Can not create third website under iis with wix?



 I am building an msi to deploy a
website, when there is only the default web site under the IIS, it works.

But when there is already 2 websites under IIS, when I run
the msi, It return an error ‘Failed to read IISWebs table’ and the
installation failed.

Any help on where I should look to solve this problem is
greatly appreciated.



Below is part of my script.







Component
Id='WebSiteComponent'
Guid='F199EE95-7847-4b85-B58A-60857D22545D'
Permanent='yes'


WebSite Id='WebSite' Description='My Web Site'
Directory='pages'
AutoStart='yes' DirProperties='ReadAndExecute'
ConfigureIfExists='no'


WebAddress
Id='DefaultWebSiteAddress'
Port='81' Secure='no'/



WebApplication
Id='WebSiteWebApp'
Name='WebSite Web App'
Isolation='medium'


WebApplicationExtension
Extension='aspx'
CheckPath='no' Executable='[FRAMEWORKDIR]aspnet_isapi.dll'
Script='yes' Verbs='GET,HEAD,POST,DEBUG'
/


/WebApplication


/WebSite

/Component



Thanks



Young










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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] What's the best way to check whether IIS 6.0 or higher is installed on system?

2006-06-26 Thread dangle123 ...



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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users