My Email address

4 Messages Forum Options Options
Embed this topic
Permalink
Kalvagadda, SivaKrishna (MLX Technology)
My Email address
Reply Threaded MoreMore options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
My Email address


Regards,
SivaKrishna Kalvagadda,
201-671-5552.


This message w/attachments (message) may be privileged, confidential or proprietary, and if you are not an intended recipient, please notify the sender, do not use or share it and delete it. Unless specifically indicated, this message is not an offer to sell or a solicitation of any investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Merrill Lynch. Subject to applicable law, Merrill Lynch may monitor, review and retain e-communications (EC) traveling through its networks/systems. The laws of the country of each sender/recipient may impact the handling of EC, and EC may be archived, supervised and produced in countries other than the country in which you are located. This message cannot be guaranteed to be secure or error-free. This message is subject to terms available at the following link: http://www.ml.com/e-communications_terms/. By messaging with Merrill Lynch you consent to the foregoing.

 

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
WiX-devs mailing list
WiX-devs@...
https://lists.sourceforge.net/lists/listinfo/wix-devs
Kalvagadda, SivaKrishna (MLX Technology)
Re: My Email address
Reply Threaded MoreMore options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
My Email address

Hi,

I am facing problem with using the Wix v3.

I am trying to create an website using msi installation. When I use below tags for setting up the Virtual directory on IIS.

<Component Id="C_shipmentsavewsdir" Guid="493E3487-AA4C-4476-8CC0-4B1C763AF6F7">

<WebVirtualDir Id="ShipmentSaveWSDir" Alias="ShipmentSaveWS" Directory="InstallDir" WebSite="DefaultWebSite">

<WebApplication Id="ShipmentSaveWS" Name="ShipmentSaveWS" />

</WebVirtualDir>

</Component>

<WebSite Id="DefaultWebSite" Description="Default Web Site">

<WebAddress Id="AllUnassigned" Port="80" />

</WebSite>

 

I am using VS2005 to do above when I am trying to build the project its throwing below errors..

1. The Component element contains an unexpected child element 'WebVirtualDir'.

2. The Product element contains an unexpected child element 'WebSite'.

Do I need to reference any dlls to get rid of this errors. Please help me on this. I couldn’t find any help from the blogs.

 

Regards,
SivaKrishna Kalvagadda,
201-671-5552.

 


From: wix-devs-bounces@... [mailto:wix-devs-bounces@...] On Behalf Of Kalvagadda, SivaKrishna (GMIT-TASS)
Sent: Monday, July 07, 2008 11:31 AM
To: wix-devs@...
Subject: [WiX-devs] My Email address



Regards,
SivaKrishna Kalvagadda,
201-671-5552.


This message w/attachments (message) may be privileged, confidential or proprietary, and if you are not an intended recipient, please notify the sender, do not use or share it and delete it. Unless specifically indicated, this message is not an offer to sell or a solicitation of any investment products or other financial product or service, an official confirmation of any transaction, or an official statement of Merrill Lynch. Subject to applicable law, Merrill Lynch may monitor, review and retain e-communications (EC) traveling through its networks/systems. The laws of the country of each sender/recipient may impact the handling of EC, and EC may be archived, supervised and produced in countries other than the country in which you are located. This message cannot be guaranteed to be secure or error-free. This message is subject to terms available at the following link: http://www.ml.com/e-communications_terms/. By messaging with Merrill Lynch you consent to the foregoing.

 

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
WiX-devs mailing list
WiX-devs@...
https://lists.sourceforge.net/lists/listinfo/wix-devs
Bob Arnson-6
Re: My Email address
Reply Threaded MoreMore options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
Kalvagadda, SivaKrishna (GMIT-TASS) wrote:
My Email address

1. The Component element contains an unexpected child element 'WebVirtualDir'.

2. The Product element contains an unexpected child element 'WebSite'.

Do I need to reference any dlls to get rid of this errors. Please help me on this. I couldn’t find any help from the blogs.


