[WiX-users] Digest Authentication in Web Dir Properties

2008-08-22 Thread Ryan Perlman
To All,

Is there another setting to set the Realm property that goes along with Digest 
Authentication on the WebDirProperties Element?  I see DigestAuthentication is 
a 'YesNoType' but I don't see a way to set the Realm that the Digest 
Authentication is suppose to use to authenticate its requests.

Ryan
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] IIS:WebSite Element

2008-07-24 Thread Ryan Perlman
So when using the IP:Port:Header tuple does WIX expect the Custom header Name 
or the Custom Header value or both
Header=": "

??


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching
Sent: Thursday, July 24, 2008 5:31 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] IIS:WebSite Element

WebSites are currently always found by their IP:Port:Header tuple.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Perlman
Sent: Thursday, July 24, 2008 16:46
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] IIS:WebSite Element

The Documentation speculates that a 'Nesting WebSite under Product, Fragment, 
or Module results in a web site "locator" record being created in the 
IIsWebSite table. This means that the web site itself is neither installed nor 
uninstalled by the MSI package. It does make the database available for 
referencing from a WebApplication, WebVirtualDir or WebDir record. This allows 
an MSI to install WebApplications, WebVirtualDirs or WebDirs to already 
existing web sites on the machine. The install will fail if the web site does 
not exist in these cases.'

I am seeing a different result that is really putting a stopper on my msi.  
Below is a wix file with just the Web elements being used.  I have omitted 
other pieces to keep it small.

My main issue is with the WebSite Element not getting a locator to the website 
I am expecting.

http://schemas.microsoft.com/wix/2006/wi";
 xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension";
 xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
  



NOT NEWERVERSIONDETECTED




  Omitted...




  
  

  



  

  




  


Omitted other calls...

  


Ryan
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] IIS:WebSite Element

2008-07-24 Thread Ryan Perlman
The Documentation speculates that a 'Nesting WebSite under Product, Fragment, 
or Module results in a web site "locator" record being created in the 
IIsWebSite table. This means that the web site itself is neither installed nor 
uninstalled by the MSI package. It does make the database available for 
referencing from a WebApplication, WebVirtualDir or WebDir record. This allows 
an MSI to install WebApplications, WebVirtualDirs or WebDirs to already 
existing web sites on the machine. The install will fail if the web site does 
not exist in these cases.'

I am seeing a different result that is really putting a stopper on my msi.  
Below is a wix file with just the Web elements being used.  I have omitted 
other pieces to keep it small.

My main issue is with the WebSite Element not getting a locator to the website 
I am expecting.

http://schemas.microsoft.com/wix/2006/wi";
 xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension";
 xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
  



NOT NEWERVERSIONDETECTED




  Omitted...




  
  

  



  

  




  


Omitted other calls...

  


Ryan
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


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 md5hans
Sent: Monday, June 16, 2008 6:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] XmlFile CreateElement


Hi!

I have a question about manipulating XML-files. I want to create a new
element inside an existing node, after the element is created I want to set
some attributes on it.

My problem is that there already exists elements of the kind I want to add,
how can I make the setValue action work on the new element instead of on of
the existing? (the first one)

My XML-file have the following structure


   
   
   
   


And I want to create a new ChildNode element and set the Name value to "C".




when I try this it adds a new empty ChildNode element and modifies the name
of the "A" childnode. I suppose that it's not so suprisning since I do not
specify which ChildNode element that should be modified...

Should I set the value attribute in createElement and then use that value
(by using a XPath) when identifying the new child node where I want to set
the name attribute? If so, how do I set the Text value when defining a
XPath?

/Hans
--
View this message in context: 
http://www.nabble.com/XmlFile-CreateElement-tp17864933p17864933.html
Sent from the wix-users mailing list archive at Nabble.com.


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Issue with XMLFile in util

2008-06-04 Thread Ryan Perlman
Thanks Rob,

Funny thing is that the we were modifying 2 xml/config files that are part of 
our product and they are Installed and Uninstalled as part of that product and 
it would still fail.

None the less, issue happen and I would be happy to share the Log files with 
you to see if it is something you want to look into.  I still took your advise 
on using the XmlConfig instead and all is working perfectly.  So I would too 
recommend XmlConfig or XmlFile since it does have more flexibility is what you 
can do during install/uninstall.

Ryan

-Original Message-
From: Rob Mensching
Sent: Tuesday, June 03, 2008 5:23 PM
To: General discussion for Windows Installer XML toolset.
Cc: Ryan Perlman
Subject: RE: Issue with XMLFile in util

XmlFile has issues with uninstall.  It really only works at modifying files 
that you install/uninstall as part of your product.  XmlConfig was created to 
handle all those scenarios correctly.  XmlConfig is also a bit more complicated 
to use.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pierson Lee
Sent: Tuesday, June 03, 2008 13:53
To: wix-users@lists.sourceforge.net
Cc: Ryan Perlman
Subject: [WiX-users] Issue with XMLFile in util

We are adding customizable XMLs to our web deployments. One of these 
deployments involve nested V-Dirs under the base IIS site. If we modify the 
web.config in the main V-Dir it will uninstall fine, but if we modify the 
config in the nexted V-Dir, then it fails to uninstall.

After reviewing the uninstall logs, I notice that without the nested V-Dir 
config being modified, the custom action for XMLFile to uninstall is not called 
and the uninstall happens fine. But when I add the config file modification for 
the nested V-Dir, then it fails to uninstall, citing that the custom action 
fails.

Both Config files are modified with each installation.

We're testing on a Windows 2008 server running IIS and the drop version we're 
using is WiX 3.0.4102.


