我正在尝试使用指定的模板上传媒体项目(图像),以便我可以利用该项目的一些额外字段属性。但是,图像会上传并仍继续使用默认图像模板。 Fiddler也没有显示任何错误。
我做错了什么?有什么建议?这是代码片段:
public void PostPicture(string itemName, Guid parentId, string databaseName, Stream fileStream, string fileExtension)
{
string url = String.Format("{0}/-/item/v1?", this.Host.TrimEnd('/'));
string imageTemplate = "{0E49E3DF-69C2-4F4B-9513-F078EA0013B2}";
url += String.Format("name={0}&template={1}&sc_itemid={2}&sc_database={3}&payload=content&language=en"
, HttpUtility.UrlEncode(itemName)
, HttpUtility.UrlEncode(imageTemplate)
, HttpUtility.UrlEncode(parentId.ToString())
, HttpUtility.UrlEncode(databaseName));
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.KeepAlive = true;
request.Headers.Add("X-Scitemwebapi-Username", this.Username);
request.Headers.Add("X-Scitemwebapi-Password", this.Password);
request.Method = "POST";
request.ServicePoint.Expect100Continue = false;
string boundary = "---------------------------" + DateTime.Now.ToString("yyyyMMddHHmmssfff", System.Globalization.CultureInfo.InvariantCulture);
byte[] boundaryBytes = System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");
request.ContentType = "multipart/form-data; boundary=" + boundary;
using (Stream stream = request.GetRequestStream())
{
stream.Write(boundaryBytes, 0, boundaryBytes.Length);
string header = "Content-Disposition: form-data; name=\"file\"; filename=\"" + itemName + fileExtension + "\"\r\nContent-Type: multipart/form-data\r\n\r\n";
byte[] bytes = System.Text.Encoding.UTF8.GetBytes(header);
stream.Write(bytes, 0, bytes.Length);
byte[] buffer = new byte[32768];
int bytesRead;
if (stream != null)
{
while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
{
stream.Write(buffer, 0, bytesRead);
}
}
byte[] end = System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n");
stream.Write(end, 0, end.Length);
stream.Close();
}
var response = (HttpWebResponse)request.GetResponse();
}
}
答案 0 :(得分:0)
一种可能的方法是更改" sharedTemplate"和/或" versionedTemplate" " mediaTypes"中的设置Web.config文件的节点。您将找到各种类型的媒体文件和图像的条目(例如:png,bmp,jpg),您应该更改所有必要文件类型的默认模板。
这是我在该主题上写的一篇文章,它将向您展示如何在自定义配置文件中而不是直接在Web.config文件中进行更改的示例。 https://sitecorecontextitem.wordpress.com/2012/12/12/custom-image-templates-in-sitecore/
答案 1 :(得分:0)
Sitecore项目WebAPI不允许在创建新媒体项目时指定模板。它使用MediaCreator.CreateFromStream
方法,只需要3个参数:
MediaManager.Creator.CreateFromStream(inputStream, filePath, options);
...
public virtual Item CreateFromStream(Stream stream, string filePath, MediaCreatorOptions options);
并且它们都不允许您定义自定义模板。