I'm trying to upload some documents with metadata through the SharePoint RPC calls. Works great, untill I try to upload a file with an MSG extension; it refuses that for some reason. Are there blocked filetypes when using RPC calls and if so: if there a way to prevent them from being blocked?

link|improve this question

69% accept rate
feedback

2 Answers

Never mind, it was my own fault. The code which uploaded the documents checked for a return message in the service response. That was checking on IndexOf("msg") and thus caused an error when I uploaded my msg message (no error for other document types obviously). Changing to IndexOf("msg=") easily fixed the problem.

Sorry!

link|improve this answer
feedback

Has an administrator added the MSG extension to the target SharePoint Application's blocked-file list?

link|improve this answer
Uploading via explorer view or PUT request does work, so no: I don't think so. But i'll check to be sure. - edit - nope, no block. – Jasper Jan 19 at 10:53
feedback

Your Answer

 
or
required, but never shown

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