Re: [WiX-users] XmlFile and Votive?
I'm using the latest 3.0 build from the website. The version of the WixUtilExtension.dll is 3.0.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 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 there > another line I need to add to the wix source to include the schema > extensions (similar to a using directive or an #include)? > It definitely needs to be "util." I'm not that familiar with Votive, but I believe that's how it should work. Which version of WiX are you using? -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
Re: [WiX-users] XmlFile and Votive?
OK, that was it. I knew it was something dumb that I forgot. Didn't know you could define multiple namespaces for an XML file like that :) Thanks guys! From: Simon Dahlbacka [mailto:[EMAIL PROTECTED] Sent: Monday, March 26, 2007 9:45 AM To: Chris Bardon 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: I'm using the latest 3.0 build from the website. The version of the WixUtilExtension.dll is 3.0.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 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 there > another line I need to add to the wix source to include the schema > extensions (similar to a using directive or an #include)? > It definitely needs to be "util." I'm not that familiar with Votive, but I believe that's how it should work. Which version of WiX are you using? -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE V ___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
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: I'm using the latest 3.0 build from the website. The version of the WixUtilExtension.dll is 3.0.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 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 there > another line I need to add to the wix source to include the schema > extensions (similar to a using directive or an #include)? > It definitely needs to be "util." I'm not that familiar with Votive, but I believe that's how it should work. Which version of WiX are you using? -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
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 unexpected child element. All I did for > the DLL was to reference WixUtilExtension and rebuild-is there another > line I need to add to the wix source to include the schema extensions > (similar to a using directive or an #include)? > It definitely needs to be "util." I'm not that familiar with Votive, but I believe that's how it should work. Which version of WiX are you using? -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
Re: [WiX-users] XmlFile and Votive?
You know what, I checked again and it looks like I was looking at the v2 .chm. That would probably explain why it wasn't there :) I tried referring to util:XmlConfig though, and I'm still getting errors from Candle. I tried both your suggestion and a fully qualified example (empty, I know, but I'm just trying to get by the first level of errors): 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 there another line I need to add to the wix source to include the schema extensions (similar to a using directive or an #include)? Thanks again for all your help though-I wouldn't have made it near 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 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 Component still comes up with the same errors. Is it possible that these were removed from the util DLL in the version of Votive that's up on Sourceforge? XmlConfig is in WiX.chm for the latest v3 release. You'll need to use util:XmlConfig to refer to the WixUtilExtension namespace. -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
Re: [WiX-users] XmlFile and Votive?
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 Component still comes up with the same errors. Is it possible that these were removed from the util DLL in the version of Votive that's up on Sourceforge? XmlConfig is in WiX.chm for the latest v3 release. You'll need to use util:XmlConfig to refer to the WixUtilExtension namespace. -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
Re: [WiX-users] XmlFile and Votive?
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 Component still comes up with the same errors. Is it possible that these were removed from the util DLL in the version of Votive that's up on Sourceforge? From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 20, 2007 4:52 PM To: Chris Bardon Cc: wix-users@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 wixlib, I had to reference a DLL in the votive install directory-is there another DLL that I can reference for the XML custom action, or will I need to get the wixlib to all of my developers independent of the votive MSI? Yes, you need WixUtilExtension. However, you should switch to XmlConfig, as it fixes several issues with XmlFile. -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users
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 wixlib, I had to reference a DLL in the votive install directory-is there another DLL that I can reference for the XML custom action, or will I need to get the wixlib to all of my developers independent of the votive MSI? Yes, you need WixUtilExtension. However, you should switch to XmlConfig, as it fixes several issues with XmlFile. -- sig://boB http://bobs.org - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users