You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Luchnikov Alexander (Jira)" <ji...@apache.org> on 2022/05/13 10:15:00 UTC

[jira] [Updated] (IGNITE-16083) .NET: Thin client services don't work properly

     [ https://issues.apache.org/jira/browse/IGNITE-16083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Luchnikov Alexander updated IGNITE-16083:
-----------------------------------------
    Labels: ise.lts  (was: )

> .NET: Thin client services don't work properly
> ----------------------------------------------
>
>                 Key: IGNITE-16083
>                 URL: https://issues.apache.org/jira/browse/IGNITE-16083
>             Project: Ignite
>          Issue Type: Improvement
>            Reporter: Nikolay Izhikov
>            Assignee: Nikolay Izhikov
>            Priority: Major
>              Labels: ise.lts
>             Fix For: 2.13
>
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> Even after IGNITE-14742 Thin client serde process on .Net side doesn't work properly for array.
> See attached tests added during IGNITE-14299
> {code}
>         /// <summary>
>         /// Tests Java service invocation.
>         /// </summary>
>         [Test]
>         [Ignore("https://issues.apache.org/jira/browse/IGNITE-16083")]
>         public void TestCallJavaServiceThinClient()
>         {
>             var svc = _thinClient.GetServices().GetServiceProxy<IJavaService>(_javaSvcName);
>             var binSvc = _thinClient.GetServices() .WithKeepBinary().WithServerKeepBinary()
>                 .GetServiceProxy<IJavaService>(_javaSvcName);
>             DoTestService(svc);
>             DoTestBinary(svc, binSvc);
>             DoTestJavaExceptions(svc, true);
>         }
> {code}
> {code}
>         /// <summary>
>         /// Tests .Net service invocation with thin client.
>         /// </summary>
>         [Test]
>         [Ignore("https://issues.apache.org/jira/browse/IGNITE-16083")]
>         public void TestPlatformServiceThinClient()
>         {
>             DoTestService(_thinClient.GetServices().GetServiceProxy<IJavaService>(PlatformSvcName));
>         }
>         /// <summary>
>         /// Tests Java service invocation with thin client.
>         /// Types should be resolved implicitly.
>         /// </summary>
>         [Test]
>         [Ignore("https://issues.apache.org/jira/browse/IGNITE-16083")]
>         public void TestJavaServiceThinClient()
>         {
>             DoTestService(_thinClient.GetServices().GetServiceProxy<IJavaService>(_javaSvcName));
>         }
> {code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)