在我的 Java 应用程序中,我试图连接到外部服务器上的 couchDb。我看到错误消息连接超时。
错误信息:
SEVERE: Allocate exception for servlet servlets.Chat
java.lang.IllegalArgumentException: **HTTP entity may not be null**
at org.apache.http.util.EntityUtils.toString(EntityUtils.java:200)
at org.apache.http.util.EntityUtils.toString(EntityUtils.java:273)
我的 CouchDb 属性
CouchDbProperties prop = new CouchDbProperties()
.setDbName("lcouchdb")
.setCreateDbIfNotExist(true)
.setHost("chatapp.couchappy.com")
.setPort(80)
.setUsername("abc@gmail.com")
.setPassword("bla blaaa")
.setProtocol("http");
我已尝试再次删除 .setPort(80) 我的应用程序引发错误
java.lang.IllegalArgumentException: Port is invalid: 0