You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2021/02/04 18:55:08 UTC

[ignite] 01/02: wip .NET thin client services

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

ptupitsyn pushed a commit to branch ignite-14129
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 00d035e0fa67d80ab3e64c3455d6c268342553e0
Author: Pavel Tupitsyn <pt...@apache.org>
AuthorDate: Thu Feb 4 21:50:23 2021 +0300

    wip .NET thin client services
---
 docs/_docs/thin-clients/dotnet-thin-client.adoc | 15 ++++++++++++++-
 docs/_docs/thin-clients/java-thin-client.adoc   |  2 ++
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/docs/_docs/thin-clients/dotnet-thin-client.adoc b/docs/_docs/thin-clients/dotnet-thin-client.adoc
index fe551a3..56727be 100644
--- a/docs/_docs/thin-clients/dotnet-thin-client.adoc
+++ b/docs/_docs/thin-clients/dotnet-thin-client.adoc
@@ -235,6 +235,20 @@ task named `org.foo.bar.AddOneTask` passing `1` as an input parameter:
 include::{sourceCodeFile}[tag=client-compute-task,indent=0]
 -------------------------------------------------------------------------------
 
+== Executing Ignite Services
+
+You can use the `IServicesClient` APIs to invoke an link:services/services[Ignite Service] that
+is *already deployed* in the cluster.
+
+The example below shows how to invoke the service named `MyService`:
+[source, csharp]
+-------------------------------------------------------------------------------
+include::{sourceCodeFile}[tag=client-services,indent=0]
+-------------------------------------------------------------------------------
+
+The deployed service can be implemented using Java or .NET.
+
+
 == Security
 
 === SSL/TLS
@@ -257,4 +271,3 @@ Configure link:security/authentication[authentication on the cluster side] and p
 ----
 include::{sourceCodeFile}[tag=auth,indent=0]
 ----
-
diff --git a/docs/_docs/thin-clients/java-thin-client.adoc b/docs/_docs/thin-clients/java-thin-client.adoc
index e77cf9c..0870e60 100644
--- a/docs/_docs/thin-clients/java-thin-client.adoc
+++ b/docs/_docs/thin-clients/java-thin-client.adoc
@@ -291,6 +291,8 @@ The example below shows how to invoke the service named `MyService`:
 include::{sourceCodeFile}[tag=client-services,indent=0]
 -------------------------------------------------------------------------------
 
+The deployed service can be implemented using Java or .NET.
+
 == Handling Exceptions
 
 === Handling Node Failures