4

这是一个菜鸟问题,但我正在搜索一段时间,但找不到任何有用的信息。

我需要开发一个 rotine(控制台应用程序),它将读取和写入内容到 umbraco 站点。我已经读过您可以使用 Web 表单和 mvc 应用程序来做到这一点。

但我需要像使用外部资源一样使用 umbraco。我需要像处理 Word 文档那样做一些事情。例如:打开文件,读取文件,写一些东西并保存。

我已经使用 PM> Install-Package UmbracoCms -Pre 安装了 API

我已经读过的一些东西:http: //nishantwork.wordpress.com/2012/09/27/umbraco-create-custom-content-node-in-umbraco-by-c/ https://github.com/ sitereactor/umbraco-console-example

实现这一目标的最佳方法是什么?我不知道具体该怎么做...

4

2 回答 2

3

您可以创建一个 Umbraco 节点(文档)、写入它并从控制台应用程序保存它。Umbraco 基本上是一堆 .Net 库:

//Get the type you would like to use by its alias and the user who should be the creator of the document 
DocumentType dt = DocumentType.GetByAlias("Textpage"); 
User author = User.GetUser(0); 

//create a document with a name, a type, an umbraco user, and the ID of the document's parent page. To create a document at the root of umbraco, use the id -1 

Document doc = Document.MakeNew("My new document", dt, author, 1018); 

// Get the properties you wish to modify by it's alias and set their value
doc.getProperty("bodyText").Value = "<p>Your body text</p>";
doc.getProperty("articleDate").Value = DateTime.Now;

//after creating the document, prepare it for publishing 

doc.Publish(author);

//Tell umbraco to publish the document
umbraco.library.UpdateDocumentCache(doc.Id);

看:

http://our.umbraco.org/wiki/reference/api-cheatsheet/creating-a-document http://our.umbraco.org/wiki/reference/api-cheatsheet/modifying-document-properties

于 2013-05-12T13:06:12.590 回答
2

只是为了帮助任何有同样问题的人。我在 umbraco 中找到了一个网络服务,我目前正在使用它(直到现在仅用于阅读信息,但据我所知,我们也可以编写信息)。虽然文档很少,但易于使用。但是要使用它,您需要 <webservices enabled="False">在 umbracoSettings.config 中进行设置。该文件位于 umbraco 内的 Config 文件夹中。我们还必须在 webservices 节点中设置用户权限,以允许用户使用 web 服务

DocumentServiceReference.documentServiceSoapClient client = new DocumentServiceReference.documentServiceSoapClient();
client.WebservicesEnabled();
DocumentServiceReference.ArrayOfDocumentCarrier documents = client.readList(parentId, username, password);

foreach (DocumentServiceReference.documentCarrier doc in documents)
{
    DocumentServiceReference.ArrayOfDocumentProperty properties = doc.DocumentProperties;
    foreach (DocumentServiceReference.documentProperty property in properties)
    {
        string key = property.Key;
        string value = property.PropertyValue.ToString();
    }
}
于 2013-05-20T13:26:59.663 回答