<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Exception in thread &amp;quot;main&amp;quot; com.dropbox.core.NetworkIOException: Read timed out in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172320#M6576</link>
    <description>&lt;P&gt;Since it sounds like the NetworkIOException problem is intermittent, is it possible it's related to issues with your network connection. For example, are you able to reproduce the issue when using a different Internet connection?&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2016 01:01:46 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2016-04-19T01:01:46Z</dc:date>
    <item>
      <title>Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172314#M6570</link>
      <description>&lt;P&gt;The code I'm running is this;&lt;/P&gt;
&lt;P&gt;public class test {&lt;BR /&gt; static final String ACCESS_TOKEN = "&amp;lt;REDACTED&amp;gt;";&lt;BR /&gt; public static void main(String args[]) throws DbxException, IOException, InterruptedException &lt;BR /&gt; {&lt;BR /&gt; DbxRequestConfig config = new DbxRequestConfig("dropbox/java-tutorial", "en_US");&lt;BR /&gt; DbxClientV2 client = new DbxClientV2(config, ACCESS_TOKEN);&lt;BR /&gt; //System.out.println(config.httpRequestor.DefaultTimeoutMillis);&lt;BR /&gt; FullAccount account = null;&lt;BR /&gt; account = client.users.getCurrentAccount();&lt;BR /&gt; System.out.println(account);&lt;BR /&gt; List&amp;lt;Metadata&amp;gt; entries = client.files.listFolder("").getEntries();&lt;BR /&gt; //WritetoFile jal = new WritetoFile("/semesterProject.client/", "text.txt");&lt;BR /&gt; for (Metadata metadata : entries) {&lt;BR /&gt; System.out.println(metadata.getName());&lt;BR /&gt; //System.out.println(jal.getClass());&lt;BR /&gt; //jal.addtoFile(metadata.name);&lt;BR /&gt; }&lt;BR /&gt; File file = new File("/semesterProject.client/text.txt"); &lt;BR /&gt; if(!file.exists()) {&lt;BR /&gt; System.out.println("File does not exist");&lt;BR /&gt; file.createNewFile();// create your file on the file system&lt;BR /&gt; } &lt;BR /&gt; if(file.exists())&lt;BR /&gt; {&lt;BR /&gt; System.out.println("File exists");&lt;BR /&gt; }&lt;BR /&gt; //InputStream in = new FileInputStream(file);&lt;BR /&gt; //FileMetadata metadata = client.files.uploadBuilder("/semesterProject.client/text.txt").uploadAndFinish(in);&lt;BR /&gt; //DisplayTextFile newfile = new DisplayTextFile("/semesterProject.client/text.txt");&lt;BR /&gt; //for(int i=0; i&amp;lt;newfile.getList().size(); i++)&lt;BR /&gt; //{&lt;BR /&gt; //System.out.println(newfile.getList().get(i));&lt;BR /&gt; //} &lt;BR /&gt; //System.out.println(DbxEntry.Folder.class);&lt;BR /&gt; DbxClientV1 client45 = new DbxClientV1(config, ACCESS_TOKEN);&lt;BR /&gt; client45.createFolder("/doggone");&lt;BR /&gt; DbxEntry.Folder fold= new DbxEntry.Folder("/doggone", "dog", false);&lt;BR /&gt; //System.out.println(fold.toString());&lt;BR /&gt; ArrayList kal = null;&lt;BR /&gt; //kal = new ArrayList(newfile.getList());&lt;BR /&gt; //OrderList kal2 = new OrderList(kal);&lt;BR /&gt; //Hashtable mak=kal2.orderAlphabetically();&lt;BR /&gt; //sortJava sorting =new sortJava(kal);&lt;BR /&gt; //final String[] get=sorting.sorted();&lt;BR /&gt; //System.out.println(get[2]);&lt;BR /&gt; JFrame frame = new JFrame("FrameDemo");&lt;BR /&gt; JTextArea text = new JTextArea();&lt;BR /&gt; int k=0;&lt;BR /&gt; //Set kalll=mak.keySet();&lt;BR /&gt; //Object[] objectarray= new Object[kalll.size()];&lt;BR /&gt; //kalll.toArray(objectarray);&lt;BR /&gt; //text.setColumns(objectarray.length);&lt;BR /&gt; /*while(k&amp;lt;objectarray.length)&lt;BR /&gt; {&lt;BR /&gt; /text.append((String) mak.get((objectarray[k]))+"\n");&lt;BR /&gt; k++;&lt;BR /&gt; }*/&lt;BR /&gt; frame.add(text);&lt;BR /&gt; frame.setVisible(true);&lt;BR /&gt; entries = client.files.listFolder("").getEntries();&lt;BR /&gt; for (Metadata metadata2 : entries) {&lt;BR /&gt; //System.out.println(metadata2.pathLower);&lt;BR /&gt; // jal.addtoFile(metadata.name);&lt;BR /&gt; }&lt;BR /&gt; frame.dispose();&lt;BR /&gt; getAllFolders(entries, client);&lt;BR /&gt;}&lt;BR /&gt; public static void getAllFolders(List &amp;lt;Metadata&amp;gt; entries, DbxClientV2 client ) throws DbxException, IOException&lt;BR /&gt; {&lt;BR /&gt; ArrayList&amp;lt;String&amp;gt; folders = new ArrayList&amp;lt;String&amp;gt;();&lt;BR /&gt; int count =0;&lt;BR /&gt; folders.add("");&lt;BR /&gt; getfolders(folders, count);&lt;BR /&gt; for(int foldercount=0; foldercount&amp;lt;folders.size();foldercount++)&lt;BR /&gt; {&lt;BR /&gt; System.out.println(folders.get(foldercount)+"KALL");&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; public static void getfolders(ArrayList&amp;lt;String&amp;gt; folders, int count) throws DbxException&lt;BR /&gt; {&lt;BR /&gt; for(int foldercount=count; foldercount&amp;lt;folders.size();foldercount++)&lt;BR /&gt; {&lt;BR /&gt; DbxRequestConfig config = new DbxRequestConfig("dropbox/java-tutorial", "en_US");&lt;BR /&gt; DbxClientV2 client2 = new DbxClientV2(config, ACCESS_TOKEN);&lt;BR /&gt; DbxClientV1 client3 = new DbxClientV1(config, ACCESS_TOKEN);&lt;BR /&gt; System.out.println(folders.get(foldercount));&lt;BR /&gt; List &amp;lt;Metadata&amp;gt;entries = client2.files.listFolder(folders.get(foldercount)).getEntries();&lt;BR /&gt; int hal=0;&lt;BR /&gt; for (Metadata metadata : entries) &lt;BR /&gt; {&lt;BR /&gt; DbxDelta&amp;lt;DbxEntry&amp;gt; result = null;&lt;BR /&gt; if(!folders.get(foldercount).startsWith("/"))&lt;BR /&gt; {&lt;BR /&gt; result = client3.getDeltaWithPathPrefix(null, "/"+folders.get(foldercount));&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; result = client3.getDeltaWithPathPrefix(null, folders.get(foldercount));&lt;BR /&gt; }&lt;BR /&gt; List&amp;lt;Entry&amp;lt;DbxEntry&amp;gt;&amp;gt; cursor = result.entries;&lt;BR /&gt; for (Entry&amp;lt;DbxEntry&amp;gt; entry : cursor) &lt;BR /&gt; {&lt;BR /&gt; if(entry.metadata.isFolder())&lt;BR /&gt; {&lt;BR /&gt; folders.add(entry.metadata.path);&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; hal++;&lt;BR /&gt; System.out.println(hal);&lt;BR /&gt; }&lt;BR /&gt; client3 = new DbxClientV1(config, ACCESS_TOKEN);&lt;BR /&gt; }&lt;BR /&gt; count++;&lt;BR /&gt; getfolders(folders, count);&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the error message I'm getting is this;&lt;/P&gt;
&lt;P&gt;Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil.readJsonFromResponse(DbxRequestUtil.java:364)&lt;BR /&gt; at com.dropbox.core.v1.DbxClientV1$8.handle(DbxClientV1.java:1579)&lt;BR /&gt; at com.dropbox.core.v1.DbxClientV1$8.handle(DbxClientV1.java:1575)&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil.finishResponse(DbxRequestUtil.java:432)&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil$2.run(DbxRequestUtil.java:425)&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil.runAndRetry(DbxRequestUtil.java:469)&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil.doPostNoAuth(DbxRequestUtil.java:421)&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil.doPost(DbxRequestUtil.java:410)&lt;BR /&gt; at com.dropbox.core.v1.DbxClientV1.doPost(DbxClientV1.java:2222)&lt;BR /&gt; at com.dropbox.core.v1.DbxClientV1._getDelta(DbxClientV1.java:1575)&lt;BR /&gt; at com.dropbox.core.v1.DbxClientV1.getDeltaWithPathPrefix(DbxClientV1.java:1536)&lt;BR /&gt; at test.getfolders(test.java:129)&lt;BR /&gt; at test.getAllFolders(test.java:108)&lt;BR /&gt; at test.main(test.java:101)&lt;BR /&gt;Caused by: java.net.SocketTimeoutException: Read timed out&lt;BR /&gt; at java.net.SocketInputStream.socketRead0(Native Method)&lt;BR /&gt; at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)&lt;BR /&gt; at java.net.SocketInputStream.read(SocketInputStream.java:170)&lt;BR /&gt; at java.net.SocketInputStream.read(SocketInputStream.java:141)&lt;BR /&gt; at sun.security.ssl.InputRecord.readFully(InputRecord.java:465)&lt;BR /&gt; at sun.security.ssl.InputRecord.readV3Record(InputRecord.java:593)&lt;BR /&gt; at sun.security.ssl.InputRecord.read(InputRecord.java:532)&lt;BR /&gt; at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973)&lt;BR /&gt; at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:930)&lt;BR /&gt; at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)&lt;BR /&gt; at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)&lt;BR /&gt; at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)&lt;BR /&gt; at java.io.BufferedInputStream.read(BufferedInputStream.java:345)&lt;BR /&gt; at sun.net.&lt;A href="http://www.http.ChunkedInputStream.fastRead(ChunkedInputStream.java:244)" rel="nofollow noreferrer" target="_blank"&gt;www.http.ChunkedInputStream.fastRead(ChunkedInputStream.java:244)&lt;/A&gt;&lt;BR /&gt; at sun.net.&lt;A href="http://www.http.ChunkedInputStream.read(ChunkedInputStream.java:689)" rel="nofollow noreferrer" target="_blank"&gt;www.http.ChunkedInputStream.read(ChunkedInputStream.java:689)&lt;/A&gt;&lt;BR /&gt; at java.io.FilterInputStream.read(FilterInputStream.java:133)&lt;BR /&gt; at sun.net.&lt;A href="http://www.protocol.http.HttpURLConnection%24HttpInputStream.read(HttpURLConnection.java:3335)" rel="nofollow noreferrer" target="_blank"&gt;www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:3335)&lt;/A&gt;&lt;BR /&gt; at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.loadMore(UTF8StreamJsonParser.java:207)&lt;BR /&gt; at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.slowParseName(UTF8StreamJsonParser.java:1877)&lt;BR /&gt; at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(UTF8StreamJsonParser.java:1669)&lt;BR /&gt; at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken(UTF8StreamJsonParser.java:752)&lt;BR /&gt; at com.dropbox.core.json.JsonDateReader$1.read(JsonDateReader.java:29)&lt;BR /&gt; at com.dropbox.core.json.JsonDateReader$1.read(JsonDateReader.java:19)&lt;BR /&gt; at com.dropbox.core.json.JsonReader.readField(JsonReader.java:48)&lt;BR /&gt; at com.dropbox.core.v1.DbxEntry._read(DbxEntry.java:872)&lt;BR /&gt; at com.dropbox.core.v1.DbxEntry.read(DbxEntry.java:827)&lt;BR /&gt; at com.dropbox.core.v1.DbxEntry$1.read(DbxEntry.java:611)&lt;BR /&gt; at com.dropbox.core.v1.DbxEntry$1.read(DbxEntry.java:607)&lt;BR /&gt; at com.dropbox.core.json.JsonReader.readOptional(JsonReader.java:58)&lt;BR /&gt; at com.dropbox.core.v1.DbxDelta$Entry$Reader.read(DbxDelta.java:274)&lt;BR /&gt; at com.dropbox.core.v1.DbxDelta$Entry$Reader.read(DbxDelta.java:248)&lt;BR /&gt; at com.dropbox.core.v1.DbxDelta$Entry$Reader.read(DbxDelta.java:237)&lt;BR /&gt; at com.dropbox.core.json.JsonArrayReader.read(JsonArrayReader.java:44)&lt;BR /&gt; at com.dropbox.core.json.JsonArrayReader.read(JsonArrayReader.java:33)&lt;BR /&gt; at com.dropbox.core.json.JsonReader.readField(JsonReader.java:48)&lt;BR /&gt; at com.dropbox.core.v1.DbxDelta$Reader.read(DbxDelta.java:130)&lt;BR /&gt; at com.dropbox.core.v1.DbxDelta$Reader.read(DbxDelta.java:102)&lt;BR /&gt; at com.dropbox.core.v1.DbxDelta$Reader.read(DbxDelta.java:91)&lt;BR /&gt; at com.dropbox.core.json.JsonReader.readFully(JsonReader.java:565)&lt;BR /&gt; at com.dropbox.core.json.JsonReader.readFully(JsonReader.java:458)&lt;BR /&gt; at com.dropbox.core.DbxRequestUtil.readJsonFromResponse(DbxRequestUtil.java:359)&lt;BR /&gt; ... 13 more&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any way of solving this without changing the timeout timer? If there isn't, how can I change the timeout period?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:34:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172314#M6570</guid>
      <dc:creator>Yusuf ..</dc:creator>
      <dc:date>2019-05-29T09:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172315#M6571</link>
      <description>&lt;P&gt;Not sure if it will work for others, but having&amp;nbsp;&lt;/P&gt;
