UnknownHostException 尝试通过 Ektorp 连接到 Cloudant DB

发布于 2024-11-02 23:31:58 字数 2947 浏览 6 评论 0原文

它并不是点击如何使用 Ektorp 连接到托管 Cloudant 数据库。我通过新的 m2eclipse Maven 集成在 Eclipse 中使用 Ektorp 1.1(这非常好)。除了 javadocs 之外,我正在努力寻找好的 CouchDB/Cloudant/Ektorp 文档。

我试图从他们的主页获取示例 Ektorp API 示例:

HttpClient httpClient = new StdHttpClient.Builder()
                                    .host("localhost")
                                    .port(5984)
                                    .build();

CouchDbInstance dbInstance = new StdCouchDbInstance(httpClient);
CouchDbConnector db = new StdCouchDbConnector("mydatabase", dbInstance);

db.createDatabaseIfNotExists();

它不工作无论我使用什么来构建 httpClient,我总是会收到下面的 UnknownHostException 错误。我已经尝试过主机的这些 URL: https/http://cloudant.com/db/_session 和 https/http://[用户名].cloudant.com

端口号怎么样?用户名和密码是否应该包含在 StdHttpClient.Builder() 中?

这是完整的错误 - createDatabaseIfNotExists() 调用失败,但我不确定 CouchDbConnector 变量是否正确。

Exception in thread "main" org.ektorp.DbAccessException: java.net.UnknownHostException: https://cloudant.com/db/_session
    at org.ektorp.util.Exceptions.propagate(Exceptions.java:19)
    at org.ektorp.http.StdHttpClient.executeRequest(StdHttpClient.java:104)
    at org.ektorp.http.StdHttpClient.get(StdHttpClient.java:42)
    at org.ektorp.http.RestTemplate.get(RestTemplate.java:21)
    at org.ektorp.impl.StdCouchDbInstance.getAllDatabases(StdCouchDbInstance.java:61)
    at org.ektorp.impl.StdCouchDbConnector.createDatabaseIfNotExists(StdCouchDbConnector.java:256)
    at com.codegouge.examples.App.main(App.java:30)
Caused by: java.net.UnknownHostException: https://cloudant.com/db/_session
    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
    at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
    at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
    at java.net.InetAddress.getAllByName(InetAddress.java:1084)
    at java.net.InetAddress.getAllByName(InetAddress.java:1020)
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:126)
    at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:149)
    at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:108)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:415)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:641)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:576)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:554)
    at org.ektorp.http.StdHttpClient.executeRequest(StdHttpClient.java:96)

It's not clicking how one is supposed to connect to a hosted Cloudant database using Ektorp. I'm using Ektorp 1.1 in Eclipse via the new m2eclipse Maven integration (which is pretty sweet). I'm struggling to find good CouchDB/Cloudant/Ektorp documentation other than javadocs.

I'm trying to get the sample Ektorp API example from their main page to work:

HttpClient httpClient = new StdHttpClient.Builder()
                                    .host("localhost")
                                    .port(5984)
                                    .build();

CouchDbInstance dbInstance = new StdCouchDbInstance(httpClient);
CouchDbConnector db = new StdCouchDbConnector("mydatabase", dbInstance);

db.createDatabaseIfNotExists();

It doesn't matter what I use to build the httpClient with, I always get the UnknownHostException error below. I've tried these URLs for the host: https/http://cloudant.com/db/_session and https/http://[username].cloudant.com

What about the port number? Should the username and password be included in the StdHttpClient.Builder()?

Here's the full error - it's failing on the createDatabaseIfNotExists() call but I'm not confident the CouchDbConnector variable is correct.

Exception in thread "main" org.ektorp.DbAccessException: java.net.UnknownHostException: https://cloudant.com/db/_session
    at org.ektorp.util.Exceptions.propagate(Exceptions.java:19)
    at org.ektorp.http.StdHttpClient.executeRequest(StdHttpClient.java:104)
    at org.ektorp.http.StdHttpClient.get(StdHttpClient.java:42)
    at org.ektorp.http.RestTemplate.get(RestTemplate.java:21)
    at org.ektorp.impl.StdCouchDbInstance.getAllDatabases(StdCouchDbInstance.java:61)
    at org.ektorp.impl.StdCouchDbConnector.createDatabaseIfNotExists(StdCouchDbConnector.java:256)
    at com.codegouge.examples.App.main(App.java:30)
