The SequentialWorkflow node for importing wire story feeds in the plain-text format has a standard structure.
You can copy and paste the below code to your new workflow:
<SequentialWorkflow
x:Name="mainWorkflow"
DisplayProgress="true"
xmlns="http://www.teradp.com/schemas/GN4/1/Workflow/Activity"
xmlns:gn4wf="http://www.teradp.com/schemas/GN4/1/Workflow"
xmlns:common="http://www.teradp.com/schemas/GN4/1/Common"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wf="http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:coll="clr-namespace:System.Collections;assembly=mscorlib">
<ImportXml
x:Name="importFeedItemXml"
Description="Importing the feed item XML"
XmlIn="{wf:ActivityBind mainWorkflow,Path=ExecutionLog}">
</ImportXml>
</SequentialWorkflow>
Note
Paste the above code between:
<wfres:workFlow
xmlns:wfres="http://www.teradp.com/schemas/GN4/1/WFRes.xsd">
and
<!-- workflow resources - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<opt:XmlImportOptions
....
/>
</wfres:workFlow>
See also