Hello,
I want to create entries in a public Contact folder from a SAP system (with ABAP) with the REST API. The problem is: I always get a "M00015 unsupported content-type' error. I set the header field 'content-type' correctly with 'application/scalix-properties', but SAP automagicaly adds "; charset=utf-8" to the content-type header line. And it seems, that scalix doesn't recognize the content type when the charset-declaration is added. I verified this with 'wget' from the command line: if I start wget with the option '--header "Content-Type: applicaton/scalix-properties"' it works, if I start wget with '--header "Content-Type: application/scalix-properties; charset=utf-8"' it doesn't.
Is there a way to say scalix/tomcat to ignore the "; charset=utf-8" append the the content-type header line? I coudn't find a way to solve this problem on the SAP side, so I hope I can solve this on the Scalix side..
Walter