Add two xml entries with the same name - InstallShield -
i want add 2 entries xml file installshield.
when try it, 1 added entry. there workaround this?
when read tree in left pane xpath query (join levels of tree /
), each element want installshield create must not found. can cause adding predicate looks attribute. alternately can adding 1 based on position(), but, depending on xml file, position() can rather fragile.
in practice, means should replace 1 instance of name add
add[@name='bsentities']
, other whatever name contains (your question doesn't show that), unless of course names same. if are, find else makes them unique. worst case it's matter of position, use, say, add[1]
, add[2]
.
Comments
Post a Comment