Re: [WiX-users] Additions to existing web.config file

2006-09-11 Thread Crouch, John
Ok,
I'll answer this myself.  It looks like I don't have to install the xml
config file to edit it.  I can just start doing stuff like




.
.
.
and so on




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Crouch,
John
Sent: Monday, September 11, 2006 4:04 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Additions to existing web.config file

Folks,
As part of a Sharepoint web part installation I must add log4net
information into the Sharepoint web site web.config file.  Now, I know
how to
a) add a value to an existing key of a component I install
b) add an element of a component I install

How do I add something like this to an existing web.config file?


  

  
  ...
  

  
  
  
  
  
  
  

  


  

  


  

  


Thanks
John


-
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] System.Security.SecurityException when runningcandle

2006-09-11 Thread Jeremy Farrell
If Ben's like me, he'll find that Joe's and Bob's excellent explanations lead 
him to a cliff edge in a new world about which he knows nothing, and perhaps 
needs to know nothing other than what's needed to get WiX to work. If that's 
the case, just following this formula should do the trick. It should at least 
point in the right direction.

If the tools are on a network filesystem, the system must be configured (once) 
to allow execution of the WiX toolset from a network filesystem. This can be 
done by a user with administrator privileges using the following command 

%WINDIR%\Microsoft.NET\Framework\v1.1.4322\CasPol -q -m -ag All_Code -strong 
-file "path\wix.dll" -noname -noversion FullTrust -name "WiX_Strong_Name" 
-levelfinal on

where "path\wix.dll" is the path to any copy of wix.dll (including a local 
copy). The path to CasPol might be different, but this one is usually right. 
This command works for me, but I'm using a fairly old version of WiX 2; more 
recent versions might need a different version of .NET, but that's beyond my 
knowledge.

Thanks again to whoever spelled this command out for me previously - it saved 
having to do a lot of learning when I was in a last-minute rush.


> From: Joe Kaplan
> Sent: Monday, September 11, 2006 9:22 PM
> 
> In this particular case, CAS is complaining because candle is 
> signed, but isn't marked with the APTCA 
> (AllowPartiallyTrustedCallersAttribute) in the 
> assembly level attributes.  As such, when it is launched from 
> a partially 
> trusted context (like a network share), it fails instantly.
> 
> To get around this, you would need to grant the assembly 
> FullTrust.  This is 
> easy to do in a granular, secure way though, because WiX is 
> signed.  You can 
> use a strong name membership condition with the WiX public 
> key token to grant FullTrust.
> 
> It might be possible to code WiX so that it could safely 
> include APTCA and 
> actually could run partially trusted, but I'm pretty sure it 
> does a lot of 
> COM interop which requires Full Trust anyway and given that it is a 
> development tool, this is probably not worth doing.  The WiX 
> team has plenty of other stuff to work on.  :)
> 
> If it were a downloadable control, then that would be a 
> different story...
> 
> Joe K.
> 
> - Original Message - 
> From: Bob Arnson
> 
> Ben Weatherman wrote:
> I have WiX installed on a shared drive
>
> .NET doesn't support running assemblies from a network by 
> default. Caspol is the only workaround I know of.

-
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] System.Security.SecurityException when runningcandle

2006-09-11 Thread Joe Kaplan
In this particular case, CAS is complaining because candle is signed, but 
isn't marked with the APTCA (AllowPartiallyTrustedCallersAttribute) in the 
assembly level attributes.  As such, when it is launched from a partially 
trusted context (like a network share), it fails instantly.

To get around this, you would need to grant the assembly FullTrust.  This is 
easy to do in a granular, secure way though, because WiX is signed.  You can 
use a strong name membership condition with the WiX public key token to 
grant FullTrust.

It might be possible to code WiX so that it could safely include APTCA and 
actually could run partially trusted, but I'm pretty sure it does a lot of 
COM interop which requires Full Trust anyway and given that it is a 
development tool, this is probably not worth doing.  The WiX team has plenty 
of other stuff to work on.  :)

If it were a downloadable control, then that would be a different story...

Joe K.

- Original Message - 
From: Bob Arnson
To: Ben Weatherman
Cc: wix-users@lists.sourceforge.net
Sent: Monday, September 11, 2006 10:43 PM
Subject: Re: [WiX-users] System.Security.SecurityException when 
runningcandle


