Re: [WiX-users] Crystal Reports modules not registering files

2007-11-02 Thread Richard.Foster
Pedro,

I'm not sure where (or if) there is a runtime MSI for the original XI
release. There is for XI R2 (typically in C:\Program Files\Business
Objects\Crystal Reports 11.5\Samples\en\CR .NET\.NET 2 Runtime
Setup\CrystalReports11_5_NET_2005.msi for the .NET 2.0 version. There
may be something in a similar location for the original XI release)

My experience has been that new versions generally support older report
files. They also add bulk to the report runtime footprint. :-(

Since CR 2008 is so new, I personally am not planning on migrating to it
at this time - it's just too close to release time to get an acceptable
quantity of testing performed.

Hope this helps,
Regards,
Richard

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pedro
Ferreira
Sent: Thursday, November 01, 2007 3:38 PM
To: Foster, Richard - PAL
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Crystal Reports modules not registering files

Hello Richard, thank you for your help.

I will try to include the SelfRegModules action and test it on a
virtual machine, and see if that solves the problem.

Do you know where can I get the Crystal Reports runtime MSI packages?
We are using  version XI, and in the crystal page, I can only find
MSIs for version 2008. Do you know if newer versions include support
for previous versions? I know this is not wix related, but I can't
seem to find this information on Crystal site, so any help on this
would be highly appreciated.

Best regards,

Pedro Ferreira



* C O N F I D E N T I A L I T Y N O T I C E *
---
The content of this e-mail is intended solely for the use of the individual or 
entity to whom it is addressed. If you have received this communication in 
error, be aware that forwarding it, copying it, or in any way disclosing its 
content to any other person, is strictly prohibited. Quixote Traffic 
Corporation is neither liable for the contents, nor for the proper, complete 
and timely transmission of (the information contained in) this communication. 
If you have received this communication in error, please notify the author by 
replying to this e-mail immediately and delete the material from any computer.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Crystal Reports modules not registering files

2007-11-02 Thread Pedro Ferreira
Hello again.

I had the opportunity to test this on a virtual machine, and including
the SelfRegModules action solved the problem. Now it seems that
everything is being registered.

About the 2008 runtime msi. It doesn't work for me because we're using
the activex viewer from crystal XI and its not present in this
version.

Maybe we should upgrade to Crystal 12 to take advantage of the new
runtime msi, but for now I think I have to stick with these merge
modules.

Thanks again for your help Richard.

Pedro Ferreira

On 11/1/07, Pedro Ferreira <[EMAIL PROTECTED]> wrote:
> Hello Richard, thank you for your help.
>
> I will try to include the SelfRegModules action and test it on a
> virtual machine, and see if that solves the problem.
>
> Do you know where can I get the Crystal Reports runtime MSI packages?
> We are using  version XI, and in the crystal page, I can only find
> MSIs for version 2008. Do you know if newer versions include support
> for previous versions? I know this is not wix related, but I can't
> seem to find this information on Crystal site, so any help on this
> would be highly appreciated.
>
> Best regards,
>
> Pedro Ferreira
>
> On 11/1/07, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Pedro,
> >
> > My first recommendation would be to use a bootstrapper and the Crystal
> > reports runtime MSI file instead of the merge modules. The merge modules
> > are IMHO almost useless, not to mention the fact that if you use WiX 3
> > you'll have to turn off verification because the CR merge modules have
> > so many things that cause ICE warnings.
> >
> > If that is not an option for you, the most likely reason for the problem
> > is that you don't have all the necessary actions in your
> > InstallExecuteSequence. Specifically, at least according to comments in
> > some code I used before switching away from the merge modules, you will
> > need to include the SelfRegModules and SelfUnregModules actions.
> >
> > Good luck!
> > Richard
> >
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Pedro
> > Ferreira
> > Sent: Wednesday, October 31, 2007 8:21 AM
> > To: wix-users@lists.sourceforge.net
> > Subject: [WiX-users] Crystal Reports modules not registering files
> >
> > Hi,
> >
> > I'm fairly new to wix, and I'm trying to deploy the Crystal Reports
> > runtime with my application.
> >
> > I'm inserting the crystal modules as shown here:
> > http://pastebin.com/f286f6c04
> >
> > The problem is that although the Crystal Reports files are copied to
> > the right directories in the target machine, some or most files are
> > not registered.
> >
> > Tried to create a setup project using Visual Studio 2005, and added
> > the modules to the project, and there, everything works fine, with all
> > files being registered. So I think the problem is with my wix source
> > files.
> >
> > Could someone please give me some tips? I'm getting lost here.
> >
> > Thanks,
> >
> > Pedro Ferreira
> >
> > 
> > -
> > This SF.net email is sponsored by: Splunk Inc.
> > Still grepping through log files to find problems?  Stop.
> > Now Search log events and configuration files using AJAX and a browser.
> > Download your FREE copy of Splunk now >> http://get.splunk.com/
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> >
> >
> > * C O N F I D E N T I A L I T Y N O T I C E *
> > ---
> > The content of this e-mail is intended solely for the use of the individual 
> > or entity to whom it is addressed. If you have received this communication 
> > in error, be aware that forwarding it, copying it, or in any way disclosing 
> > its content to any other person, is strictly prohibited. Quixote Traffic 
> > Corporation is neither liable for the contents, nor for the proper, 
> > complete and timely transmission of (the information contained in) this 
> > communication. If you have received this communication in error, please 
> > notify the author by replying to this e-mail immediately and delete the 
> > material from any computer.
> >
> >
> >
> > -
> > This SF.net email is sponsored by: Sp

Re: [WiX-users] Crystal Reports modules not registering files

2007-11-01 Thread Pedro Ferreira
Hello Richard, thank you for your help.

I will try to include the SelfRegModules action and test it on a
virtual machine, and see if that solves the problem.

Do you know where can I get the Crystal Reports runtime MSI packages?
We are using  version XI, and in the crystal page, I can only find
MSIs for version 2008. Do you know if newer versions include support
for previous versions? I know this is not wix related, but I can't
seem to find this information on Crystal site, so any help on this
would be highly appreciated.

Best regards,

Pedro Ferreira

On 11/1/07, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> Pedro,
>
> My first recommendation would be to use a bootstrapper and the Crystal
> reports runtime MSI file instead of the merge modules. The merge modules
> are IMHO almost useless, not to mention the fact that if you use WiX 3
> you'll have to turn off verification because the CR merge modules have
> so many things that cause ICE warnings.
>
> If that is not an option for you, the most likely reason for the problem
> is that you don't have all the necessary actions in your
> InstallExecuteSequence. Specifically, at least according to comments in
> some code I used before switching away from the merge modules, you will
> need to include the SelfRegModules and SelfUnregModules actions.
>
> Good luck!
> Richard
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Pedro
> Ferreira
> Sent: Wednesday, October 31, 2007 8:21 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Crystal Reports modules not registering files
>
> Hi,
>
> I'm fairly new to wix, and I'm trying to deploy the Crystal Reports
> runtime with my application.
>
> I'm inserting the crystal modules as shown here:
> http://pastebin.com/f286f6c04
>
> The problem is that although the Crystal Reports files are copied to
> the right directories in the target machine, some or most files are
> not registered.
>
> Tried to create a setup project using Visual Studio 2005, and added
> the modules to the project, and there, everything works fine, with all
> files being registered. So I think the problem is with my wix source
> files.
>
> Could someone please give me some tips? I'm getting lost here.
>
> Thanks,
>
> Pedro Ferreira
>
> 
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
>
> * C O N F I D E N T I A L I T Y N O T I C E *
> ---
> The content of this e-mail is intended solely for the use of the individual 
> or entity to whom it is addressed. If you have received this communication in 
> error, be aware that forwarding it, copying it, or in any way disclosing its 
> content to any other person, is strictly prohibited. Quixote Traffic 
> Corporation is neither liable for the contents, nor for the proper, complete 
> and timely transmission of (the information contained in) this communication. 
> If you have received this communication in error, please notify the author by 
> replying to this e-mail immediately and delete the material from any computer.
>
>
>
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Crystal Reports modules not registering files

2007-11-01 Thread Richard.Foster
Pedro,

My first recommendation would be to use a bootstrapper and the Crystal
reports runtime MSI file instead of the merge modules. The merge modules
are IMHO almost useless, not to mention the fact that if you use WiX 3
you'll have to turn off verification because the CR merge modules have
so many things that cause ICE warnings.

If that is not an option for you, the most likely reason for the problem
is that you don't have all the necessary actions in your
InstallExecuteSequence. Specifically, at least according to comments in
some code I used before switching away from the merge modules, you will
need to include the SelfRegModules and SelfUnregModules actions.

Good luck!
Richard

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pedro
Ferreira
Sent: Wednesday, October 31, 2007 8:21 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Crystal Reports modules not registering files

Hi,

I'm fairly new to wix, and I'm trying to deploy the Crystal Reports
runtime with my application.

I'm inserting the crystal modules as shown here:
http://pastebin.com/f286f6c04

The problem is that although the Crystal Reports files are copied to
the right directories in the target machine, some or most files are
not registered.

Tried to create a setup project using Visual Studio 2005, and added
the modules to the project, and there, everything works fine, with all
files being registered. So I think the problem is with my wix source
files.

Could someone please give me some tips? I'm getting lost here.

Thanks,

Pedro Ferreira


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



* C O N F I D E N T I A L I T Y N O T I C E *
---
The content of this e-mail is intended solely for the use of the individual or 
entity to whom it is addressed. If you have received this communication in 
error, be aware that forwarding it, copying it, or in any way disclosing its 
content to any other person, is strictly prohibited. Quixote Traffic 
Corporation is neither liable for the contents, nor for the proper, complete 
and timely transmission of (the information contained in) this communication. 
If you have received this communication in error, please notify the author by 
replying to this e-mail immediately and delete the material from any computer.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Crystal Reports modules not registering files

2007-10-31 Thread Pedro Ferreira
Hi,

I'm fairly new to wix, and I'm trying to deploy the Crystal Reports
runtime with my application.

I'm inserting the crystal modules as shown here: http://pastebin.com/f286f6c04

The problem is that although the Crystal Reports files are copied to
the right directories in the target machine, some or most files are
not registered.

Tried to create a setup project using Visual Studio 2005, and added
the modules to the project, and there, everything works fine, with all
files being registered. So I think the problem is with my wix source
files.

Could someone please give me some tips? I'm getting lost here.

Thanks,

Pedro Ferreira

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users