我遇到了一个用Visual Studio编写的自定义审批工作流程的问题。它使用自定义内容类型创建批准任务。我在sharepoint企业环境中开发了工作流,但客户端正在尝试在基础服务器上运行它。我遇到的问题是将内容类型分配给任务列表。无论何时运行工作流,我都无法编辑列表项或更新任务项。只要从任务列表中删除内容类型,我就可以查看和编辑所有记录。我在日志中得到以下事件:
System.NullReferenceException:未将对象引用设置为实例 一个对象。在 Microsoft.SharePoint.Publishing.CachedListItem.GetWorkflowInfo(SPListItem 项目)在Microsoft.SharePoint.Publishing.CachedListItem
为了使它更有趣,我能够在未分配内容类型时运行工作流并创建批准任务,然后在内容类型中添加,然后成功编辑和更新两个记录。
还有一些代码......这是我用内容类型方法创建的任务:
private void createTaskWithContentType1_MethodInvoking(object sender, EventArgs e)
{
//set the primary approval task as not completed
this.primaryApprovalTaskCompleted = false;
//get the primary approver
var field = workflowProperties.Item.Fields.GetField("primaryApprover") as SPFieldUser;
var fieldValue = field.GetFieldValue(workflowProperties.Item[field.Id].ToString()) as SPFieldUserValue;
createTaskWithContentType1.TaskProperties.AssignedTo = fieldValue.User.LoginName;
createTaskWithContentType1.TaskProperties.DueDate = DateTime.Now.AddHours(4);
createTaskWithContentType1.TaskProperties.Title = "Primary Approval for Batch Job ID: " + workflowProperties.Item["batchJobId"].ToString();
createTaskWithContentType1.TaskProperties.SendEmailNotification = true;
}
和我的内容类型的xml:
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Field ID="{46F9442F-19E3-4818-8FE7-719E5961C8A1}" Name="ApprovalStatus" DisplayName="Approval Status" Type="Choice" Required="TRUE" Sealed="TRUE" Overwrite="True" >
<CHOICES>
<CHOICE>Approve</CHOICE>
<CHOICE>Reject</CHOICE>
</CHOICES>
</Field>
<Field ID="{B485C5E5-A85C-4C09-AE96-F7FC71FB4A3D}" Name="ApprovalNotes" DisplayName="Approval Notes" Type="Text" Overwrite="True" />
<ContentType ID="0x01080100922FA9051D1C471DA956E627E6B3B81E"
Name="ApprovalContentType"
Group="Custom Content Types"
Description="Approval Content Type"
Version="0"
Overwrite="True">
<FieldRefs>
<RemoveFieldRef ID="{a8eb573e-9e11-481a-a8c9-1104a54b2fbd}" Name="Priority" Hidden="TRUE"/>
<RemoveFieldRef ID="{c3a92d97-2b77-4a25-9698-3ab54874bc6f}" Name="Predecessors" Hidden="TRUE"/>
<RemoveFieldRef ID="{c15b34c3-ce7d-490a-b133-3f4de8801b76}" Name="Status" Hidden="TRUE"/>
<RemoveFieldRef ID="{d2311440-1ed6-46ea-b46d-daa643dc3886}" Name="PercentComplete" Hidden="TRUE"/>
<RemoveFieldRef ID="{7662cd2c-f069-4dba-9e35-082cf976e170}" Name="Body" Hidden="TRUE"/>
<FieldRef
ID="{46F9442F-19E3-4818-8FE7-719E5961C8A1}"
Name="ApprovalStatus" Sealed="TRUE" Required="TRUE"/>
<FieldRef
ID="{B485C5E5-A85C-4C09-AE96-F7FC71FB4A3D}"
Name="ApprovalNotes"/>
</FieldRefs>
</ContentType>
</Elements>
答案 0 :(得分:1)
我有同样的问题,并通过以下代码解决。
<ContentType ID="0x01080100C2CC93E34F784038BE7CA4CFD86BD58E"
Name="taskCT"
Group="Custom Content Types"
Description="My Content Type"
Inherits="FALSE"
Version="0">
只需在01
(0x0108
[重新发送guid_])之后在内容类型ID中添加0x010801
,以便每件事情都能正常运行。这是错误,微软给出了这个解决方案。
答案 1 :(得分:0)
好的,所以这个问题的解决方案......问题与我使用内容类型对象的创建任务这一事实有关。我能够用创建任务对象替换它,然后通过代码设置对象的内容类型。仍然困惑我为什么这对我的两个测试农场都有效,但我的客户失败了......