0

I am trying to import a file having the symbol @ into Weblogic server MDS. While importing, looks like the parser is not able to parse @, and throws an error.

Is there any escape character (like & for &), using which I can make use of the symbol @ in XML?

kjhughes
  • 106,133
  • 27
  • 181
  • 240

1 Answers1

0

@ can appear as any other character in an XML file; it is not like, say & that must be presented as &, for example, when not used to introduce an entity name.

It is possible that you've placed it somewhere it's not allowed. For example, it cannot be used in an element name.

kjhughes
  • 106,133
  • 27
  • 181
  • 240