Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreaslill/biztalk-context-to-sourcefilename
BizTalk Server pipeline component for writing data from context properties to source file name.
https://github.com/andreaslill/biztalk-context-to-sourcefilename
biztalk biztalk-server pipeline-component
Last synced: 16 days ago
JSON representation
BizTalk Server pipeline component for writing data from context properties to source file name.
- Host: GitHub
- URL: https://github.com/andreaslill/biztalk-context-to-sourcefilename
- Owner: AndreasLill
- License: apache-2.0
- Created: 2024-01-13T16:01:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T21:40:21.000Z (about 1 year ago)
- Last Synced: 2024-01-19T22:53:55.423Z (about 1 year ago)
- Topics: biztalk, biztalk-server, pipeline-component
- Language: C#
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Context To SourceFileName
BizTalk pipeline component for reading context properties and writing it to %SourceFileName%.## Properties
### ContextPropertySchemas
A collection of property schemas containing the context properties to read.
Delimited by | (pipe character).Example using one property schema:
```
http://schemas.microsoft.com/BizTalk/2003/file-properties
```Example using two property schemas:
```
http://schemas.microsoft.com/BizTalk/2003/file-properties|http://schemas.microsoft.com/BizTalk/2003/system-properties
```### OverrideFileExtension
Used to replace current file extension in source file name.
Leave empty to keep current file extension.Example:
```
.xml
```### TargetSourceFileName
The target source file name containing the context property macros.
The context properties are found in the component using [%ContextName%].
This will be written to %SourceFileName% (ReceivedFileName) context.Examples:
```
[%InterchangeID%]_AnyTextYouLike
```
```
FILE_[%FileCreationTime%][%CustomerID%]
```