Examples of callDownloadReport()


Examples of uk.co.purebuy.commerce.businessobjects.importexport.playtrade.call.DownloadReportCall.callDownloadReport()

    //set the authentication
    call.setUsername("user@email.com");
    call.setPassword("password");
     
    //make the call to get the report
    DownloadCallResult result = call.callDownloadReport();
   
    //write the report to a temporary file
    File tempfile = File.createTempFile("playtrade_orders_"+REPORT_ID+"_", ".txt");
    String resultbody = result.getResultBody();
    FileUtils.writeStringToFile(tempfile, resultbody, "UTF-8");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.