Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Petr Vones
From: "Rob Mensching" <[EMAIL PROTECTED]>
> It's a MSI design decision that makes sense when you consider the way that
> Fusion works (BTW, Fusion design frustrates me to no end).

I have found another problem with GAC. Doing a full product update results 
in no files installed into the GAC. I use SharedDllRefCount="yes" for GAC
file Component. All I want is to completely remove version 1.0 and install 
version 1.1 of the product.

Maybe it has something to do with RemoveExistingProducts scheduling, I 
currently use After="InstallInitialize".

Petr 


-
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


Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Petr Vones
From: "Rob Mensching" <[EMAIL PROTECTED]>
> It's a MSI design decision that makes sense when you consider the way that
> Fusion works (BTW, Fusion design frustrates me to no end).

Ok, thanks. Fortunately I managed to run "command /c net start MyService" 
after InstallFinalize which is sufficient.

Petr 


-
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


Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Rob Mensching
It's a MSI design decision that makes sense when you consider the way that
Fusion works (BTW, Fusion design frustrates me to no end).


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Petr Vones
Sent: Tuesday, September 12, 2006 02:03
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Starting .NET service depending on assembly
installed to GAC

From: "Bob Arnson" <[EMAIL PROTECTED]>
> Not really. MSI hands off assemblies to Fusion, which commits them 
> during InstallFinalize. The assemblies aren't available before then.

Is that general problem of MSI or just WiX ? Seems to be a showstopper issue
to me to continue using WiX :-/

Can I perform an action after InstallFinalize, at least to use NET START
command or so ?

Petr


-
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


-
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


Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Bob Arnson
Petr Vones wrote:
> Is that general problem of MSI or just WiX ? 
MSI
> Can I perform an action after InstallFinalize, at least to use NET START 
> command or so ?
>   
You would need to use a custom action; the standard action to start 
services doesn't work after InstallFinalize.

-- 
sig://boB
http://bobs.org


-
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


Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-12 Thread Petr Vones
From: "Bob Arnson" <[EMAIL PROTECTED]>
> Not really. MSI hands off assemblies to Fusion, which commits them during 
> InstallFinalize. The assemblies aren't available before then.

Is that general problem of MSI or just WiX ? Seems to be a showstopper issue 
to me to continue using WiX :-/

Can I perform an action after InstallFinalize, at least to use NET START 
command or so ?

Petr 


-
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


Re: [WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-11 Thread Bob Arnson
Petr Vones wrote:
> I have problem with automatic start of a .NET service which depends on an 
> assembly which is installed into the GAC.
>
> It seems as the GAC installation is not finished when the installer is 
> trying to start the service (getting FileNotFoundException). Is there any 
> solution ?
>   
Not really. MSI hands off assemblies to Fusion, which commits them 
during InstallFinalize. The assemblies aren't available before then.

-- 
sig://boB
http://bobs.org


-
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


[WiX-users] Starting .NET service depending on assembly installed to GAC

2006-09-11 Thread Petr Vones
Hi,

I have problem with automatic start of a .NET service which depends on an 
assembly which is installed into the GAC.

It seems as the GAC installation is not finished when the installer is 
trying to start the service (getting FileNotFoundException). Is there any 
solution ?

Thanks, Petr 


-
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