Re: OASIS draft v1.0 XML Conformance Tests

2001-08-31 Thread Jason E. Stewart
"Juergen Hermann" <[EMAIL PROTECTED]> writes: > Hi! > > Does anyone have values (number of violations) for the above tests? > > URL: http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.html So far DOMCount -v=auto: Two tests in oasis/ fail that should have passed: Error a

OASIS draft v1.0 XML Conformance Tests

2001-08-31 Thread Juergen Hermann
Hi! Does anyone have values (number of violations) for the above tests? URL: http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.html Ciao, Jürgen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: void XMLURL::setURL(const XMLCh* const urlText)

2001-08-31 Thread Dean Roddey
You can only set the primary entity (the one you pass in to parse) via an input source. The thing is that the URL class is an OO class and is general purpose and should use exceptions to report errors. What is needed is not to hack up the URL class and make it less desirable, but to provide exter

RE: void XMLURL::setURL(const XMLCh* const urlText)

2001-08-31 Thread Murphy, James
Hmm. I mean external entities like schemas? iif I have: ... with validation on "c:\schemas\foo.xsd" is parsed like a url first and an exceptionis thrown. Are you saying I have set the schema location manually using a LocalFileInputSource? Jim > -Original Message- > From: Dean Rodd

Re: Bug fixes for Validating Parser (Schema)...

2001-08-31 Thread Dean Roddey
I wrote the "algorithm from hell". Its described in a book affectionately known as "The Dragon Book", "Compilers: Principles, Techniques, and Tools". This may not help you, since it still took me quite a while to write that algorithm, which differs slightly from what would be used by a compiler, f

Re: void XMLURL::setURL(const XMLCh* const urlText)

2001-08-31 Thread Dean Roddey
Use LocalFileInputSource to pass in your file names, then the parser won't have to figure it out itself. -- Dean Roddey The Charmed Quark Controller Charmed Quark Software [EMAIL PROTECTED] http://www.charmedquark.com "If it don't have a control port, don't buy it!" ---

Bug fixes for Validating Parser (Schema)...

2001-08-31 Thread Brodeur, Stephen (CT)
Greetings, I've discovered some memory leaks in the Validating Parser package, and have implemented some fixes. There are some remaining leaks, but the torrential leak is now a trickle. Bugzilla is down, so I'll simply submit this fix. If you find that this fix is valid, as I believ

RE: unable to register xerces-com.dll

2001-08-31 Thread Arnold, Curt
Xerces-com.dll requires the appropriate xerces*.dll to be either in the same directory or on the path when registered and when accessed. It also has unnecessary dependencies on wininet.dll and urlmon.dll which are provided by IE 4.0 and later. The other dependencies are standard system DLL's

Reg The Schema Validation Process

2001-08-31 Thread Mohammed Zubair
Hi, I need to know the way the schema validation is currently being taken care of in the Xerces C++implmentation. I know that you can turn on the schema validation feature before the parsing takes place. What i need to know is that once the parse is completed and i have a DOM_tree, then later on

FW: Bugzilla is down, sorry - here's a bug

2001-08-31 Thread Pier Fumagalli
Not Acked... Pier -- Forwarded Message > From: Thomas Schaefer <[EMAIL PROTECTED]> > Organization: Max-Planck-Institut fuer Informatik > Date: Fri, 31 Aug 2001 14:57:28 +0200 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Bugzilla is down, sorry - here's a bug > > Hi, > >

void XMLURL::setURL(const XMLCh* const urlText)

2001-08-31 Thread Murphy, James
I really wish[1] didn't throw an exception when parsing a pathname instead of a url. Just returning false would be better in my view. This creates 6-10 exception per parse for use since we _always_ have file paths not urls for our schema locations. It really muddies up debugging. A couple of

getFullPath() question

2001-08-31 Thread Peter A. Volchek
On NT (Win32PlatformUtils.cpp) the function XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath) returns 0, if failed to get the full path name, on other platforms it throws exception ThrowXML(XMLPlatformUtilsException, XMLExcepts::File_CouldNotGetBasePathNam

RE: unable to register xerces-com.dll

2001-08-31 Thread Adams, David
That is correct. I have used the Xerces-COM/DOM wrapper and that's all it is. Try registering the COM component again, and make sure the Xerces-c_1_5.dll is in your lib path (i.e. system directory). If you still have a problem, post another message. Good luck. > -Original Message- > From

RE: unable to register xerces-com.dll

2001-08-31 Thread Erik Rydgren
Sounds like the xerces_com dll is dependant on some other dll that it can't find during load. My guess is that xerces_com uses the xerces-c_1_5.dll or something like that depending on what version you use of xerces. The xeces_com dll is only a com wrapper for xerces. Regards Erik Rydgren Mandarin

Re: Problems using schema and namespaces

2001-08-31 Thread Alberto Massari
At 04:45 PM 8/30/01 +0200, you wrote: >Hi all, > >I have problems using namespaces and schema together in an application. >To be honest I don't no much about namespaces and schemas yet but have >to learn it. Ok, so what I am looking for is a simple xml-file like >personal-schema.xml and a correspo

Re: Recall Tr: *fatal problems* while trying to run Xerces on AIX43

2001-08-31 Thread Carl_Erhorn
Laurent, Please be patient. You have been bitten by the time differences. Your first post reached the US 2 hours after close of business today, and the more recent one at 3AM. I think most of the Xerces maintainers are asleep ;-) I wish I could help, but I'm not familiar with Xerces enough to k

Recall Tr: *fatal problems* while trying to run Xerces on AIX43

2001-08-31 Thread Laurent PETIT
Since I had no answers on my first attempt, I re-post my previous message. Any answer that should help us will be welcome. Thanks in advance, Laurent PETIT. - Original Message - From: Laurent PETIT <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 1:56 PM Subj

"Document" DOM type

2001-08-31 Thread Brian Quinlan
I found an interesting property of the Xerces DOM: firstChild is NULL for Document objects. The fact that documentElement is a convenience method according to the W3C standard suggests that this behavior is incorrect. Anyone disagree? Cheers, Brian -