Thanks Adam for the reply,
I am new to ofbiz
my service definition is :
<service name="learningFirstSoap" engine="java"
location="org.ofbiz.learning.learning.LearningServices"
invoke="testData"
export="true">
<description>Our First Service</description>
<attribute name="test" type="String" mode="IN"
optional="true" />
<attribute name="ret" type="String" mode="OUT"
optional="true" />
</service>
the corresponding method is:
public static Map testData(DispatchContext dctx, Map context){
String ret=(String)context.get("test");
String message = "test: ";
Map resultMap = ServiceUtil.returnSuccess(message);
resultMap.put("ret", ret);
return resultMap;
}
please show me where the mistake is..
--
View this message in context:
http://ofbiz.135035.n4.nabble.com/XML-RPC-client-problem-tp2303975p2304433.html
Sent from the OFBiz - Dev mailing list archive at Nabble.com.