I'm having an issue with a specification change outside of my environment. We have an application that sends SOAP messages, and the message ID is a Unique ID that we generate on every new message.
The message ID appears as urn:uuid:########
The problem is that the receiving side no longer accepts message ids with the prefixed "urn:uuid"
How can I remove that prefix before or after setting that as the messageID?
soapMessage.Headers.MessageId = new UniqueID();– atatko May 26 '11 at 14:52UniqueId? – John Saunders May 26 '11 at 14:53System.XML.UniqueID– atatko May 26 '11 at 14:54Guid guID = new Guid(); UniqueId unID = new UniqueId(guID.ToString()); soapMessage.Headers.MessageId = unID;Better solutions would still be helpful, but I think this is passable. – atatko May 26 '11 at 15:12