Caused by: java.net.UnknownHostException: https://cloudant.com/db/_session
    at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
    at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
    at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
    at java.net.InetAddress.getAllByName(InetAddress.java:1084)
    at java.net.InetAddress.getAllByName(InetAddress.java:1020)
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:126)
    at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:149)
    at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:108)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:415)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:641)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:576)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:554)
    at org.ektorp.http.StdHttpClient.executeRequest(StdHttpClient.java:96)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏の忆 2024-11-09 23:31:58

所以我做错了几件事。使用 SSL 需要其他参数。另外,Ektorp 1.1。 1 包括针对 1.1.0 的 SSL 相关错误修复。这是我最终的 HttpClient 构造函数:

HttpClient httpClient = new StdHttpClient.Builder()
        .host("[username].cloudant.com")
        .port(443)
        .username("[username]")
        .password("[password]")
        .enableSSL(true)
        .relaxedSSLSettings(true)
        .build();

另外,请务必更新 pom.xml 中的 ektorp 依赖项以查找版本“1.1.1”。我有一篇博客文章介绍了这个练习这里

So I was doing a couple things wrong. Using SSL requires additional parameters. Also, Ektorp 1.1.1 includes SSL-related bug fixes to 1.1.0. So this is my final HttpClient constructor:

HttpClient httpClient = new StdHttpClient.Builder()
        .host("[username].cloudant.com")
        .port(443)
        .username("[username]")
        .password("[password]")
        .enableSSL(true)
        .relaxedSSLSettings(true)
        .build();

Also, be sure to update ektorp's dependency in pom.xml to look for version "1.1.1". I have a blog post covering this exercise here if interested.

凡尘雨 2024-11-09 23:31:58

您还可以使用 URL 与 Ektorp 连接:

JSONObject serviceAttr = val.getJSONObject(0);
                        JSONObject credentials = serviceAttr.getJSONObject("credentials");
                        httpClient = new StdHttpClient.Builder()
                        .url(credentials.getString("url"))
                        .build();

这是一种简单的连接方法。我找到了使用 Ektorp 1.4.2 连接的教程:
http://www.ibm.com/developerworks/java /library/j-hangman-app/index.html

You also can use the URL to connect with Ektorp:

JSONObject serviceAttr = val.getJSONObject(0);
                        JSONObject credentials = serviceAttr.getJSONObject("credentials");
                        httpClient = new StdHttpClient.Builder()
                        .url(credentials.getString("url"))
                        .build();

That's is easy way to connect. I found a tutorial to connect using Ektorp 1.4.2:
http://www.ibm.com/developerworks/java/library/j-hangman-app/index.html

听你说爱我 2024-11-09 23:31:58

我对 Ektorp 不太熟悉,但您肯定需要在那里获取您的用户名/密码。我建议使用以下代码创建 HttpClient:

HttpClient httpClient = new StdHttpClient.Builder()
                                    .host("[username].cloudant.com")
                                    .port(443)
                                    .username("[username]")
                                    .password("[password]")
                                    .build();

我已将端口更改为 443(HTTPS 的默认端口,Cloudant 侦听该端口),并添加了用户名和密码。我没有找到任何方法让 Ektorp 知道您想要使用 HTTPS,但幸运的是这将在内部处理。

I'm not very familiar with Ektorp, but you'll definitely need to get your username/password in there. I'd suggest creating the HttpClient with the following code:

HttpClient httpClient = new StdHttpClient.Builder()
                                    .host("[username].cloudant.com")
                                    .port(443)
                                    .username("[username]")
                                    .password("[password]")
                                    .build();

I've changed the port to 443 (the default for HTTPS, which Cloudant listens on) and I've added a username and password. I don't see any way to let Ektorp know that you want to use HTTPS, but with luck that'll be handled internally.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文