提问者:小点点

WSO2 ESB 覆盖 ContentType 属性


我正在研究WSO2 ESB代理服务,它涉及通过ESB上的SOAPendpoint公开内部RESTful服务。我的 RESTful 服务需要 Content-type = “application/rdf xml”。我尝试使用文档中提到的所有 3 个属性来设置它:消息类型、内容类型和CONTENT_TYPE。但是,请求内容类型仍保持“应用程序/xml”。

以下是调用 REST 服务的序列的摘录:

   <property xmlns:ns="http://org.apache.synapse/xsd" name="REST_URL_POSTFIX" value="/record/12345" scope="axis2" type="STRING"/>
   <property name="HTTP_METHOD" value="PUT" scope="axis2" type="STRING"/>
   <property name="messageType" value="application/rdf+xml" scope="axis2" type="STRING"/>
   <property name="ContentType" value="application/rdf+xml" scope="axis2" type="STRING"/>
   <property name="CONTENT_TYPE" value="application/rdf+xml" scope="axis2" type="STRING"/>
   <send>
      <endpoint name="CQ">
         <address uri="http://my_url" format="pox">
         </address>
         <property xmlns:ns="http://org.apache.synapse/xsd" name="Authorization" expression="fn:concat('Basic ', base64Encode('username:password'))" scope="transport"/>
         <property name="OSLC-Core-Version" value="2.0" scope="transport"/>
         <property name="Accept" value="application/rdf+xml" scope="transport"/>
      </endpoint>
   </send>

我用TCPMon测试了它,无论我使用什么内容类型属性,请求仍然包含“application/xml”。

请指教。


共3个答案

匿名用户

您可以使用以下配置尝试 WSO2 ESB 4.7.0 吗?请注意,我已将地址格式从“pox”更改为“rest”

   <property xmlns:ns="http://org.apache.synapse/xsd" name="REST_URL_POSTFIX" value="/record/12345" scope="axis2" type="STRING"/>
   <property name="HTTP_METHOD" value="PUT" scope="axis2" type="STRING"/>
   <property name="messageType" value="application/rdf+xml" scope="axis2" type="STRING"/>
   <property name="ContentType" value="application/rdf+xml" scope="axis2" type="STRING"/>
   <property name="CONTENT_TYPE" value="application/rdf+xml" scope="axis2" type="STRING"/>
   <send>
      <endpoint name="CQ">
         <address uri="http://my_url" format="rest">
         </address>
         <property xmlns:ns="http://org.apache.synapse/xsd" name="Authorization" expression="fn:concat('Basic ', base64Encode('username:password'))" scope="transport"/>
         <property name="OSLC-Core-Version" value="2.0" scope="transport"/>
         <property name="Accept" value="application/rdf+xml" scope="transport"/>
      </endpoint>
   </send>

这些是现在发送的http标头(从tcpmon捕获)

PUT /record/12345 HTTP/1.1
Cookie: region1_configure_menu=none; region3_registry_menu=none; region4_monitor_menu=none; region5_tools_menu=none; JSESSIONID=54D2911FCD5559C6B2F723E7C6FA9B44; requestedURI="../../carbon/service-mgt/index.jsp?region=region1&item=services_list_menu"; current-breadcrumb=manage_menu%2Cservices_menu%2Cservices_list_menu%23
Authorization: null
OSLC-Core-Version: 2.0
Content-Type: application/rdf+xml
Accept: application/rdf+xml
Transfer-Encoding: chunked
Host: www.foo.com:8080
Connection: Keep-Alive
User-Agent: Synapse-PT-HttpComponents-NIO

匿名用户

在附加的配置中,您已将地址 uri 的格式指定为 “pox” 。

<address uri="http://my_url" format="pox">

这将是您始终将内容类型作为应用程序/xml 的原因。请删除此属性并尝试。它应该是

<address uri="http://my_url">

如果仍然看到问题,请尝试按照 RaviU 的建议切换到 NHTTP 传输。为此,您可以先将 axis2.xml (ESB_HOME/repository/conf/axis2/axis2.xml) 备份为 axis2_back.xml,然后将axis2_nhttp.xml文件(相同位置)重命名为 axis2.xml。

匿名用户

您可以像这样设置内容类型属性吗?

 <property name="Content-Type” value="application/rdf+xml" scope="transport"/>

请删除其他内容类型属性。

如果你这样定义;

 [1]<property name="messageType" value="application/rdf+xml" scope="axis2" type="STRING"/>
   [2]<property name="ContentType" value="application/rdf+xml" scope="axis2" type="STRING"/>

[1] 对于,选择消息格式化程序

[2]用于选择消息生成器

编辑;像这样尝试

 <inSequence>
            <log level="custom">
               <property name="in seq --------------of proxy" expression="$trp:Content-Type"/>
            </log>
            <property name="messageType"
                      value="application/json"
                      scope="axis2"
                      type="STRING"/>
            <property name="Content-Type"
                      value="application/json"
                      scope="transport"
                      type="STRING"/>
            <log level="custom">
               <property name="in seq --------------of proxy" expression="$trp:Content-Type"/>
            </log>
            <send>
               <endpoint>
                  <address uri="http://localhost:5555/com"/>
               </endpoint>
            </send>