Website
|
|
|-Vdir 1 (working config)
|
|-Vdir 2 (problem config)

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] service fail to install due to networkService account

2008-05-27 Thread Ryan Perlman
To All,

So when I attempted to do this in my service install element I am still getting 
the Failed because of required permissions.  Would it be possible to see a 
complete snippet of this being used?

My ServiceInstall Element is nested under a Component element with a File 
element whose keypath is set to yes.  If I take out the Account attribute all 
is fine and the service is installed as 'Local System', if I leave the Account 
and Password attributes and use a created Service Account all is good and the 
service is installed.

All of these configurations for 'Network Service' have failed though:









Thanks,

Ryan
> Solved. The network service account needs to be specified with its domain.
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Custom Bitmaps

2007-03-14 Thread Ryan Perlman
Thank,  for the previous pointer by Mike Dimmick

For anyone else that may come across this issue:

If you are compiling via the command line you can use the syntax,

-dWixUIBannerBmp=

If you are using this with your MSBuild environments or through the Visual 
Studio *.wixproj you can add the following to your *.wxs file.

Say for instance you wanted to change the dlgbmp, bannrbmp and the License.rtf 
to match your particular brand and agreements.





Again thanks to Bob and Mike

Message from Mike Dimmick
   Follow the rules recently discussed for the license. The 
variables are:

 WixUIBannerBmp
 WixUIDialogBmp
 WixUIExclamationIco
 WixUIInfoIco
 WixUINewIco
 WixUIUpIco

Ryan PerlmanApplications Developer | +1(425) 703-8659 office | +1(206) 
354-0838 mobile | IISBLK\5285
[cid:image001.png@01C7668E.EA366110]<http://www.microsoft.com/windowsvista/default.mspx>

From: Bob Arnson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 14, 2007 8:03 PM
To: Ryan Perlman
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Custom Bitmaps

Ryan Perlman wrote:
Has that changed in v3 or am I doing something wrong.

Yes, it changed. See WiX.chm topic "Using the WixUI dialog library" for details.


--

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


[WiX-users] Custom Bitmaps

2007-03-14 Thread Ryan Perlman
In v2 you used to be able to add custom bitmaps to the Dialogs.

Has that changed in v3 or am I doing something wrong.

I created a Sub-Directory called [Bitmaps] and added my own files for 
bannrbmp.bmp and dlgbmp.bmp.  But when I compile the solution  it doesn't 
override the bitmaps.

Ryan PerlmanApplications Developer | +1(425) 703-8659 office | +1(206) 
354-0838 mobile | IISBLK\5285
[cid:image001.png@01C765D5.82095E80]<http://www.microsoft.com/windowsvista/default.mspx>


-
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] Pre-Processor Directives ??

2007-03-13 Thread Ryan Perlman
NP, great I ended up just defining them myself for now, but can't wait till its 
supported.

Ryan PerlmanApplications Developer | +1(425) 703-8659 office | +1(206) 
354-0838 mobile | IISBLK\5285
[cid:image001.png@01C7658A.3A1E6070]<http://www.microsoft.com/windowsvista/default.mspx>

Sent using Microsoft Office Outlook 2007 / Windows Vista Ultimate

From: Justin Rockwood
Sent: Tuesday, March 13, 2007 4:09 PM
To: Rob Mensching; Ryan Perlman; wix-users@lists.sourceforge.net
Subject: RE: Pre-Processor Directives ??

Yep, I'm "close" to having it back. J For now, you can just define those 
variables yourself and pass them into the command line. If you're using a 
.wixproj with  MSBuild/Votive, then you can define them in the 
 property variable. In Votive, the property pages will give 
you access to that property as well if you prefer to set it via a UI.

Justin

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching
Sent: Tuesday, March 13, 2007 4:06 PM
To: Ryan Perlman; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Pre-Processor Directives ??

Supported in Votive v2, not supported in Votive v3 (although Justin keeps 
telling me he's "close").  I want the feature back too.  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Perlman
Sent: Tuesday, March 13, 2007 3:32 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pre-Processor Directives ??

According to the Documentation that I have found on the net.

If you add a Wix Project to your solution you should be able to get the files 
of the project thru preprocessor Directives such as $(var.MyApp.TargetDir).

But when I do this I get an Error Message stating Undefined Preprocessor 
variable '$(var.MyApp.TargetPath).

Also if this is the syntax how does it handle it if you project was named 
MyApp.UI therefore giving you $(var.MyApp.UI.TargetPath)?

Ryan PerlmanApplications Developer | +1(425) 703-8659 office | +1(206) 
354-0838 mobile | IISBLK\5285
[cid:image001.png@01C7658A.3A1E6070]<http://www.microsoft.com/windowsvista/default.mspx>

Sent using Microsoft Office Outlook 2007 / Windows Vista Ultimate


-
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


[WiX-users] Pre-Processor Directives ??

2007-03-13 Thread Ryan Perlman
According to the Documentation that I have found on the net.

If you add a Wix Project to your solution you should be able to get the files 
of the project thru preprocessor Directives such as $(var.MyApp.TargetDir).

But when I do this I get an Error Message stating Undefined Preprocessor 
variable '$(var.MyApp.TargetPath).

Also if this is the syntax how does it handle it if you project was named 
MyApp.UI therefore giving you $(var.MyApp.UI.TargetPath)?

Ryan PerlmanApplications Developer | +1(425) 703-8659 office | +1(206) 
354-0838 mobile | IISBLK\5285
[cid:image001.png@01C76584.C522A920]<http://www.microsoft.com/windowsvista/default.mspx>

Sent using Microsoft Office Outlook 2007 / Windows Vista Ultimate


-
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