Ben Weatherman wrote:
I have WiX installed on a shared drive
.NET doesn't support running assemblies from a network by default. Caspol is 
the only workaround I know of.


-- 
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 


-
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


Re: [WiX-users] System.Security.SecurityException when running candle

2006-09-11 Thread Bob Arnson




Ben Weatherman wrote:
I have WiX installed on a
shared drive
  
.NET doesn't support running assemblies from a network by default.
Caspol is the only workaround I know of.

-- 
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


[WiX-users] System.Security.SecurityException when running candle

2006-09-11 Thread Ben Weatherman

I have WiX installed on a shared drive
and when I invoke candle, I get the following error:
Unhandled Exception: System.Security.SecurityException:
That assembly does not allow partially trusted callers.
   at System.Security.CodeAccessSecurityEngine.ThrowSecurityException(Assembly
asm, PermissionSet granted, PermissionSet refused, RuntimeMethodHandle
rmh, SecurityAction action, Object demand, IPermission permThatFailed)
   at Microsoft.Tools.WindowsInstallerXml.Tools.Candle..ctor()
   at Microsoft.Tools.WindowsInstallerXml.Tools.Candle.Main(String[]
args)
The action that failed was:
LinkDemand
The assembly or AppDomain that failed
was:
candle, Version=2.0.4415.0, Culture=neutral,
PublicKeyToken=ce35f76fcda82bad
The Zone of the assembly that failed
was:
Intranet
The Url of the assembly that failed
was:
file:///p:/Measurements/RLP/group/dfunesc/installers/toolchain/external/WixToolset/2.0/2.0.0a1/bin/candle.exe

I have tried using the latest WiX builds
(2.0.4415.0 and 3.0.2015.0)

The problem is the same as described
here:
http://sourceforge.net/mailarchive/message.php?msg_id=14802220

Is there a fix that can be made in the
WiX source to fix this?  Is the only way around it to use CasPol?

Thanks in advance,
Ben

-
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] Components and SQL Issues

2006-09-11 Thread Fredrik Grohn
1. You probably don't want to leave the component behind on the system on
uninstall in any case. It sounds like what you really want to do is make the
removal of the database conditional. That sounds like a perfectly valid
feature request to me. Unfortunately I can't think of a way to do it with
the current implementation though. (You can only hard-code if the database
should be dropped on uninstall.)

2. This bug has been puzzling me for a while. I agree that it is a valid
assumption that a rollback should attempt to leave the system in a state as
close to the original state as possible. The problem I believe is that the
assumption when a CA finds an entity that it is meant to install itself
already present on the system, is that it is the result of a failed
installation or similar. It will then "tolerate the error" by proceeding
anyway ignoring the fact that the entity was present on the system. The
result of cause is that it will behave like it actually installed the given
entity when performing a rollback and clean the entity up. It could be
argued that the proper behavior is to fail instead in this situation instead
of accepting the error.

The problem with making this behavior fully transactional and never delete a
resource we didn't create in the first place is that it is a lot more
difficult to implement. Also I think that the general convention used by the
Windows Installer is the current behavior of the SQL CA's.

User data is handled a bit different by the Windows Installer though. And
after writing this little essay I have convinced myself that the correct
thing to do is to make the SQL CA's not drop the database on rollback if it
was present before the installation.

Just a small question: Have you given any thought to how you want to handle
upgrade scenarios? Would you ever need to do modifications to a database
left behind by an older version of your software when you are installing a
new version?

Fredrik

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson
Sent: Monday, September 11, 2006 6:49 PM
To: Tiago Silva
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Components and SQL Issues

Tiago Silva wrote:
> 1. My boss wants that the current setup of our application ask to the
> user if he wants to keep the application database and settings. I have
> two separated components and I evaluate if the components are to
> uninstall or not. The problem is that the Components uninstall run
> always no mather the Condition values that are set. I saw the property
> named Permanent but is no good for me because I want to give the
> choise to the user.
>   
Component conditions kick in only during installation. They don't affect 
uninstallation. You can make them features so the user has visible 
control over them.
> 2. This one I think that is a known Bug, but sincerely I don't know
> the state of it. If I install a database on a server that already have
> a database with the same name, and after the sql authentication is
> performed an install error occur, the database is dropped from the
> server. Any news of it?
>   
That bug (#1212275) is still open.

-- 
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



-
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] Components and SQL Issues

