Quantcast
Channel: Topliners : All Content - All Communities
Viewing all articles
Browse latest Browse all 3423

What does it mean "Successfully converted file [name].csv" in sync?

$
0
0

Importing data format is application/json,  this is explicitly configured in JAVA source code:

======================================================================

HttpURLConnection conn = (HttpURLConnection) url.openConnection();

conn.setInstanceFollowRedirects(false);

conn.setRequestMethod(method.toString());

conn.setRequestProperty("Content-Type", "application/json");

conn.setRequestProperty("Authorization", _authToken);       

    if (method == Method.POST || method == Method.PUT)

     {

  conn.setDoOutput(true);

    final OutputStream os = conn.getOutputStream();

     os.write(body.getBytes());

     os.flush();

     os.close();

    }

=============================================================

=====================================================

 

Why it convert file in CSV format in sync step?  How to fix the issue?

 

Fred Sakr Do you have any comments?


Viewing all articles
Browse latest Browse all 3423

Trending Articles