You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-users@xalan.apache.org by Ellonnic2 <da...@siemens.com> on 2009/09/09 18:46:59 UTC

Re: Windows - samples fail on "transform(...)" when using "cout"

Hi Dave,

Thanks so much for your reply.  I think I'm 98% of the way there.  I just
have one minor issue.  Once I have everything seemingly set up correctly,
when I build, I get the following:

"Cannot open include file: 'LocalMsgIndex.hpp': No such file or directory"
and then lots of 
"fatal error C1083: Cannot open include file: 'LocalMsgIndex.hpp': No such
file or directory"

Now, I understand that there is a FAQ for the "Missing LocalMsgIndex.hpp
file", however, this seemingly only tells me that this file should have been
generated.  Does this error force me to now have to build with ICU support? 
When I changed the target from "Debug with ICU" to "Debug", it had no
effect.

Changing topics, on the Xalan download site
("http://xml.apache.org/xalan-c/download.html"), I do not see any Macintosh
information, but the source code has a "c\Projects\MacOS" directory.  Which
OSes does the most recent source code support that is not on the site's
list?
-- 
View this message in context: http://www.nabble.com/Windows---samples-fail-on-%22transform%28...%29%22-when-using-%22cout%22-tp25192539p25368970.html
Sent from the Xalan - C - Users mailing list archive at Nabble.com.


Re: Windows - samples fail on "transform(...)" when using "cout"

Posted by David Bertoni <db...@apache.org>.
Ellonnic2 wrote:
> Hi Dave,
> 
> Thanks so much for your reply.  I think I'm 98% of the way there.  I just
> have one minor issue.  Once I have everything seemingly set up correctly,
> when I build, I get the following:
> 
> "Cannot open include file: 'LocalMsgIndex.hpp': No such file or directory"
> and then lots of 
> "fatal error C1083: Cannot open include file: 'LocalMsgIndex.hpp': No such
> file or directory"
This usually occurs because the Xerces-C DLL cannot be located, so the 
message generation utility can't execute.  Please make sure the Xerces-C 
directories that contain the debug and release Xerces-C DLLs are on your 
path. Alternatively, you can copy those binaries to the appropriate 
Xalan-C output directories. To do this, I usually just build the 
MsgCreator project for the configurations I'm interested in, then copy 
the appropriate binaries into the resulting output directories under the 
Build directory.  Remember to copy the release DLL to any release 
configuration output directories and the debug DLL to any debug 
configuration output directories.

> Now, I understand that there is a FAQ for the "Missing LocalMsgIndex.hpp
> file", however, this seemingly only tells me that this file should have been
> generated.  Does this error force me to now have to build with ICU support? 
> When I changed the target from "Debug with ICU" to "Debug", it had no
> effect.
That won't fix the problem, since the issue is you're missing the 
Xerces-C DLLs.

> Changing topics, on the Xalan download site
> ("http://xml.apache.org/xalan-c/download.html"), I do not see any Macintosh
> information, but the source code has a "c\Projects\MacOS" directory.  Which
> OSes does the most recent source code support that is not on the site's
> list?
That configuration has not been maintained for many years, and in fact, 
it's project files for Apple's ProjectBuilder IDE, which is no longer 
being developed.

Dave