2006-09-11 Thread Bob Arnson
Tiago Silva wrote:
> 1. My boss wants that the current setup of our application ask to the
> user if he wants to keep the application database and settings. I have
> two separated components and I evaluate if the components are to
> uninstall or not. The problem is that the Components uninstall run
> always no mather the Condition values that are set. I saw the property
> named Permanent but is no good for me because I want to give the
> choise to the user.
>   
Component conditions kick in only during installation. They don't affect 
uninstallation. You can make them features so the user has visible 
control over them.
> 2. This one I think that is a known Bug, but sincerely I don't know
> the state of it. If I install a database on a server that already have
> a database with the same name, and after the sql authentication is
> performed an install error occur, the database is dropped from the
> server. Any news of it?
>   
That bug (#1212275) is still open.

-- 
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] VC8 runtime issues under Vista RC1. (slightly OffTopic)

2006-09-11 Thread Kirill Kovalenko
Hello Mike,

> Are you testing on a completely clean install of XP?

Yes, of course.

> runtime files haven't yet been committed to the Win32 SXS assembly folders
by the point that the SelfReg table is processed

Yes, it appears like something is uncommented. However, as I said before, by
the time when SelfReg processing starts, the necessary files are already
placed in their folders under Windows\WinSxS folder. 

> I'd try to switch to authoring the MSI properly

We have the "right thing" planned for the next major version, and just want
to make as little as possible changes in the current version to make it
Vista compatible.

Sincerely yours,

Kirill Kovalenko
Product Manager
Softerra LLC
http://www.softerra.com
http://www.ldapadministrator.com


-Original Message-
From: Mike Dimmick [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 11, 2006 7:14 PM
To: Kirill Kovalenko; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] VC8 runtime issues under Vista RC1. (slightly
OffTopic)

I'd guess that the runtime files haven't yet been committed to the Win32 SXS
assembly folders by the point that the SelfReg table is processed, and
therefore when the manifest is processed, the DLL load fails. No idea why
this would work on XP, though, unless the assemblies were already installed.
Are you testing on a completely clean install of XP?

I'd try to switch to authoring the MSI properly, using the Class and TypeLib
tables, then the Registry table for everything that doesn't cover.
Tallow.exe or heat.exe (WiX 3.0) may be able to help you.

--
Mike Dimmick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kirill
Kovalenko
Sent: 11 September 2006 16:52
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] VC8 runtime issues under Vista RC1. (slightly
OffTopic)

Hello,

We have an installation package that includes VC8 runtime libraries via
standard merge modules (ATL, MFC, C++ runtime).  The problem is that when
SelfReg table (yes, I know that self-registration is evil) is being
processed, the system cannot locate VC8 runtime files and returns error
0x800736B1 (-2147010895) which seems to be a COM HRESULT mapping of
ERROR_SXS_CANT_GEN_ACTCTX. The message in the EventLog says: 


Activation context generation failed for "C:\Program Files\Softerra\LDAP
Administrator 3\lansext.dll". Dependent Assembly
Microsoft.VC80.ATL,processorArchitecture="x86",publicKeyToken="1fc8b3b9a
1e18
e3b",type="win32",version="8.0.50608.0" could not be found. Please use
sxstrace.exe for detailed diagnosis.


Unfortunately, 'sxstrace.exe' seems to be broken in Vista RC1 - it returns
an error every in attempt to trace anything. 

I checked that required run-time files are already present in appropriate
WinSxS subfolders by the time when SelfReg processing starts. The issue
happens only on Vista, prior systems XP and 2K work fine. It appears like a
Vista's bug, but I'm not sure.

Any thoughts? 

P.S. If I use vcredist_x86.exe to install VC8 runtime, and then install our
product - the installation goes smoothly.

Sincerely yours,

Kirill Kovalenko
Product Manager
Softerra LLC
http://www.softerra.com
http://www.ldapadministrator.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


-
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] VC8 runtime issues under Vista RC1. (slightly OffTopic)

2006-09-11 Thread Mike Dimmick
I'd guess that the runtime files haven't yet been committed to the Win32
SXS assembly folders by the point that the SelfReg table is processed,
and therefore when the manifest is processed, the DLL load fails. No
idea why this would work on XP, though, unless the assemblies were
already installed. Are you testing on a completely clean install of XP?

