Skip to content

Commit

Permalink
Sync with frank-runner example
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Dirkse committed Jul 12, 2024
1 parent fd7c067 commit 3c67778
Show file tree
Hide file tree
Showing 18 changed files with 5 additions and 5 deletions.
Binary file modified docs/source/downloads/advancedDevelopmentProperties.zip
Binary file not shown.
Binary file modified docs/source/downloads/configurations/NewHorizons.zip
Binary file not shown.
Binary file modified docs/source/downloads/configurations/NewHorizonsDatabase.zip
Binary file not shown.
Binary file not shown.
Binary file modified docs/source/downloads/configurations/NewHorizonsValidate.zip
Binary file not shown.
Binary file modified docs/source/downloads/configurations/credentials.zip
Binary file not shown.
Binary file modified docs/source/downloads/configurations/forFrankConsole.zip
Binary file not shown.
Binary file modified docs/source/downloads/configurations/forFrankConsole_2.zip
Binary file not shown.
Binary file modified docs/source/downloads/configurations/hermesBridge.zip
Binary file not shown.
Binary file modified docs/source/downloads/deploymentTomcat.zip
Binary file not shown.
Binary file modified docs/source/downloads/extendLadybugTable.zip
Binary file not shown.
Binary file modified docs/source/downloads/ladybug.zip
Binary file not shown.
Binary file modified docs/source/downloads/sandbox/v01.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/source/gettingStarted/helloIbis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The pipeline defines how the message provided by the receiver should be processe

.. include:: ../snippets/FrankRunnerExample1a/v540/pipeline.txt

A pipeline is a network of pipes. Pipes are predefined functions that can be performed on the incoming message. The ``<FixedResultPipe>`` ignores the input and outputs a fixed string that can be configured. The fixed output string we want is in the ``returnString`` attribute. In the remainder of the :ref:`gettingStarted` chapter, we will see pipes with more interesting functions, like applying XSLT transformations and sending data to a database. The Frank!Doc has a group "Pipes" that holds all available pipes.
A pipeline is a network of pipes. Pipes are predefined functions that can be performed on the incoming message. The ``<EchoPipe>`` by default echos the input message as the output message; using attribute ``getInputFromFixedValue`` it can be used to produce a fixed value as output. In the remainder of the :ref:`gettingStarted` chapter, we will see pipes with more interesting functions, like applying XSLT transformations and sending data to a database. The Frank!Doc has a group "Pipes" that holds all available pipes.

The shown example pipeline only transforms the incoming message to an output message, but you can also send output to external systems. Please see the following screenshot of the Frank!Doc:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/snippets/FrankRunnerExample1a/v540/pipeline.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```XML
...
<Pipeline>
<FixedResultPipe name="HelloWorld" returnString="Hello World!"/>
<EchoPipe name="HelloWorld" getInputFromFixedValue="Hello World!"/>
</Pipeline>
...
```
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

...
<Pipeline>
<FixedResultPipe name="HelloWorld" returnString="Hello World!"/>
<EchoPipe name="HelloWorld" getInputFromFixedValue="Hello World!"/>
</Pipeline>
...
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ApiListener name="Listener1a" uriPattern="service1a"/>
</Receiver>
<Pipeline>
<FixedResultPipe name="HelloWorld" returnString="Hello World!"/>
<EchoPipe name="HelloWorld" getInputFromFixedValue="Hello World!"/>
</Pipeline>
</Adapter>
</Configuration>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
...
<Pipeline>
<FixedResultPipe name="HelloWorld" returnString="Hello World!"/>
<EchoPipe name="HelloWorld" getInputFromFixedValue="Hello World!"/>
</Pipeline>
...

0 comments on commit 3c67778

Please sign in to comment.