3
我正嘗試使用C++ rest sdk更新露天服務器中文件的內容。我使用露天CMIS網址發送請求。更具體的說,它是Alfresco CMIS瀏覽器綁定。我必須堅持瀏覽器綁定而不是原子綁定。使用C++ REST SDK發送更新文件內容的HTTP POST請求Casablanca
當我發送請求時,它總是更新文件的版本而不是內容。我在請求body.Below發送的內容是我的代碼
void UpdateFileContent()
{
concurrency::streams::basic_istream<unsigned char> fileStream = file_stream<unsigned char>::open_istream("C:\Desktop\Sample.txt").get();
concurrency::streams::stringstreambuf streamBuffer;
fileStream.read_to_end(streamBuffer).get();
std::string textFile = move(streamBuffer.collection());
fileStream.close();
streamBuffer.close();
std::string textBoundary = "--FORMBOUNDARY--";
std::string textBody = "";
textBody += "--" + textBoundary + "\r\n";
textBody += "Content-Disposition:form-data;name=Sample;filename=Sample\r\n";
textBody += "Content-Type: application/octet-stream\r\n\r\n";
textBody +=textFile+"\r\n";
textBody += "--" + textBoundary + "--\r\n";
web::uri_builder builder(U("http://Alfresco-Server:8080/alfresco/api/-default-/public/cmis/versions/1.1/browser/root/Sites/"));
builder.append_path(U("siteName/documentLibrary/FolderName/Sample3.doc"));
builder.append_query(U("alf_ticket"),ticket);
builder.append_query(U("cmisaction"),U("update"));
builder.append_query(U("propertyId[0]"),U("cmis:name"));
builder.append_query(U("propertyValue[0]"),U("SampleFileUpdate"));
http_client client(builder.to_string());
http_request req;
req.set_method(methods::POST);
req.headers().set_content_type(L"multipart/form-data;boundary=--FORMBOUNDARY--");
req.headers().set_content_length(textBody.length());
req.set_body(textBody);
http_response response = client.request(req).get();
std::cout<<response.status_code();
}
相同的代碼適用於上傳新文件,如果我改變cmisaction到createDocument。 請給我一個解決方案更新文件的內容居住在露天throught C++ SDK休息