I'd try to switch to authoring the MSI properly, using the Class and
TypeLib tables, then the Registry table for everything that doesn't
cover. Tallow.exe or heat.exe (WiX 3.0) may be able to help you.

-- 
Mike Dimmick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kirill
Kovalenko
Sent: 11 September 2006 16:52
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] VC8 runtime issues under Vista RC1. (slightly
OffTopic)

Hello,

We have an installation package that includes VC8 runtime libraries via
standard merge modules (ATL, MFC, C++ runtime).  The problem is that
when SelfReg table (yes, I know that self-registration is evil) is being
processed, the system cannot locate VC8 runtime files and returns error
0x800736B1 (-2147010895) which seems to be a COM HRESULT mapping of
ERROR_SXS_CANT_GEN_ACTCTX. The message in the EventLog says: 


Activation context generation failed for "C:\Program Files\Softerra\LDAP
Administrator 3\lansext.dll". Dependent Assembly
Microsoft.VC80.ATL,processorArchitecture="x86",publicKeyToken="1fc8b3b9a
1e18
e3b",type="win32",version="8.0.50608.0" could not be found. Please use
sxstrace.exe for detailed diagnosis.


Unfortunately, 'sxstrace.exe' seems to be broken in Vista RC1 - it
returns an error every in attempt to trace anything. 

I checked that required run-time files are already present in
appropriate WinSxS subfolders by the time when SelfReg processing
starts. The issue happens only on Vista, prior systems XP and 2K work
fine. It appears like a Vista's bug, but I'm not sure.

Any thoughts? 

P.S. If I use vcredist_x86.exe to install VC8 runtime, and then install
our product - the installation goes smoothly.

Sincerely yours,

Kirill Kovalenko
Product Manager
Softerra LLC
http://www.softerra.com
http://www.ldapadministrator.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

-
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] VC8 runtime issues under Vista RC1. (slightly OffTopic)

2006-09-11 Thread Kirill Kovalenko
Hello,

We have an installation package that includes VC8 runtime libraries via
standard merge modules (ATL, MFC, C++ runtime).  The problem is that when
SelfReg table (yes, I know that self-registration is evil) is being
processed, the system cannot locate VC8 runtime files and returns error
0x800736B1 (-2147010895) which seems to be a COM HRESULT mapping of
ERROR_SXS_CANT_GEN_ACTCTX. The message in the EventLog says: 


Activation context generation failed for "C:\Program Files\Softerra\LDAP
Administrator 3\lansext.dll". Dependent Assembly
Microsoft.VC80.ATL,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18
e3b",type="win32",version="8.0.50608.0" could not be found. Please use
sxstrace.exe for detailed diagnosis.


Unfortunately, 'sxstrace.exe' seems to be broken in Vista RC1 - it returns
an error every in attempt to trace anything. 

I checked that required run-time files are already present in appropriate
WinSxS subfolders by the time when SelfReg processing starts. The issue
happens only on Vista, prior systems XP and 2K work fine. It appears like a
Vista's bug, but I'm not sure.

Any thoughts? 

P.S. If I use vcredist_x86.exe to install VC8 runtime, and then install our
product - the installation goes smoothly.

Sincerely yours,

Kirill Kovalenko
Product Manager
Softerra LLC
http://www.softerra.com
http://www.ldapadministrator.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


[WiX-users] Components and SQL Issues

2006-09-11 Thread Tiago Silva
Hi there to all Wix users.

I have two doubts regarding Wix that I would like to discuss with more
experienced users.

1. My boss wants that the current setup of our application ask to the
user if he wants to keep the application database and settings. I have
two separated components and I evaluate if the components are to
uninstall or not. The problem is that the Components uninstall run
always no mather the Condition values that are set. I saw the property
named Permanent but is no good for me because I want to give the
choise to the user.


  
  
  (INSTALL_DATABASE="1") OR
(UNINSTALL_DATABASE="1")


  
  (INSTALL_SETTINGS="1") OR
(UNINSTALL_SETTINGS="1")


2. This one I think that is a known Bug, but sincerely I don't know
the state of it. If I install a database on a server that already have
a database with the same name, and after the sql authentication is
performed an install error occur, the database is dropped from the
server. Any news of it?


Thanks to all.

-
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] Additions to existing web.config file

2006-09-11 Thread Crouch, John
Folks,
As part of a Sharepoint web part installation I must add log4net
information into the Sharepoint web site web.config file.  Now, I know
how to
a) add a value to an existing key of a component I install
b) add an element of a component I install