&lt;P&gt;static final DbxRequestConfig config = new DbxRequestConfig("testtest/1.0", "en_US");&lt;/P&gt;
&lt;P&gt;has helped me.&lt;/P&gt;
&lt;P&gt;Nonetheless, I have a problem of getting folders from shared files, as listfolder just gets the Metadata, which I cannot check if it contains folder or not.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 02:07:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172315#M6571</guid>
      <dc:creator>Yusuf ..</dc:creator>
      <dc:date>2016-04-04T02:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172316#M6572</link>
      <description>&lt;P&gt;Hi Yusuf, I'm glad to hear you got that&amp;nbsp;working already.&lt;/P&gt;
&lt;P&gt;I'm not sure if I understand your follow up question though, can you elaborate? If you mean you need to distinguish between files and folders given a Metadata object, you can do so by checking the class. FileMetadata, FolderMetadata, and DeletedMetadata are subclasses of metadata. Here's a sample of checking between them:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/152c926bfe357f555e5714835c43fba0838a89b9/examples/android/src/main/java/com/dropbox/core/examples/android/FilesAdapter.java#L80" rel="nofollow noreferrer"&gt;https://github.com/dropbox/dropbox-sdk-java/blob/152c926bfe357f555e5714835c43fba0838a89b9/examples/android/src/main/java/com/dropbox/core/examples/android/FilesAdapter.java#L80&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;By the way, I redacted your access token, but for the sake of security, you should disable it now. You can do so by revoking access to the app entirely, if the access token is for your account, here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/account/security" rel="nofollow noreferrer"&gt;https://www.dropbox.com/account/security&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Or, you can disable just this access token using the /disable_access_token endpoint:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/core/docs#disable-token" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/core/docs#disable-token&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 01:12:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172316#M6572</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-04-05T01:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172317#M6573</link>
      <description>&lt;P&gt;The fundamantel problem I had was to check whether the files were folders or not. That wasn't possible with Metadata, but it was possible with&amp;nbsp;client3.getMetadataWithChildren().&lt;/P&gt;
