xsd - Informatica XML - Skip Default Namespace -
i have xml created through informatica xml target created based on xsd
the elements , attributes getting created without qualified namespace since there no qualified namespace in xsd
question, how can skip default namespace placed in xml file in rootelement section when creating xml file xml getting created
<?xml version="1.0" encoding="utf-8"?> < rootelement xmlns:xs="http://www.w3.org/2001/xmlschema-instance > . . <\rootelememnt>
expected below
<?xml version="1.0" encoding="utf-8"?> < rootelement> . . <\rootelememnt>
kindly me , there solution or request target system ignore default namespace, file getting loaded when remove default ns line
curious thing is, when try create sample xml file xml editor , not seeing content
i tried check in or check out no name space option in xml editor - informatica
your actual , expected xml equivalent (for as you've shown us). rootelement
in both cases in no namespace.
your actual xml not have default namespace; has namespace prefix declaration. if had default namespace of, say, http://www.example.com/something
instead this:
<rootelement xmlns="http://www.example.com/something">
an unused namespace prefix declaration innocuous.
Comments
Post a Comment