RE: xerces 2.3.0 Win32 static library, possible?

2003-08-29 Thread Maksim Likharev
OK, here what I did, ( VC 7.0 ) 1. New configurations, as Static Library, based on existing Release/Debug 2. new define STATIC_LIB in order to switch off all those #define PLATFORM_EXPORT __declspec(dllexport) #define PLATFORM_IMPORT __declspec(dllimport) in VCPPDefs.hpp ba

DO NOT REPLY [Bug 22821] New: - locale-sensitive function used to validate 'double' type

2003-08-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: xerces 2.3.0 Win32 static library, possible?

2003-08-29 Thread Maksim Likharev
I have compiled static lib successfully ( or it seems that I compiled ), just right now but I do not know what the damage is, have to try it first, but sometimes code meant to be run as DLL ( shared lib ) due to different design specification, it might not be possible. -Original Message

AW: xerces 2.3.0 Win32 static library, possible?

2003-08-29 Thread Matthias Niggemeier
> -Ursprüngliche Nachricht- > Von: Maksim Likharev [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 29. August 2003 20:31 > An: [EMAIL PROTECTED] > Betreff: xerces 2.3.0 Win32 static library, possible? > > > Hi, > I just wondering is there any problems in compiling xerces as static > lib?

Re: xerces 2.3.0 Win32 static library, possible?

2003-08-29 Thread Damian Saura
this is exactly what I'm needing too :) it should be considered to add this on the package, I think if it compile as a static lib the linker will strip all unused code automatically... - Original Message - From: "Maksim Likharev" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, A

xerces 2.3.0 Win32 static library, possible?

2003-08-29 Thread Maksim Likharev
Hi, I just wondering is there any problems in compiling xerces as static lib? I reality I have only application and I just do not want to have another dependency ( dll ). Another very interesting question, if I compile DLL and I want to use let say SAX2 only, is there any simple way how I can excl

RE: Validation with another DTD than specified in XML file

2003-08-29 Thread Adam Heinz
Extend EntityResolver, override resolveEntity() and use pParser->setEntityResolver() Adam Heinz Development Consultant Exstream Software [EMAIL PROTECTED] 317.879.2831 connecting with the eGeneration www.exstream.com -Original Message- From: Andreas B. Thun [mailto:[EMAIL PROTECTED] Sen

RE: Validation with another DTD than specified in XML file

2003-08-29 Thread Agrawal, Vikas (ELS)
nope. You have to create one. -Original Message- From: Andreas B. Thun [mailto:[EMAIL PROTECTED] Sent: 29 August 2003 13:33 To: [EMAIL PROTECTED] Subject: Re: Validation with another DTD than specified in XML file > // EsXml4cDomEntityResolver.h: interface for the EsXml4cDomEntityResolve

Re: Validation with another DTD than specified in XML file

2003-08-29 Thread Andreas B. Thun
// EsXml4cDomEntityResolver.h: interface for the EsXml4cDomEntityResolver class. Is this interface part of the normal XERCES distribution? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

RE: Validation with another DTD than specified in XML file

2003-08-29 Thread Agrawal, Vikas (ELS)
Following code would do what you want EsXml4cDomEntityResolver* entHandler = new EsXml4cDomEntityResolver(); parserInstance_->setEntityResolver(entHandler); // EsXml4cDomEntityResolver.h: interface for the EsXml4cDomEntityResolver class. // ///

Validation with another DTD than specified in XML file

2003-08-29 Thread Andreas B. Thun
Hello! We had this before, but still no solution. Anyone know nows how to override the DTD? Andi Is there a way to force the DOMParser to validate a DTD which is different to the DTD specified in the XML file? ^^^

Re: xerces 2.3.0 Win32 buld VC7

2003-08-29 Thread Gareth Reakes
This is fixed in CVS. Time for this to go in the FAQ I think. Gareth On Thu, 28 Aug 2003, Maksim Likharev wrote: > Hi, > just trying to build binaries and I have linker error, > complains about unresolved copy constructor and assignment operator for > XMemory. > > XMemory(const XMemory&); >

Re: XPointer support

2003-08-29 Thread Gareth Reakes
Hi, the current answer is no. Saying that, my company has a requirement for XPointer. We are using xerces-j at the moment but it may not be fast enough. If it is not then we will port the code. This will definitely not be in the next release though. Gareth On Thu, 28 Aug 2003, Damian S

xerces 2.3.0 Win32 buld VC7

2003-08-29 Thread Maksim Likharev
Hi, just trying to build binaries and I have linker error, complains about unresolved copy constructor and assignment operator for XMemory. XMemory(const XMemory&); XMemory& operator=(const XMemory&); They not implemented, do I missing something here. Thank you. ---

XPointer support

2003-08-29 Thread Damian Saura
do xerces 2.3.0 support XPointer / XLink ? if not, is there any plan to add this ? thanx