短い: POST メソッドを使用して、いくつかのパラメーター (user=admin、key=12345678 など) を PHP ページ (localhost/post-debug.php など) に投稿したいと考えています。スクリプトは $_POST 値を読み取り、何でもします。
私の質問は次のとおりです。
1. 以下の例を機能させるにはどうすればよいですか?
2. JSON でエンコードされたペイロードから POST パラメーターを使用して Map ペイロードを作成し、それを PHP スクリプトに送信するにはどうすればよいですか?
以下は、私が実行しようとしている孤立したケースです (パラメーターは HTTP エンドポイントから「読み取られます」)。ブラウザから次の URL を直接呼び出しています。
http://localhost:8081/httpPost?user=admin&key=12345678
基礎となる XML:
<?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" version="CE-3.3.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
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 ">
<flow name="httpPostTestFlow1" doc:name="httpPostTestFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" path="httpPost" doc:name="HTTP"/>
<http:body-to-parameter-map-transformer doc:name="Body to Parameter Map"/>
<echo-component doc:name="Echo"/>
<http:outbound-endpoint exchange-pattern="request-response" host="localhost/post-debug.php" port="80" contentType="application/x-www-form-urlencoded" doc:name="HTTP" />
</flow>
</mule>
MuleStudio 1.3.2、Mule ESB v.3.3 を使用しています。
多くの同様の質問を確認しましたが、正しい軌道に乗ったものはありません。