次の SOAP クライアントを使用して、Apache OFBiz で Web サービスを起動しています。
public class CreatePerson {
private static OMFactory fac;
private static OMNamespace omNs;
public static String fname;
public static String lname;
static {
fac = OMAbstractFactory.getOMFactory();
omNs = fac.createOMNamespace("http://my-ip-adress/service/", "ns1");
}
public static void main(String[] args) throws AxisFault {
ServiceClient sc = new ServiceClient();
Options opts = new Options();
opts.setTo(new EndpointReference("http://my-ip-adress:port/webtools/control/SOAPService"));
opts.setAction("createPerson");
sc.setOptions(opts);
OMElement res = sc.sendReceive(createPayLoad(fname, lname));
System.out.println(res);
}
public static OMElement createPayLoad(@XPath("//person/return[1]")String firstName, @XPath("//person/return[2]")String lastName) {
CreatePerson.fname = firstName;
CreatePerson.lname = lastName;
OMElement createPerson = fac.createOMElement("createPerson", omNs);
OMElement mapMap = fac.createOMElement("map-Map", omNs);
createPerson.addChild(mapMap);
mapMap.addChild(createMapEntry("login.username", "admin"));
mapMap.addChild(createMapEntry("login.password", "ofbiz"));
// do the mapping here!
mapMap.addChild(createMapEntry("firstName", firstName));
mapMap.addChild(createMapEntry("lastName", lastName));
return createPerson;
}
public static OMElement createMapEntry(String key, String val) {
OMElement mapEntry = fac.createOMElement("map-Entry", omNs);
// create the key
OMElement mapKey = fac.createOMElement("map-Key", omNs);
OMElement keyElement = fac.createOMElement("std-String", omNs);
OMAttribute keyAttribute = fac.createOMAttribute("value", null, key);
mapKey.addChild(keyElement);
keyElement.addAttribute(keyAttribute);
// create the value
OMElement mapValue = fac.createOMElement("map-Value", omNs);
OMElement valElement = fac.createOMElement("std-String", omNs);
OMAttribute valAttribute = fac.createOMAttribute("value", null, val);
mapValue.addChild(valElement);
valElement.addAttribute(valAttribute);
// attach to map-Entry
mapEntry.addChild(mapKey);
mapEntry.addChild(mapValue);
return mapEntry;
}
}
次に、次の xml を使用して、上記のクライアントで firstName と lastName を使用して return-element の値を「マップ」(AnnotatedEntryPointResolver) に取得します。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:getAllResponse xmlns:ns2="http://service.ofbiz.org/">
<person>
<return>Testname</return>
<return>Test</return>
</person>
</ns2:getAllResponse>
</soap:Body>
</soap:Envelope>
したがって、私はMuleを使用しています。私のクライアント コードでわかるように、return-element の xml 値を参照するために XPath 注釈をいくつか追加しました。テスト目的のために、私の Mule 設定は単純です。
<flow name="test_flow" doc:name="test_flow">
<file:inbound-endpoint path="[mypath]\xml\in" responseTimeout="10000" doc:name="File"/>
<component class="org.ofbiz.service.CreatePerson" doc:name="Java"/>
</flow>
ファイル インバウンド エンドポイントと、上記のクライアントを参照する Java コンポーネントを使用しているだけです。Mule を実行すると、クライアントの createPayLoad() メソッド内で「マッピング」が正しく行われます。しかし、それは私がやりたいことではありません。私の質問: この例の AnnotatedEntryPointResolvers を使用して、Java コンポーネント全体 (main-method を含む) を呼び出すにはどうすればよいですか? 上記の代替またはより良い解決策はありますか?