0

我使用KrakenD作为我的 API 网关,我需要创建一个端点来查询一些 SOAP 请求,但我找不到任何关于如何配置文件的文档。

客户端将请求我的 KrakendD API 网关,例如:

curl --location --request POST 'http://http://fake_api:8080/number-conversion' \
--header 'Content-Type: application/json' \
--data-raw '{
"dNum": 500
}'

我的 API Gateway 应该将上述请求映射到以下 SOAP 请求中:

curl --location --request POST 'https://www.dataaccess.com/webservicesserver/NumberConversion.wso' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'SOAPAction: "#NumberToDollars"' \
--data-raw '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<NumberToDollars xmlns="http://www.dataaccess.com/webservicesserver/">
<dNum>500</dNum>
</NumberToDollars>
</soap:Body>
</soap:Envelope>'

我找到了这个文档,但这还不够!

我应该如何配置我的后端?谢谢你的支持!_

4

0 回答 0