xml_inport into namespace 1 #1799
-
@oroulet In a given legacy codebase, I'd like to be able to import an XML into namespace 1, as I have no control over the client. Don't get me wrong, I know this is a bad idea ^^ Is there a (dirty) way to convince asyncua into not creating a namespace 2 upon |
Beta Was this translation helpful? Give feedback.
Answered by
AiyionPrime
Mar 26, 2025
Replies: 1 comment
-
got it. Set the namespace according to the imported xml before importing it. server.tloop.post(server.aio_obj.set_application_uri("my-namespace")
server.import_xml(path=spec_file_path) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AiyionPrime
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
got it. Set the namespace according to the imported xml before importing it.