0

我在 wso2 REST 到 REST 中有服务链接。这是场景:

  1. 第一个 REST API (GET) 只生成简单的 json
  2. 第二个 REST API (PUT) 使用第一个 REST API 结果,并将其生成为 json。

为了实现这一点,我在 wso2 中制作了一些组件:

  1. REST API

    <?xml version="1.0" encoding="UTF-8"?>
    <api context="/flight" name="Flight" xmlns="http://ws.apache.org/ns/synapse">
    <resource methods="PUT" uri-template="/">
    <inSequence>
        <property expression="//airport_cd/text()" name="airport_cd"
            scope="default" type="STRING" />
        <property name="HTTP_METHOD" scope="axis2" type="STRING"
            value="GET" />
    
        <send receive="insertFlightSeq">
            <endpoint>
                <address format="rest"
                    uri="https://jsonplaceholder.typicode.com/posts/1" />
            </endpoint>
        </send>
        <send />
    </inSequence>
    <outSequence>
        <send />
    </outSequence>
    <faultSequence />
    

  2. 访问第二个休息 API 的序列 (insertFlightSeq)

    <?xml version="1.0" encoding="UTF-8"?>
    <sequence name="insertFlightSeq" trace="disable"xmlns="http://ws.apache.org/ns/synapse">
    <payloadFactory media-type="json">
    <format>
        {"hello":"hello"}
    </format>
    <args>
        <arg evaluator="json" expression="$."/>
    </args>
    </payloadFactory>
    
    <property name="HTTP_METHOD" scope="axis2" type="STRING" value="PUT"/>
    <property name="messageType" scope="axis2" type="STRING" value="application/json"/>
    <send receive="sendFlightSeq">
        <endpoint>
            <address format="rest" uri="http://localhost:8084/AeroData/flight/"/>
        </endpoint>
    </send>
    </sequence>
    
  3. 另一个输出它的序列

    <?xml version="1.0" encoding="UTF-8"?>
    <sequence name="sendFlightSeq" trace="disable" xmlns="http://ws.apache.org/ns/synapse">
         <send/>
    </sequence>
    

但在 wso2 日志控制台中,它显示非法字符,第二个 API 不能接受该字符。

Caused by: org.codehaus.jackson.JsonParseException: Illegal character
((CTRL-CHAR, code 31)): only regular white space (\r, \n, \t) is
allowed between tokens

这是 wso2 控制台日志。它的节目就像[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0x0][0xab]V[0xca]H[0xcd][0xc9][0xc9]W[0xb2][0x82][0xd2][0xb5][0x0][0x92]H[0x81];[0x11][0x0][0x0][0x0][\r][\n]

在此处输入图像描述

这是因为像这个问题这样的消息格式化程序而发生的吗?

4

0 回答 0