I am working on a project where a 3rd party has a .NET environment running that is providing REST style services that send and receive XML over HTTP. My side of the project is actually in Java on a separate machine entirely.
I have built the whole Java part of the system assuming that POSTing or PUTing XML docs with a Content Type header equal to "application/xml" would be fine (seeing as it is part of the XML spec and associated RFC!).
Anyway, now the .NET team is saying that it must be text/plain instead otherwise their server will reject the request and they don't seem to be able to or know how to change it.
So, what are the implications of sending XML over HTTP using plain/text as the Content Type? Are there any subtle "gotchas", or is it no big deal?
Thanks