Hello Jason,
 

I had a look on the problem you observe in getFirstChild() method and I think it could be a problem of multiple inheritance and dynamic cast :

In Xerces-c-1_7, DOMDocument class inherites only from DOMNode class, so that the static cast always works.

But in Xerces-c-2_0, DOMDocument class inherites from 3 objects : DOMDocumentRange, DOMDocumentTraversal and DOMNode. So the cast of a pointer from this object is now less easy to do. A dynamic cast has to be used to ensure a good conversion.

This problem is explained in SWIG doc1.3 ( http://www.swig.org/Doc1.3/SWIGPlus.html#n19 ).

Do you think it could be the cause of the problem you have ?

Moreover, could you send me the program you use to test the Xerces-p. It would be helpfull for me to be sure we have both the same behaviour.

Cheers,

Fabrice
 

"Jason E. Stewart" wrote:

"Fabrice Landrodie" <[EMAIL PROTECTED]> writes:

> i am new on this list and i am wondering if there is some news about
> the production of xerces-p for Xerces 2.0 ?

Hi, Welcome to the list.

There is a list archive at:

  http://marc.theaimsgroup.com/?l=xerces-p-dev&r=1&w=2

You can look at the short discussion we had last month.

> Have you an idea of the release date ??

If I can get help with the C++ bug, it will be soon. If I can't get
help it won't happen.

Cheers,
jas.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


"Jason E. Stewart" wrote:

"Fabrice Landrodie" <[EMAIL PROTECTED]> writes:

> i am new on this list and i am wondering if there is some news about
> the production of xerces-p for Xerces 2.0 ?

Hi, Welcome to the list.

There is a list archive at:

  http://marc.theaimsgroup.com/?l=xerces-p-dev&r=1&w=2

You can look at the short discussion we had last month.

> Have you an idea of the release date ??

If I can get help with the C++ bug, it will be soon. If I can't get
help it won't happen.

Cheers,
jas.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to