How do I add something like this to an existing web.config file?


  

  
  ...
  

  
  
  
  
  
  
  

  


  

  


  

  


Thanks
John

-
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] Writing to Registry during uninstallation

2006-09-11 Thread Stefan Pavlik
Thanks for your replay.

So I will need to write teh custom action when I want to support
rollback for uninstallation. :-(

thanks again

stefan

Bob Arnson wrote:
> Stefan Pavlik wrote:
>> Is it possible to write (in standard MSI way) some value to the
>> registry during uninstallation of the package ?
>>   
> WiX v3 supports the RemoveRegistryValue element to do that but MSI
> itself supports the removal only of whole values (or keys), which won't
> really help you remove one value in the ProviderOrder string.
> 

-- 
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies | www.whitestein.com
Panenska 28 | SK-81103 Bratislava | Slovak Republic
Tel +421(2)5930-0735 | Fax +421(2)5443-5512

-
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] SelectionTrees

2006-09-11 Thread Petrut Andrei
  Hi. I have 2 UI windows and I need one SelectionTree
in each of them. I want a Browse button and that label
in which the path appears. When I change  the path in
one window, it changes in the second one also. 
Please give me a hint and tell me how to solve this.
  Thanks in advance.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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


Re: [WiX-users] Policy and Config files into the GAC?

2006-09-11 Thread Mike Dimmick



I previously had a set of policy files which I packaged using Visual 
Studio's Setup and Deployment project type. To check we're on the right page, we 
are talking about .NET publisher policy, right? Where you're redirecting an 
assembly reference to a different version of that assembly?
 
I ran the MSI through dark.exe, and this is what I 
got:
 
    
  
  
    

I'd guess that this is the right way to do it. The link http://msdn.microsoft.com/library/en-us/msi/setup/adding_assemblies_to_a_package.asp says that "[a]ll of the files in the assembly should be in a single 
component."
 
-- 
Mike 
Dimmick


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Joseph 
BarkleySent: 08 September 2006 20:35To: 
wix-usersSubject: [WiX-users] Policy and Config files into the 
GAC?
I've got some merge modules that contain policy dll files and config 
files for assemblies that need to go into the GAC. I have tried several 
different things to get these files placed into the GAC with the associated 
assemblies, but to no avail. I have tried adding them to the same component and 
set the main assembly as the KeyPath, but then I can't set the Assembly 
attribute on the other files (because the file with the assembly attribute also 
has to be the key file). I have tried putting these in their own components 
(config's and policy dll's) but they aren't "valid" GAC files. 
Previously, I had added everything in our InstallScript code to the GAC 
by using gacutil with *.*If this is not correct, how do I handle the 
policy and config files that go with the assemblies? Where should these be 
placed on disk if they don't go into the GAC? 
Thanks,Joseph
-
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] merge module for olepro32.dll

2006-09-11 Thread Mike Dimmick
Vb6stkit.dll is part of the Visual Basic 6 Package and Deployment Wizard
and isn't required for your program at runtime. It's a support file
required by Setup1.exe. There's no need to include this file.

The P&DW regularly included files that weren't actually necessary or
were part of the operating system and should not have been redistributed
separately, so I wouldn't follow the log file too closely.

As far as I can tell there is no redistributable version of msimg32.dll,
so if you actually need to use this DLL, you will have to limit support
to Windows 2000 and later. You can find out which Microsoft products
shipped a particular DLL by checking the DLL Help Database at
http://support.microsoft.com/dllhelp/

-- 
Mike Dimmick 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Standa
Kunc
Sent: 08 September 2006 21:39
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] merge module for olepro32.dll

Thank you all very much, this is the advice I needed.

There is last unmerged dll file named vb6stkit.dll. Is there special
merge module for this library?

To be clear I want to merge all files that are written in the original
non-msi setup. See orginal non-msi setup log in attachment.

S. Kunc

-
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] Writing to Registry during uninstallation

2006-09-11 Thread Bob Arnson
Stefan Pavlik wrote:
> Is it possible to write (in standard MSI way) some value to the
> registry during uninstallation of the package ?
>   
WiX v3 supports the RemoveRegistryValue element to do that but MSI 
itself supports the removal only of whole values (or keys), which won't 
really help you remove one value in the ProviderOrder string.

-- 
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