我必须创建一个 multipart/form-data HTTP 请求,其中文件将从一个请求中接收,一些额外的表单数据值来自不同的请求。例子:
1) HTTP 侦听器接收文件作为附件
2) 将 HTTP 请求发送到 3 个或更多 REST API,并将值存储到属性变量中
3) 使用在步骤 1 中收到的文件以及在步骤 2 中收到的值创建 HTTP 请求
当我在步骤 1 中收到文件时,我将其保存在一个属性中,我还将来自后续请求的值保存到不同的属性中。
现在,当我在步骤 3 中从这些属性构造 HTTP POST 请求时,我在服务器上没有收到任何值,字段和文件都没有。
我的流量:
<http:request-config name="HTTP_poster_Configuration" host="localhost" port="53536" doc:name="HTTP Poster Configuration"/>
<http:request-config name="HTTP_Request_Configuration" host="1.1.1.1" basePath="/xyz" port="8080" doc:name="HTTP Request Configuration"/>
<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<flow name="getticketFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="/" doc:name="HTTP"/>
<set-session-variable variableName="var1" value="NA" doc:name="Session Variable" />
<set-variable variableName="var2" value="P11335577" doc:name="Flow name Variable" />
<set-variable variableName="var3" value="Goku" doc:name="Flow title Variable" />
<set-variable variableName="var4" value="Saiyan Dead but Alive" doc:name="Flow description Variable" />
<set-variable variableName="uploadFile" value="#[message.inboundAttachments['file'].dataSource.content]" doc:name="Flow type Variable" />
.................Sending requests to other services
...................Setting property Variables
<!-- Finally -->
<http:request config-ref="HTTP_poster_Configuration" path="/handler" method="POST" doc:name="Uploading_Doc" >
<http:request-builder>
<http:query-param paramName="filedata" value="#[flowVars ['uploadFile']]"/>
<http:query-param paramName="sid" value="#[flowVars ['var1']]"/>
<http:query-param paramName="cid" value="#[flowVars ['var2']]"/>
<http:query-param paramName="udi" value="#[flowVars ['var3']]"/>
<http:header headerName="Content-Type" value="multipart/form-data"/>
</http:request-builder>
</http:request>
</flow>
</mule>