XML inbound mapping does not work

0
Dear Mendix community, as we get a response string from the published REST-Service, we can display it. However, wehn we do an import mapping, the created object is empty. Where might be the mistake?      
asked
2 answers
0

So, no object is created, or the attributes are empty? 

Please share the json string as well.. 

answered
0

<Root xmlns:xsi="****" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="****">
  <Head xmlns="">
    <BuildDate>****</BuildDate>
    <Version>2.2.0.0</Version>
    <ComputerName>****</ComputerName>
  </Head>
  <Transaction xmlns="">
    <Result>OK</Result>
    <ErrorText>no error text defined</ErrorText>
    <CurrentError>0</CurrentError>
    <BoType />
    <CurrentField />
    <Text>data processed successfully - </Text>
    <PersUser DmlCommand="I">
      <UserId>****</UserId>
      <UserName>****</UserName>
      <Phone />

 

It is an XML with the following structure –  we get the string back

answered