Good day,
I am attempting to start with a very simple custom workflow step. Here's the code:
using System; using System.Activities; using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Workflow; namespace HTTPRequest { public sealed partial class HTTPRequest : CodeActivity { protected override void Execute(CodeActivityContext executionContext) { IWorkflowContext context = executionContext.GetExtension<IWorkflowContext>(); IOrganizationServiceFactory serviceFactory = executionContext.GetExtension<IOrganizationServiceFactory>(); IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId); this.response.Set(executionContext, this.url.Get(executionContext)); } [RequiredArgument] [Input("InputURL")] [ReferenceTarget("")] public InArgument<String> url { get; set; } [Output("Response")] public OutArgument<String> response {get; set;} } }
But when I build and register the plugin I get an empty "Set Properties" window:
Any ideas about why this is happening?
Thanks,
BGS
*This post is locked for comments