In the future, please send usage questions to wix-users, not wix-devs. You need to

1. Reference WixIISExtension.dll in your project.
2. Use the IIS namespace: xmlns="http://schemas.microsoft.com/wix/IIsExtension"

-- 
sig://boB
http://joyofsetup.com/

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
WiX-devs mailing list
WiX-devs@...
https://lists.sourceforge.net/lists/listinfo/wix-devs
jmcfadyen
Re: My Email address
Reply Threaded MoreMore options
Print post
Permalink
In reply to this post by Kalvagadda, SivaKrishna (MLX Technology)
try this ..


<Component Id="C_blah" Guid="{????????-????-????-????-????????????}" >
  <WebSite Id="DefaultWebSite" Description="Default Web Site">
     <WebAddress Id="AllUnassigned" Port="80" />
  </WebSite>
</Component>

<Component Id="C_shipmentsavewsdir" Guid="493E3487-AA4C-4476-8CC0-4B1C763AF6F7">

  <WebVirtualDir Id="ShipmentSaveWSDir"
                      Alias="ShipmentSaveWS"
                      Directory="InstallDir"
                      WebSite="DefaultWebSite"
                      WebApplication="xxxx"
                       DirProperties="xxx">
  </WebVirtualDir>
</Component>

<WebApplication Id="ShipmentSaveWS" Name="ShipmentSaveWS" />

</WebVirtualDir>

</Component>

Kalvagadda, SivaKrishna (GMIT-TASS) wrote:
Hi,

I am facing problem with using the Wix v3.

I am trying to create an website using msi installation. When I use
below tags for setting up the Virtual directory on IIS.

<Component Id="C_shipmentsavewsdir"
Guid="493E3487-AA4C-4476-8CC0-4B1C763AF6F7">

<WebVirtualDir Id="ShipmentSaveWSDir" Alias="ShipmentSaveWS"
Directory="InstallDir" WebSite="DefaultWebSite">

<WebApplication Id="ShipmentSaveWS" Name="ShipmentSaveWS" />

</WebVirtualDir>

</Component>

<WebSite Id="DefaultWebSite" Description="Default Web Site">

<WebAddress Id="AllUnassigned" Port="80" />

</WebSite>

 

I am using VS2005 to do above when I am trying to build the project its
throwing below errors..

1. The Component element contains an unexpected child element
'WebVirtualDir'.

2. The Product element contains an unexpected child element 'WebSite'.

Do I need to reference any dlls to get rid of this errors. Please help
me on this. I couldn't find any help from the blogs.

 

Regards,
SivaKrishna Kalvagadda,
201-671-5552.

 


________________________________

        From: wix-devs-bounces@lists.sourceforge.net
[mailto:wix-devs-bounces@lists.sourceforge.net] On Behalf Of Kalvagadda,
SivaKrishna (GMIT-TASS)
        Sent: Monday, July 07, 2008 11:31 AM
        To: wix-devs@lists.sourceforge.net
        Subject: [WiX-devs] My Email address
       
       



        Regards,
        SivaKrishna Kalvagadda,
        201-671-5552.

________________________________

        This message w/attachments (message) may be privileged,
confidential or proprietary, and if you are not an intended recipient,
please notify the sender, do not use or share it and delete it. Unless
specifically indicated, this message is not an offer to sell or a
solicitation of any investment products or other financial product or
service, an official confirmation of any transaction, or an official
statement of Merrill Lynch. Subject to applicable law, Merrill Lynch may
monitor, review and retain e-communications (EC) traveling through its
networks/systems. The laws of the country of each sender/recipient may
impact the handling of EC, and EC may be archived, supervised and
produced in countries other than the country in which you are located.
This message cannot be guaranteed to be secure or error-free. This
message is subject to terms available at the following link:
http://www.ml.com/e-communications_terms/. By messaging with Merrill
Lynch you consent to the foregoing.
________________________________

         


-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs