java.net.SocketException:sendto failed:EPIPE(Broken pipe)

时间:2013-02-11 05:20:34

标签: android alfresco httpurlconnection cmis opencmis

我正在尝试通过Android的OpenCMIS查询Alfresco存储库。 但要低于错误,但不是每次都。 这是我的代码。当我作为独立程序运行时,此代码工作正常,但与Android无法正常工作。

getCMISClientSession();
ItemIterable<QueryResult> results = session.query("SELECT * FROM cmis:document 
                   where cmis:name ='"+docName+"'", false);

for (QueryResult result : results) { //Exception thrown from here

    String docId = result.getPropertyValueById(PropertyIds.OBJECT_ID);
    doc = (Document)session.getObject(docId);

}

Stackstrace

org.apache.chemistry.opencmis.commons.exceptions.CmisConnectionException: Cannot access http://<192.168.1.122>:8080/alfresco/cmisatom/eee7da3c-d3d4-48de-89a1-52145a6a6e06/query: sendto failed: EPIPE (Broken pipe)
at org.apache.chemistry.opencmis.client.bindings.spi.http.HttpUtils.invoke(HttpUtils.java:224)
at org.apache.chemistry.opencmis.client.bindings.spi.http.HttpUtils.invokePOST(HttpUtils.java:74)
at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.post(AbstractAtomPubService.java:561)
at org.apache.chemistry.opencmis.client.bindings.spi.atompub.DiscoveryServiceImpl.query(DiscoveryServiceImpl.java:137)
at org.apache.chemistry.opencmis.client.runtime.SessionImpl$3.fetchPage(SessionImpl.java:567)
at org.apache.chemistry.opencmis.client.runtime.util.AbstractIterator.getCurrentPage(AbstractIterator.java:132) 
at org.apache.chemistry.opencmis.client.runtime.util.CollectionIterator.hasNext(CollectionIterator.java:48)

这是因为Android Emulator很慢吗?请告知我如何解决此错误。

2 个答案:

答案 0 :(得分:0)

您可以尝试使用此版本0.8.0-alfresco-patched,还是最终使用Apache chemistry CI

中的最新版本

答案 1 :(得分:0)

模拟器不适用于需要互联网连接的应用。尝试使用真实设备。