web services - how to call webservice from playframework 1.1 -
i have webservice 1 function checkorder(string, string, string) return string.
how call function checkorder controller.
my code:
wsrequest ws = ws.url("https://www.nganluong.vn/public_api.php?wsdl/"); ws.parameters.put("merchant_id", merchant_site_code); ws.parameters.put("param", payment_id); ws.parameters.put("checksum", checksum); ws.httpresponse rs = ws.post();
Comments
Post a Comment