You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2023/03/22 11:48:27 UTC

[hop] branch master updated: added async web service page to hop server nav, added reference to async metadata type. fixes #2758

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 2b11be5b4a added async web service page to hop server nav, added reference to async metadata type. fixes #2758
     new 9f1abd17d8 Merge pull request #2759 from bamaer/2758
2b11be5b4a is described below

commit 2b11be5b4ab9d54c55e53b32b27480398fb7711a
Author: Bart Maertens <ba...@know.bi>
AuthorDate: Wed Mar 22 11:42:51 2023 +0100

    added async web service page to hop server nav, added reference to async metadata type. fixes #2758
---
 docs/hop-user-manual/modules/ROOT/nav.adoc                           | 1 +
 .../modules/ROOT/pages/hop-server/async-web-service.adoc             | 3 +++
 docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc        | 5 +++--
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/docs/hop-user-manual/modules/ROOT/nav.adoc b/docs/hop-user-manual/modules/ROOT/nav.adoc
index 35f75283e7..f01e96c285 100644
--- a/docs/hop-user-manual/modules/ROOT/nav.adoc
+++ b/docs/hop-user-manual/modules/ROOT/nav.adoc
@@ -442,6 +442,7 @@ under the License.
 * xref:hop-server/index.adoc[Hop Server]
 ** xref:hop-server/rest-api.adoc[REST api]
 ** xref:hop-server/web-service.adoc[Web Service]
+** xref:hop-server/async-web-service.adoc[Async Web Service]
 * xref:hop-rest/index.adoc[Hop REST Web Application]
 * xref:hop-tools/index.adoc[Hop Tools]
 ** xref:hop-tools/hop-conf/hop-conf.adoc[hop-conf]
diff --git a/docs/hop-user-manual/modules/ROOT/pages/hop-server/async-web-service.adoc b/docs/hop-user-manual/modules/ROOT/pages/hop-server/async-web-service.adoc
index fe114b471d..f16118063a 100644
--- a/docs/hop-user-manual/modules/ROOT/pages/hop-server/async-web-service.adoc
+++ b/docs/hop-user-manual/modules/ROOT/pages/hop-server/async-web-service.adoc
@@ -25,6 +25,9 @@ This web service variant is used to execute long-running workflows.
 Instead of getting immediate results from a pipeline with a xref:hop-server/web-service.adoc[Web Service] call, the only thing that is given back after the call in the unique ID of the executing workflow.
 With that unique ID you can query the status of the workflow.
 You can specify additional variables to report back during the querying of the status of the asynchronously running workflow.
+
+Check the xref:metadata-types/asyncwebservice.adoc[Asynchronous Web Service] metadata type for more information on how to configure the async web service.
+
 Here is the lifecycle:
 
 === Execute Workflow
diff --git a/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc b/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc
index 5598e4a668..a368949a2e 100644
--- a/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc
+++ b/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc
@@ -22,8 +22,6 @@ under the License.
 
 Hop Server is a lightweight server to run workflows and pipelines with the xref:pipeline/pipeline-run-configurations/native-remote-pipeline-engine.adoc[Remote pipeline] or xref:workflow/workflow-run-configurations/native-remote-workflow-engine.adoc[Remote workflow] run configurations.
 
-Additionally, a Hop Server can also be accessed directly through a number of web services and in combination with the xref:hop-server/web-service.adoc[Web Service] and xref:hop-server/async-web-service.adoc[Asynchronous Web Service] metadata types.
-
 == Starting and Stopping Hop Server
 
 === General Use
@@ -617,3 +615,6 @@ The header bar for workflows and pipelines is almost identical (from left to rig
 |Remove pipeline/workflow from list|
 |===
 
+== Hop Server web Services
+
+A Hop Server can also be accessed directly through a number of web services and in combination with the xref:hop-server/web-service.adoc[Web Service] and xref:hop-server/async-web-service.adoc[Asynchronous Web Service] metadata types.