我对Mule很陌生,需要缝合一些微服务来实现业务目标。在这方面,我的服务是基于REST的,并具有JSON有效负载。下面是我的配置(到目前为止使用),以便从mule调用服务。
velocity
我的服务托管于10.208.165.126:8080/ingestion/esb;但这甚至没有达到我的服务水平。此服务的有效负载格式如下:{“user”:“saurabh”}
请帮我配置并帮助我实现目标。
答案 0 :(得分:2)
我不确定您的数据源是什么,但这是一个简单的示例
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd">
<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<http:request-config name="HTTP_Request_Configuration_outboundWS" host="10.208.165.126" port="8080" doc:name="HTTP Request Configuration"/>
<flow name="sampleFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="/inbound" doc:name="Inbound HTTP"/>
<json:object-to-json-transformer doc:name="Object to JSON"/>doc:name="Set Payload"/>
<set-property propertyName="Content-Type" value="application/json" doc:name="Set Outbound Header"/>
<http:request config-ref="HTTP_Request_Configuration_outboundWS" path="/your/webservice/path" method="POST" doc:name="POST WebService"/>
</flow>
</mule>
答案 1 :(得分:1)
答案 2 :(得分:1)
使用POSTMAN或任何Rest客户端。