GithubHelp home page GithubHelp logo

Comments (7)

phax avatar phax commented on July 16, 2024

You mean the difference between "cec" and "ext"?
This makes no difference since this "namespace prefix" is only relevant for the "persisted representation" of the XML. When read into memory, both "ext" and "cec" are expanded to "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2" and therefore the DOM trees in memory are identical.

from ph-ubl.

 avatar commented on July 16, 2024

Yeah in memory is using the same namespace, no problem there, but I was wondering why the "persisted representation" (if I understand correctly you mean when the DOM is saved to a XML, the same I tried to say - sorry my english is not too good) it generates the namespace only for this element UBLExtension and doesnt use the namespace already defined with ext in the Invoice node parent, this is what I was expecting ..

<Invoice xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" 
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" 
xmlns:ccts="urn:un:unece:uncefact:documentation:2"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"
....
<ext:UBLExtensions>
<ext:UBLExtension>

but I received :

<Invoice xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" 
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" 
xmlns:ccts="urn:un:unece:uncefact:documentation:2"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"
....
<cec:UBLExtensions xmlns:cec="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2">
<cec:UBLExtension>

from ph-ubl.

phax avatar phax commented on July 16, 2024

The problem is, that the namespace prefixes are lost when reading the DOM. By default UBL20NamespacePrefixMapper.getInstance() is used to provide the namespace prefixes when marshalling (writing) the document back to XML. Would it be okay for you, to provide your own marshaller, so that you can replace "cec" with "ext" or do you want exactly the same prefixes as when the document was read?

from ph-ubl.

phax avatar phax commented on July 16, 2024

Any news from your side?

from ph-ubl.

 avatar commented on July 16, 2024

Hi, I had to change the namespaces manually to what the other endpoint was expecting .

from ph-ubl.

phax avatar phax commented on July 16, 2024

So what shall we do?
Close this issue?
Or provide a custom namespace-prefix-mapper?

from ph-ubl.

ssdf34 avatar ssdf34 commented on July 16, 2024

Hi Mr. Philip

How I can replace "cec" with "ext"?

from ph-ubl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.