0

我们如何在 Helidon SE 中使用外部 REST 和 SOAP 服务。

4

2 回答 2

0

该问题与 Helidon SE 没有明确关系。

使用 REST 或 SOAP Web 服务需要编写客户端,您可以通过多种方式实现此目标。

对于 REST ws,您可以参考这里How do you create a REST client for Java? .

对于这里的 SOAP ws https://www.baeldung.com/java-soap-web-service

于 2021-05-19T06:34:51.673 回答
0

Helidon SE-Web 客户端:https ://helidon.io/docs/latest/#/se/webclient/01_introduction

//Create a WebClient with simple builder:
WebClient client = WebClient.builder()
        .baseUri("http://localhost")
        .build();

//Execute a simple GET request to endpoint:
Single<String> response = client.get()
        .path("/endpoint")
        .request(String.class);
于 2021-11-23T18:21:30.790 回答