&lt;P&gt;For some reason however,&amp;nbsp;client3.getDeltaWithPathPrefix() does not get shared folders while getMetadataWithChildren does.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 03:45:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172317#M6573</guid>
      <dc:creator>Yusuf ..</dc:creator>
      <dc:date>2016-04-05T03:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172318#M6574</link>
      <description>&lt;P&gt;Thanks for clarifying. It sounds like you're talking about using listFolder for API v2, which returns a Metadata object, as opposed to&amp;nbsp;getMetadataWithChildren for API v1.&lt;/P&gt;
&lt;P&gt;In that case, my reply does apply. &amp;nbsp;Check out this sample for an example of how you can tell between files and folders when you have a Metadata object:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/152c926bfe357f555e5714835c43fba0838a89b9/examples/android/src/main/java/com/dropbox/core/examples/android/FilesAdapter.java#L80" rel="nofollow noreferrer"&gt;https://github.com/dropbox/dropbox-sdk-java/blob/152c926bfe357f555e5714835c43fba0838a89b9/examples/android/src/main/java/com/dropbox/core/examples/android/FilesAdapter.java#L80&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In short, you can use&amp;nbsp;instanceof&amp;nbsp;to check if it's a&amp;nbsp;FolderMetadata or&amp;nbsp;FileMetadata (or DeletedMetadata).&lt;/P&gt;
&lt;P&gt;Also, when you use&amp;nbsp;getDeltaWithPathPrefix, are you checking hasMore on the response? If&amp;nbsp;getDeltaWithPathPrefix is true, you need to call back again to get more results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 03:59:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172318#M6574</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-04-05T03:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172319#M6575</link>
      <description>&lt;P&gt;Alright, the problem seems to restart again, as after a while when I'm trying to access to client, same NetworkIOException occurs, regardless of how many times I reinitialize DbxClientV2 and DbxClientV1.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2016 18:12:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172319#M6575</guid>
      <dc:creator>Yusuf ..</dc:creator>
      <dc:date>2016-04-18T18:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172320#M6576</link>
      <description>&lt;P&gt;Since it sounds like the NetworkIOException problem is intermittent, is it possible it's related to issues with your network connection. For example, are you able to reproduce the issue when using a different Internet connection?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 01:01:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172320#M6576</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-04-19T01:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172321#M6577</link>
      <description>&lt;P&gt;Took me long to response, but yes, regardless of the connection I get this.&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2016 22:32:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172321#M6577</guid>
      <dc:creator>Yusuf ..</dc:creator>
      <dc:date>2016-05-18T22:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exception in thread "main" com.dropbox.core.NetworkIOException: Read timed out</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172322#M6578</link>
      <description>&lt;P&gt;Thanks for following up. Can you give me a better idea of how much/often you see this so we can look into it? Specifically, does it happen consistently, or only sporadically, and in either case, when you are seeing failures, what percent of your API calls fail?&amp;nbsp;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2016 00:25:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Exception-in-thread-quot-main-quot-com-dropbox-core/m-p/172322#M6578</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-05-19T00:25:24Z</dc:date>
    </item>
  </channel>
</rss>

