Re: [WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-16 Thread roberthyang
I tried this, and also '-ext "%WIX%\WixUtilExtension.dll"', and while torch/pyro didn't complain, I also didn't see an XmlFile table added by the .msp. The XML file was not modified when I ran the resulting patch, though the log did indicate that the enclosing component was installed. Same result

Re: [WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-16 Thread Nick Ramirez
Does /-ext WixUtilExtension/ work? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/XmlFile-or-XmlConfig-in-patch-msp-tp7598517p7598616.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-16 Thread Phill Hogland
-ext "%WIX%\WixUtilExtension.dll" -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/XmlFile-or-XmlConfig-in-patch-msp-tp7598517p7598615.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-16 Thread roberthyang
Thanks for the hint Nick. Here is my torch cmdline : "%WIX%\torch" -ax %PATCH_ADMIN_INSTALL% -p -xo %BASE_ADMIN_INSTALL%\setup%BASE%.msi %PATCH_ADMIN_INSTALL%\setup.msi -out %PATCHDIR%\diff.wixmst I tried both "-ext UtilExtension" and "-ext Microsoft.Tools.WindowsInstallerXml.Extensions.UtilExte

Re: [WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-12 Thread Nick Ramirez
What do your calls to torch.exe and pryo.exe look like? Do they include the -ext flag for the UtilExtension? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/XmlFile-or-XmlConfig-in-patch-msp-tp7598517p7598549.html Sent from the wix-users mailing li

Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-26 Thread Marco Tognacci
o the network and can modify the file, as I have tried the same code inside a sample application and in this application works, can access and modify the file. > Date: Wed, 26 Nov 2014 10:39:50 -0700 > From: robert_y...@agilent.com > To: wix-users@lists.sourceforge.net > Subject: Re: [W

Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-26 Thread roberthyang
In order to do this you need to run as a user identity that has network privileges and access to the network location you need to access. If you have Impersonate=no and Execute=deferred in your custom action, then you will be running as LocalSystem, which does not have network privileges. mark22

Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-25 Thread Marco Tognacci
I have tried to use a custom action for access the file from a network location, then update its content and save again in the network folder.I have used XDocument.Load(@"\\mynetwork\myfile.xml") to read the file but I receive an access violation exception for the permission.Is there any way for

Re: [WiX-users] XmlFile Failed to find node

2014-02-01 Thread Rob Mensching
There is a bug open about the lack of namespace handling. Be awesome if someone was to fix it. -Original Message- From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com] Sent: Saturday, February 1, 2014 11:49 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users

Re: [WiX-users] XmlFile Failed to find node

2014-02-01 Thread Nicolás Alvarez
2014-01-31 Jeremy : > For the record and anyone curious, It seems to be XmlFile not liking > something about the xmlns in the nlog tag, somehow that's preventing it > from parsing the other elements. > > i.e. with a plain in the app.config, those Util:XmlFile's work > great. But these in app.confi

Re: [WiX-users] XmlFile Failed to find node

2014-01-31 Thread Jeremy
For the record and anyone curious, It seems to be XmlFile not liking something about the xmlns in the nlog tag, somehow that's preventing it from parsing the other elements. i.e. with a plain in the app.config, those Util:XmlFile's work great. But these in app.config, XmlFile errors: http://www.

Re: [WiX-users] XmlFile Failed to find node

2014-01-31 Thread Jeremy
On Fri, Jan 31, 2014 at 2:42 PM, John Cooper wrote: > Change your ElementPath to have the XPath without the /@value and add a > Name attribute to util:XmlFile with the value "value". It should work. > Thanks for the tip! I tried that change with just the APIURL Util:XmlFile (which was working

Re: [WiX-users] XmlFile Failed to find node

2014-01-31 Thread John Cooper
Change your ElementPath to have the XPath without the /@value and add a Name attribute to util:XmlFile with the value "value". It should work. -- John Merryweather Cooper Build & Install Engineer - ESA Jack Henry & Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo.

Re: [WiX-users] XmlFile supports /parent::* Xpath syntax ?

2013-03-18 Thread Bala K
Thanks a lot Rob, that did it Bala > From: r...@robmensching.com > Date: Mon, 18 Mar 2013 14:38:11 -0700 > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] XmlFile supports /parent::* Xpath syntax ? > > When using XPath advanced features, be sure to

Re: [WiX-users] XmlFile supports /parent::* Xpath syntax ?

2013-03-18 Thread Rob Mensching
When using XPath advanced features, be sure to set the XmlFile/@SelectionLanguage='XPath'. The default is 'XSLPattern' which doesn't have many features of full blown XPath (but XSLPatter works with older MSXML versions). On Mon, Mar 18, 2013 at 11:31 AM, Bala K wrote: > > Hi am using trying to

Re: [WiX-users] XmlFile can't create a child element

2012-05-31 Thread Kjartan Þór Kjartansson
Thank you, this solved the problem, I just did not see the space there Regards, Kjartan Þór -Original Message- From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Sent: 31. maí 2012 12:26 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile can&#

Re: [WiX-users] XmlFile can't create a child element

2012-05-31 Thread Peter Shirtcliffe
There's a space in the Name attribute. Other than that, it looks like it should work. If that's not the problem, can you post the xml please ? -Original Message- From: Kjartan Þór Kjartansson [mailto:kjar...@fivedegrees.is] Sent: 31 May 2012 12:42 To: wix-users@lists.sourceforge.net Subje

Re: [WiX-users] XmlFile element issues - any XPath experts out there?

2012-01-19 Thread Blair
January 17, 2012 6:44 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile element issues - any XPath experts out there? Thanks, although I have it working now without setting the SelectionLanguage, I did try that out when debugging. I assume they are very s

Re: [WiX-users] XmlFile element issues - any XPath experts out there?

2012-01-17 Thread Dan Gough
Thanks, although I have it working now without setting the SelectionLanguage, I did try that out when debugging. I assume they are very similar if my XPath pattern match works as expected even when parsed as XSLPattern. On Sat, Jan 14, 2012 at 3:20 AM, Blair wrote: > In your XmlFile elements ma

Re: [WiX-users] XmlFile element issues - any XPath experts out there?

2012-01-13 Thread Blair
In your XmlFile elements make sure you set @SelectionLanguage to XPath. The obsolete XSLPattern default value uses a now obsolete predecessor to XPath for the pattern matching. Blair -Original Message- From: Dan Gough [mailto:goug...@gmail.com] Sent: Wednesday, January 11, 2012 7:43 AM T

Re: [WiX-users] XmlFile element issues - any XPath experts out there?

2012-01-11 Thread Rob Mensching
Yeah, XPath is horrid in those attributes given the escaping necessary to pass through to MSI. Sadly, two "languages" designed in completely different silos whose special characters collided really badly. On Wed, Jan 11, 2012 at 8:20 AM, Dan Gough wrote: > D'oh - solved. I was incorrectly esca

Re: [WiX-users] XmlFile element issues - any XPath experts out there?

2012-01-11 Thread Dan Gough
D'oh - solved. I was incorrectly escaping the square brackets, using a forward slash instead of a backslash! All working great now. Dan On Wed, Jan 11, 2012 at 3:43 PM, Dan Gough wrote: > Hi, > > I've successfully set up a few xml file configuration items using the > XmlFile element, but I ha

Re: [WiX-users] XmlFile Getting Scheduled During Uninstall

2010-06-28 Thread Castro, Edwin G. (Hillsboro)
; From: Bob Arnson [mailto:b...@joyofsetup.com] > Sent: Saturday, June 26, 2010 4:15 PM > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] XmlFile Getting Scheduled During Uninstall > > On 6/25/2010 3:48 PM, Castro, Edwin G. (Hillsboro) wrote: > > Does anybody kn

Re: [WiX-users] XmlFile Getting Scheduled During Uninstall

2010-06-26 Thread Bob Arnson
On 6/25/2010 3:48 PM, Castro, Edwin G. (Hillsboro) wrote: > Does anybody know under what circumstances SchedXmlFile would schedule > ExecXmlFile during uninstall? > Pretty much always. In general, use XmlFile with Permanent="yes" for files you're installing and XmlConfig when you need to mod

Re: [WiX-users] XmlFile Getting Scheduled During Uninstall

2010-06-25 Thread Castro, Edwin G. (Hillsboro)
gt; -Original Message- > From: Castro, Edwin G. (Hillsboro) [mailto:edwin.cas...@fiserv.com] > Sent: Friday, June 25, 2010 1:39 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] XmlFile Getting Scheduled During Uninstall > > I had n

Re: [WiX-users] XmlFile Getting Scheduled During Uninstall

2010-06-25 Thread Castro, Edwin G. (Hillsboro)
I had not noticed the Permanent attribute in the documentation: Permanent YesNoType Specifies whether or not the modification should be removed on uninstall. This has no effect on uninstall if the action was deleteValue. I'm not specifying the Permanent attribute in my authoring. I'm assuming th

Re: [WiX-users] XMLFile

2010-06-21 Thread Carolina Zuqueto Amaral
Now, the configurations are working. Thanks! Carolina Zuqueto. -Original Message- From: Alexander Shevchuk (Volt) [mailto:a-ale...@microsoft.com] Sent: quinta-feira, 17 de junho de 2010 20:40 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile Add

Re: [WiX-users] XMLFile

2010-06-17 Thread Alexander Shevchuk (Volt)
Add SelectionLanguage attribute to your element: -Original Message- From: Carolina Zuqueto Amaral [mailto:carolina.ama...@conv.com.br] Sent: Thursday, June 17, 2010 3:20 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile This is my xml

Re: [WiX-users] XMLFile

2010-06-17 Thread Carolina Zuqueto Amaral
. Subject: Re: [WiX-users] XMLFile Hi Carolina, Your XPath looks fine. You need to show your XML. Include element and its parents in the xml file. Do you have something like: ... ... ... -Original Message- From: Carolina Zuqueto Amaral [mailto:carolina.ama

Re: [WiX-users] XMLFile

2010-06-17 Thread Alexander Shevchuk (Volt)
, 2010 11:28 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile Log: ... ExecXmlFile: Error 0x800710d8: failed to find node: /DTSConfiguration/Configuration.Properties']/ConfiguredValue in XML file: c:\Convergencia\WitDataFarm\Source\C

Re: [WiX-users] XMLFile

2010-06-17 Thread Carolina Zuqueto Amaral
ion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile The error says that it can't find the node specified by the XmlFile/@XPath. The syntax looks correct. I wonder if there are XML namespaces involved here. Edwin G. Castro Software Developer - Staff Electronic Banking S

Re: [WiX-users] XMLFile

2010-06-15 Thread Alexander Shevchuk (Volt)
Your XML is malformed: \\convs07\Historical Integration\DataFarm\WIT\Files\ Should be either: Or \\convs07\Historical Integration\DataFarm\WIT\Files\ Alex -Original Message- From: Carolina Zuqueto Amaral [mailto:carolina.ama...@conv.com.br] Sent:

Re: [WiX-users] XMLFile

2010-06-15 Thread Castro, Edwin G. (Hillsboro)
The error says that it can't find the node specified by the XmlFile/@XPath. The syntax looks correct. I wonder if there are XML namespaces involved here. Edwin G. Castro Software Developer - Staff Electronic Banking Services Fiserv Office: 503-746-0643 Fax: 503-617-0291 www.fiserv.com Please co

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread John Cooper (Volt)
or Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There Is the file you're trying to modify valid XML? I'd really avoid writing your own CA, if at all possible. They're notorious for inadvertently ruining your M

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread Mike Carlson (DEV DIV)
(Volt) [mailto:a-jc...@microsoft.com] Sent: Thursday, May 06, 2010 3:32 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There Using the boxed File Id's helped a lot. It appears Default.aspx is a

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread John Cooper (Volt)
al Message- From: Matt Johnson [mailto:ma...@timeamerica.com] Sent: Thursday, May 06, 2010 3:01 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There Also, you should make sure the file you're edit

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread Matt Johnson
CSD, MCDBA Director of Application Development Time America, Inc. ma...@timeamerica.com | www.timeamerica.com -Original Message- From: Matt Johnson Sent: Thursday, May 06, 2010 2:57 PM To: General discussion for Windows Installer XML toolset. Subject: RE: [WiX-users] XMLFile not Finding fi

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread John Cooper (Volt)
To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There Yes, it is definitely possible. The Default.aspx file in an ASP.NET configuration file. The two Web.config files are both for IIS7. I'll

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread Matt Johnson
a...@timeamerica.com | www.timeamerica.com -Original Message- From: John Cooper (Volt) [mailto:a-jc...@microsoft.com] Sent: Thursday, May 06, 2010 2:32 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verifi

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread John Cooper (Volt)
ay 06, 2010 2:15 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There Is it possible your XML file has an inaccurate header? I've seen people before with an XML header like this: But their

Re: [WiX-users] XMLFile not Finding file to Edit Even Though File is Verified There

2010-05-06 Thread Mike Carlson (DEV DIV)
Is it possible your XML file has an inaccurate header? I've seen people before with an XML header like this: But their file isn't actually saved in UTF-8 format. This mismatch will cause MSXML (which XmlFile uses) to fail on that file, everytime - I don't remember with what error code. Anot

Re: [WiX-users] XmlFile breaks SqlDatabase?

2010-04-24 Thread dB .
You might consider an alternate wix extension for Sql databases, http://msiext.codeplex.com. dB. @ dblock.org Moscow|Geneva|Seattle|New York -Original Message- From: Will Sullivan [mailto:wsulli...@softdocs.com] Sent: Monday, April 12, 2010 2:14 PM To: WiX-users@lists.sourceforge.ne

Re: [WiX-users] XmlFile & FirewallException

2010-04-24 Thread Rob Mensching
oes! > > -Original Message- > From: Will Sullivan [mailto:wsulli...@softdocs.com] > Sent: Thursday, April 22, 2010 1:54 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] XmlFile & FirewallException > > Strike that. > > Figured it o

Re: [WiX-users] XmlFile & FirewallException

2010-04-23 Thread Will Sullivan
Latest update fixes all my woes! -Original Message- From: Will Sullivan [mailto:wsulli...@softdocs.com] Sent: Thursday, April 22, 2010 1:54 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile & FirewallException Strike that. Figured it

Re: [WiX-users] XmlFile & FirewallException

2010-04-22 Thread Will Sullivan
Installer XML toolset. Subject: Re: [WiX-users] XmlFile & FirewallException Looking again at XmlConfig, I remember why I bailed on it. While XmlFile is easy to parse and works as expected, XmlConfig has some very weird limitations and while I can figure out how to do what I want to do in XmlFil

Re: [WiX-users] XmlFile & FirewallException

2010-04-22 Thread Will Sullivan
9:46 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile & FirewallException Use XMLConfig instead? Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Inn

Re: [WiX-users] XmlFile & FirewallException

2010-04-22 Thread Will Sullivan
me know, k? -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Thursday, April 22, 2010 11:26 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile & FirewallException Yes, we will do something about it. The bug is ope

Re: [WiX-users] XmlFile & FirewallException

2010-04-22 Thread Rob Mensching
Yes, we will do something about it. The bug is open along with a little less than 100 other bugs in WiX v3.5. On Thu, Apr 22, 2010 at 6:45 AM, Pally Sandher wrote: > Use XMLConfig instead? > > Palbinder Sandher > Software Deployment & IT Administrator > T: +44 (0) 141 945 8500 > F: +44 (0) 141 94

Re: [WiX-users] XmlFile & FirewallException

2010-04-22 Thread Pally Sandher
Use XMLConfig instead? Palbinder Sandher Software Deployment & IT Administrator T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the ** Integrated Environmental Solutions Limited. Registered in Scotland No. SC151456 Registered Office -

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-23 Thread si
Thanks everyone for all your help, it's now working. I found one bug in my code where was referenced in multiple features (one conditioned on upgrade and one not), and once that was cleaned up, I found I could place the NOT UPGRADEFOUND condition back on each component as per Bob's suggestion, an

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-23 Thread Blair
e- From: si [mailto:sshnug...@gmail.com] Sent: Wednesday, September 23, 2009 1:01 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile being executed when feature condition should fail > What does the log say about the WebConfigSqlDbSqlAuthComponent com

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-23 Thread si
> What does the log say about the WebConfigSqlDbSqlAuthComponent component > while running CostFinalize? > > Also, is your upgrade Major or Minor/Small? Hi Blair, All our upgrades are Major. As for the component, the only reference in the log is: New Install: Action ended 16:58:44: CostFinali

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-23 Thread si
> As far as I can tell, what you have there is a component declaration with a > condition about whether it should be installed or not. > > However the issue seems to be that the custom action ' SchedXmlFile' is being > called, so what matters is the condition you have on that custom action call,

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-22 Thread Blair
Installer XML toolset. Subject: Re: [WiX-users] XmlFile being executed when feature condition should fail >> Long story short: XmlFile is being executed during upgrades when I >> only want it executed on new installations. >> > > The owning component controls whether XmlFile i

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-22 Thread Wilson, Phil
neral discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile being executed when feature condition should fail >> Long story short: XmlFile is being executed during upgrades when I >> only want it executed on new installations. >> > > The owni

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-21 Thread si
>> Long story short: XmlFile is being executed during upgrades when I >> only want it executed on new installations. >> > > The owning component controls whether XmlFile is run; conditionalize it > so it doesn't run during upgrade. Thanks for the reply Bob, unfortunately I already tried this with

Re: [WiX-users] XmlFile being executed when feature condition should fail

2009-09-17 Thread Bob Arnson
si wrote: > Long story short: XmlFile is being executed during upgrades when I > only want it executed on new installations. > The owning component controls whether XmlFile is run; conditionalize it so it doesn't run during upgrade. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] XmlFile element not using updated property value

2008-11-28 Thread Rob Mensching
Probably need to make the Property Secure so it moves from the client to the server during the install process. -Original Message- From: ajay [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2008 06:03 To: wix-users@lists.sourceforge.net Subject: [WiX-users] XmlFile element not using

Re: [WiX-users] XmlFile does not support default namespaces?

2008-11-18 Thread Scott Sharpe
neral discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile does not support default namespaces? I'm not aware of a work around. How would you do this with XslPattern using MSXML 3? -Original Message- From: Scott Sharpe [mailto:[EMAIL PROTECTED] Sent: Monday, N

Re: [WiX-users] XmlFile does not support default namespaces?

2008-11-18 Thread Rob Mensching
I'm not aware of a work around. How would you do this with XslPattern using MSXML 3? -Original Message- From: Scott Sharpe [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 17:55 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile doe

Re: [WiX-users] XmlFile does not support default namespaces?

2008-11-17 Thread Scott Sharpe
nt: Sunday, November 16, 2008 10:45 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile does not support default namespaces? Sorry about the clarity. If my xml file does not have a default namespace. Then XPath queries work just fine through the XmlFile el

Re: [WiX-users] XmlFile does not support default namespaces?

2008-11-16 Thread Scott Sharpe
discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile does not support default namespaces? Scott Sharpe wrote: > I'm wanting to update an xml file as part of my install. Works fine as long > as the root node does not have a default namespace. Is this a known is

Re: [WiX-users] XmlFile does not support default namespaces?

2008-11-15 Thread Bob Arnson
Scott Sharpe wrote: > I'm wanting to update an xml file as part of my install. Works fine as long > as the root node does not have a default namespace. Is this a known issue? > Um, is what a known issue? What happens if it does have a default namespace? There are definitely some MSXML oddit

Re: [WiX-users] xmlFile Bug, creating excess attribute's in children

2008-11-05 Thread Rob Mensching
MSXML. -Original Message- From: hegsie [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 04:01 To: wix-users@lists.sourceforge.net Subject: [WiX-users] xmlFile Bug, creating excess attribute's in children Hi, The following code...

Re: [WiX-users] XMLFile changes undone on uninstall?

2008-09-25 Thread Rob Mensching
1. No, XmlFile doesn't do that. 2. Yes, that's one of a couple reasons XmlConfig was created. -Original Message- From: Michael Owings [mailto:[EMAIL PROTECTED] Sent: Thursday, September 25, 2008 07:37 To: wix-users@lists.sourceforge.net Subject: [WiX-users] XMLFile changes undone on uni

Re: [WiX-users] XmlFile CreateElement

2008-06-17 Thread Alexander Shevchuk
attribute. Alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of md5hans Sent: Tuesday, June 17, 2008 5:25 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile CreateElement Thanks, that solved my problem! I have another question related

Re: [WiX-users] XmlFile CreateElement

2008-06-17 Thread md5hans
, June 16, 2008 11:12 AM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] XmlFile CreateElement > > You could also use XmlConfig. > >>From an xpath point of view you can use something like so in your XmlSetting2 which would get you the 3rd

Re: [WiX-users] XmlFile CreateElement

2008-06-16 Thread Alexander Shevchuk
: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] XmlFile CreateElement You could also use XmlConfig. >From an xpath point of view you can use something like so in your XmlSetting2 >which would get you the 3rd child element. "//ParentNode/ChildNodes/Chi

Re: [WiX-users] XmlFile CreateElement

2008-06-16 Thread Ryan Perlman
You could also use XmlConfig. >From an xpath point of view you can use something like so in your XmlSetting2 >which would get you the 3rd child element. "//ParentNode/ChildNodes/ChildNode[\[]3[\]] Ryan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [WiX-users] XmlFile Question Regarding "Permanent" Setting

2008-04-16 Thread Bob Arnson
Darryl Hnatiuk wrote: > We are currently using WiX version 3.0.4014.0 and have been tring to > get the XmlFile action working, and for the most part have everything > working fine. However, one setting we've been having trouble with is > the "Permanent" setting. From the WiX documentation, my un

Re: [WiX-users] XmlFile Question Regarding "Permanent" Setting

2008-04-15 Thread Chad Petersen
I see the same thing with WiX 2.0.5325.0. I don't use the Permanent attribute, but the changes are never removed. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darryl Hnatiuk Sent: Tuesday, April 15, 2008 11:04 AM To: wix-users@lists.sourceforg

Re: [WiX-users] XMLFile and XMLConfig

2007-11-28 Thread Julie Campbell
AIL PROTECTED]> Subject: Re: [WiX-users] XMLFile and XMLConfig To: wix-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" Hi, seems I should open bug/feature request in wix website ? please let me know if the issue b

Re: [WiX-users] XMLFile and XMLConfig

2007-11-28 Thread Fadi Haik
Hi, seems I should open bug/feature request in wix website ? please let me know if the issue bellow not working for me since I dont know how to use or it just missing feature ? Thanks in advance, Fadi On Nov 25, 2007 10:44 PM, Fadi Haik <[EMAIL PROTECTED]> wrote: > Hi > > > > I am trying to updat

Re: [WiX-users] XmlFile From Property

2007-11-27 Thread Rob Mensching
The Xml custom actions are configured to run after files are installed for exactly the case you list below. -Original Message- From: James Renton [mailto:[EMAIL PROTECTED] Sent: Monday, November 05, 2007 13:14 To: Rob Mensching Subject: RE: [WiX-users] XmlFile From Property That's

Re: [WiX-users] XmlFile From Property

2007-11-04 Thread Rob Mensching
No, the columns for data in XmlFile and XmlConfig should all be Formatted. That means you can use the syntax "[PropertyName]" to get the value of a Property. The MSI SDK has more info. James Renton wrote: > > I was looking at using the XmlFile custom action. > > > > I wanted to store the val

Re: [WiX-users] XmlFile failing to open installed file

2007-08-22 Thread John Hancock (HSG)
failing to load. I'm cc'ing wix-devs so that it can be flagged as a bug if need be. John -Original Message- From: John Hancock (HSG) [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 22, 2007 1:30 PM To: Alexei; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile faili

Re: [WiX-users] XmlFile failing to open installed file

2007-08-22 Thread John Hancock (HSG)
, August 22, 2007 12:09 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile failing to open installed file Is the xml file part of the same install that tries to modify it? If so you will probably need some sort of of deferred custom action, as the file will probably not have

Re: [WiX-users] XmlFile failing to open installed file

2007-08-22 Thread Alexei
ednesday, August 22, 2007 11:42 AM > To: wix-users@lists.sourceforge.net; John Hancock (HSG) > Subject: RE: [WiX-users] XmlFile failing to open installed file > > John, > > Why the double slashes at the beginning of your element names? Just one > slash... > >

Re: [WiX-users] XmlFile failing to open installed file

2007-08-22 Thread John Hancock (HSG)
st 22, 2007 11:42 AM To: wix-users@lists.sourceforge.net; John Hancock (HSG) Subject: RE: [WiX-users] XmlFile failing to open installed file John, Why the double slashes at the beginning of your element names? Just one slash... Julie Campbell [EMAIL PROT

Re: [WiX-users] XmlFile failing to open installed file

2007-08-22 Thread Julie Campbell
John, Why the double slashes at the beginning of your element names? Just one slash... Julie Campbell [EMAIL PROTECTED] -- Message: 3 Date: Wed, 22 Aug 2007 08:33:10 -0700 From: "John Hancock (HSG)" <[EMAIL PROTECTED]> Subject: [WiX-users] XmlFile failing to open

Re: [WiX-users] XmlFile and Votive?

2007-03-26 Thread Chris Bardon
users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile and Votive? Chris Bardon wrote: > The first attempt tells me that the namespace prefix "Util" (upper or > lower case) isn't defined, and the fully qualified example says that > the component element contains an une

Re: [WiX-users] XmlFile and Votive?

2007-03-26 Thread Chris Bardon
on Cc: Bob Arnson; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile and Votive? Are you missing an appropriate /Wix/@xmlns declaration (i.e. xmlns:util='http://schemas.microsoft.com/wix/UtilExtension' ) On 3/26/07, Chris Bardon <[EMAIL PROTECTED]> wrote:

Re: [WiX-users] XmlFile and Votive?

2007-03-26 Thread Simon Dahlbacka
.2420.0. Sounds like it might be a Votive issue then? -Original Message- From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 22, 2007 11:03 AM To: Chris Bardon Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile and Votive? Chris Bardon wrote: > The fir

Re: [WiX-users] XmlFile and Votive?

2007-03-22 Thread Bob Arnson
Chris Bardon wrote: > The first attempt tells me that the namespace prefix "Util" (upper or > lower case) isn't defined, and the fully qualified example says that the > component element contains an unexpected child element. All I did for > the DLL was to reference WixUtilExtension and rebuild-is

Re: [WiX-users] XmlFile and Votive?

2007-03-22 Thread Chris Bardon
as far as I have without this list. Chris From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 21, 2007 11:18 AM To: Chris Bardon Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile and Votive? Chris Bardon wrote: Thanks for

Re: [WiX-users] XmlFile and Votive?

2007-03-21 Thread Bob Arnson
Chris Bardon wrote: Thanks for the heads on up XmlConfig-I'll have to check that out. Doesn't look like it's in the CHM though (although it is on the wiki). Also, adding the reference to WixUtilExtension doesn't seem to resolve the problem-adding an XmlConfig or XmlFile element under a Compon

Re: [WiX-users] XmlFile and Votive?

2007-03-21 Thread Chris Bardon
ers@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile and Votive? Chris Bardon wrote: I tried making some XML file changes in a Votive project, and as expected got "Error CNDL0005: The Component element contains an unexpected child element 'XmlFile'.". For the UI w

Re: [WiX-users] XmlFile and Votive?

2007-03-20 Thread Bob Arnson
Chris Bardon wrote: I tried making some XML file changes in a Votive project, and as expected got "Error CNDL0005: The Component element contains an unexpected child element 'XmlFile'.". For the UI wixlib, I had to reference a DLL in the votive install directory-is there another DLL that I ca

Re: [WiX-users] xmlfile and namespaces

2007-01-19 Thread Rob Mensching
have that anymore. From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; wix-users@lists.sourceforge.net Date: Fri, 19 Jan 2007 09:59:33 -0800 Subject: RE: [WiX-users] xmlfile and namespaces Yeah, there is a bug open I think , that notes the XmlFile us

Re: [WiX-users] xmlfile and namespaces

2007-01-19 Thread Shaun Wilde
om: [EMAIL PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]: Fri, 19 Jan 2007 09:59:33 -0800Subject: RE: [WiX-users] xmlfile and namespaces Yeah, there is a bug open I think , that notes the XmlFile uses the old MSXML. K chose that old MSXML because it is distributed

Re: [WiX-users] xmlfile and namespaces

2007-01-19 Thread Rob Mensching
ilable. I guess this is "least common denominator". Functional, but not ideal. From: Shaun Wilde [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 5:45 AM To: Rob Mensching; Matthew Janulewicz; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] xmlfile and namespaces Hi Rob T

Re: [WiX-users] xmlfile and namespaces

2007-01-19 Thread Shaun Wilde
Hi Rob That tool helps a lot it seems that local-name() is an unknown method - I assume it is using an old flavour of the XML DOM. Shaun From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]: Fri, 19 Jan 2007 01:45:35 -0800Subject: RE: [WiX-users] xmlfile and

Re: [WiX-users] xmlfile and namespaces

2007-01-19 Thread Rob Mensching
Node = xmlDoc.selectSingleNode(WScript.Arguments(1)); if (null == currNode) { WScript.Echo("Nothing found."); } else { WScript.Echo(currNode.text); } } From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Wilde Sent: Friday, January 19, 2007 1:20 AM To:

Re: [WiX-users] xmlfile and namespaces

2007-01-19 Thread Shaun Wilde
it that is causing grief.Shaun Subject: RE: [WiX-users] xmlfile and namespacesDate: Thu, 18 Jan 2007 13:04:03 -0800From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net I’m not totally in tune with xml paths and whatnot, but I hacked through an example and came up

Re: [WiX-users] xmlfile and namespaces

2007-01-18 Thread Matthew Janulewicz
I'm not totally in tune with xml paths and whatnot, but I hacked through an example and came up with this: The escape characters and whatnot are hardly intuitive and it took forever to get it to work, but this is the syntax I use in our installers to change values in our config files. Hope

Re: [WiX-users] XmlFile in WiX 3

2006-12-22 Thread Mike Dimmick
Yes, XmlFile has moved to the Util schema. You need to add a schema declaration to the top of your fragment, e.g.: http://schemas.microsoft.com/wix/2006/wi"; xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";> and prefix uses of XmlFile with util: e.g. . You also need to use the -

Re: [WiX-users] XmlFile element

2006-10-11 Thread Bob Arnson
Joseph Barkley wrote: > I need to parse an xml file that is being installed with my current > project. I'd like to keep the code for the parsing inside of the > component for the xml file, but it simply will not use the [#fileId] > properly. It compiles and runs, but it errors out because it doe

Re: [WiX-users] XmlFile - specification misimplementation

2006-07-06 Thread Rob Mensching
Subject: Re: [WiX-users] XmlFile - specification misimplementation   It appears to me that maybe there is a simple resolution.  When Darren mentioned that he couldn't use the 'last()' function I begin to look at how MSXML implemented the stuff.  It looks like if you just use th

Re: [WiX-users] XmlFile - specification misimplementation

2006-07-06 Thread Darren Kulp
offer no promises.   Thanks again!   From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Wednesday 05 July 2006 18:56 To: Darren Kulp; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] XmlFile - specification misimplementation   1.  The XPath processing is handled by MSXML

Re: [WiX-users] XmlFile - specification misimplementation

2006-07-06 Thread Darren Kulp
your assistance!   From: Michael Cline [mailto:[EMAIL PROTECTED] Sent: Thursday 06 July 2006 7:41 To: Darren Kulp; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlFile - specification misimplementation   It appears to me that maybe there is a simple resolution.  When Darren

  1   2   >