Re: [WiX-users] File not found?

2007-04-17 Thread Alex Steen
Thanks Richard.

SchedulingServicesCAB.CAB is a poor name to use because that is actually
a folder name and not a CAB file name (it's the folder that I extracted
the files in the original CAB file to, but I need to change that name).
It looks like the whole problem is fixed if I add a \ to the end of the
source line (I guess it was looking for a cab file, but if I have
SchedulingServicesCAB.CAB\ it looks for the folder).

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 17, 2007 7:22 AM
To: Alex Steen; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] File not found?

Just to make sure I understand

The code as you have written it will be attempting to take the source
file c:\CabFilesInstaller\SchedulingServicesCAB.CAB, and use it for both
the installed file with long name ConfigurationService.svc and
DataListService.svc. Is this really what you want, or is it your
intention that the two files named above are included in the
installation and placed within the SchedulingServicesCAB cab file?

Per the WiX help, the Source element is optional and specifies the path
to the file. It is most likely that, since you say the files in question
are present in the same folder and have the correct name, you do not
need the Source element at all. If you do, it should be pointing at the
source location for ConfigurationService.svc and DataListService.svc not
the CAB file that will eventually contain them.

Hope this helps,
Regards,
Richard

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of JCWrs
Sent: Monday, April 16, 2007 5:57 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] File not found?


I have these two lines for my files: 

 


The 2 files are present in the Source directory named exactly what the 
long name specifies.  I get this error message: 

The file with id 'Co0' and name 'Configur.svc|ConfigurationService.svc' 
could not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 
The file with id 'Da1' and name 'DataList.svc|DataListService.svc' could

not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 

Is the Id a problem?  What am I doing wrong? 

-- 

Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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. Peek 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 DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] File not found?

2007-04-17 Thread Richard.Foster
Just to make sure I understand

The code as you have written it will be attempting to take the source
file c:\CabFilesInstaller\SchedulingServicesCAB.CAB, and use it for both
the installed file with long name ConfigurationService.svc and
DataListService.svc. Is this really what you want, or is it your
intention that the two files named above are included in the
installation and placed within the SchedulingServicesCAB cab file?

Per the WiX help, the Source element is optional and specifies the path
to the file. It is most likely that, since you say the files in question
are present in the same folder and have the correct name, you do not
need the Source element at all. If you do, it should be pointing at the
source location for ConfigurationService.svc and DataListService.svc not
the CAB file that will eventually contain them.

Hope this helps,
Regards,
Richard

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of JCWrs
Sent: Monday, April 16, 2007 5:57 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] File not found?


I have these two lines for my files: 

 


The 2 files are present in the Source directory named exactly what the 
long name specifies.  I get this error message: 

The file with id 'Co0' and name 'Configur.svc|ConfigurationService.svc' 
could not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 
The file with id 'Da1' and name 'DataList.svc|DataListService.svc' could

not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 

Is the Id a problem?  What am I doing wrong? 

-- 

Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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. Peek 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 DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] File not found?

2007-04-16 Thread JCWrs

I have these two lines for my files: 

 


The 2 files are present in the Source directory named exactly what the 
long name specifies.  I get this error message: 

The file with id 'Co0' and name 'Configur.svc|ConfigurationService.svc' 
could not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 
The file with id 'Da1' and name 'DataList.svc|DataListService.svc' could 
not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 

Is the Id a problem?  What am I doing wrong? 

-- 
View this message in context: 
http://www.nabble.com/File-not-found--tf3587498.html#a10025512
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users