cancel
Showing results for 
Search instead for 
Did you mean: 

xml file manipulation using XI file adapter

Former Member
0 Kudos

my requirement is to change an attribute value in an xml file using XI.

example

<County InternalID="24581" Action="None">

should be changed to

<County InternalID="24581" Action="Insert">

I have used Adapter specific attributes to get thesame file name, which is looking at the target folder,

but the problem is

once it reached the target foelder

it looks like this

<ns0:County InternalID="24581" Action="Insert">

I donot need ns0:

Any thoughts please.

Accepted Solutions (1)

Accepted Solutions (1)

MichalKrawczyk
Active Contributor
0 Kudos

hi,

remove the namespace from the message type that you use

as output message interface

then it will work

Regards,

Michal Krawczyk

Former Member
0 Kudos

I have single xsd which I uploaded as External defintion, with names ED_source and ED_target in Repository

after that directly I created Message interfaces( no Message Type, no DataType)

I tried to remove namespace in repository, do I need to remove name space in the XSD itself and then upload it in repository.

Former Member
0 Kudos

can some body advise please

Former Member
0 Kudos

Thank You Michael, I have uploaded the xsd by removing xmlns: and targetNamespace

it worked.

Answers (0)