Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to load the following xml in below and then replace the tokens wrapped in {} with the appropriate values, but I noticed that it complains that {} is an invalid character. Should I just load it as a regular text file? or is there a more simple way to do this?

<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope {NAMESPACES}>
  <soapenv:Header>
      <From>
        <SystemId>{FROM_SYSTEM_ID}</SystemId>
        <Credential>
          <userName>{USERNAME}</userName>
          <password>{PASSWORD}</password>
        </Credential>
        <SourceId />
      </From>
      <To>
        <Address>{ADDRESS}</Address>
      </To>
      <timeStamp>{TIME_STAMP}</timeStamp>
      <echoToken>{ECHO_TOKEN}</echoToken>
      <action>{ACTION}</action>
      <transactionId>{TRANSACTION_ID}</transactionId>
  </soapenv:Header>
  <soapenv:Body>
    {BODY}
  </soapenv:Body>
</soapenv:Envelope>

I believe the {} is only invalid for attributes, but for it is fine for the inner xml of elements.

share|improve this question
What platform? Java? Besides, {} is not part of XML, so use it where you want. – John Saunders Oct 14 '11 at 14:39
.NET. I know it is not a part of xml, that is what I already said in my message. Is there something I can use beisdes the {} that would be valid if I load it as an xml document or should I just load it as a plain text document. – Xaisoft Oct 14 '11 at 14:51
Which version of .NET, and I why do you think {} is ever invalid? Is there a particular exception you received when you tried to load that XML? – John Saunders Oct 14 '11 at 14:53
I ran XElement.Parse on the message and it gave the error: Name cannot begin with the '{' character. It was complaining about the {NAMESPACES}, but it is fine for the elements. I am looking for a proper place holder for attributes. – Xaisoft Oct 14 '11 at 15:02
It's not a problem for attributes. It's a problem for your {NAMESPACES} placeholder because it's just sitting up there. You would need a syntax like xmlns="{NAMESPACES}" and just replace the entire "attribute" with the set of namespaces. – John Saunders Oct 14 '11 at 15:08
show 4 more comments

1 Answer

up vote 1 down vote accepted

{} is not a problem in attributes. It is a problem for your {NAMESPACES} placeholder because it's just sitting there where an attribute name was expected.

I suggest that you use a syntax like xmlns="{NAMESPACES}". This should get past most XML parsers (at least, those who don't validate that a namespace should be a URI).

However, you would need to treat this as a special case. When you see this string, replace the entire string with your list of namespaces. If you have no namespaces, then you would just remove the string. Otherwise, replace it with your entire list of namespace declarations.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.