如何使用 clientCredentialType="Basic" 将 Java 客户端连接到 WCF 服务

发布于 2024-08-20 04:57:17 字数 997 浏览 5 评论 0 原文

我必须从 Java 客户端 连接到具有以下绑定配置WCF Web 服务

<basicHttpBinding>
    <binding name="basicHttpBindingSecurity">
        <security mode="TransportCredentialOnly">
            <transport clientCredentialType="Basic"/>
        </security>
    </binding>
</basicHttpBinding>

我正在使用 JAX- WS。您能给我一段代码片段,展示如何在 Java 客户端中设置用户名和密码吗?

我已经尝试过这个:

Map<String, Object> reqContext = ((BindingProvider) port).getRequestContext();
reqContext.put(BindingProvider.USERNAME_PROPERTY, "username");
reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password");

但没有成功。我也尝试过这个:

Map<String, Object> reqContext = ((BindingProvider) port).getRequestContext();
reqContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://username:password@localhost:8090/MyService");

仍然没有成功。

谢谢, 拉法尔

I have to connect from a Java client to a WCF Web Service which has the following binding configuration:

<basicHttpBinding>
    <binding name="basicHttpBindingSecurity">
        <security mode="TransportCredentialOnly">
            <transport clientCredentialType="Basic"/>
        </security>
    </binding>
</basicHttpBinding>

I'm using JAX-WS. Can you give me a code snippet showing how to set user name and password in a Java client?

I have tried this:

Map<String, Object> reqContext = ((BindingProvider) port).getRequestContext();
reqContext.put(BindingProvider.USERNAME_PROPERTY, "username");
reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password");

but it did not work. I have also tried this:

Map<String, Object> reqContext = ((BindingProvider) port).getRequestContext();
reqContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://username:password@localhost:8090/MyService");

Still no success.

Thanks,
Rafal

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

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

发布评论

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

评论(1

原来是傀儡 2024-08-27 04:57:18

哎呀!抱歉...

第一个解决方案有效,但我在 WCF 服务配置中犯了一个错误。所以基本上如果你有类似的问题厌倦了这个:

Map<String, Object> reqContext = ((BindingProvider) port).getRequestContext();
reqContext.put(BindingProvider.USERNAME_PROPERTY, "username");
reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password");

最好的问候,
拉法尔

Oops! Sorry...

First solution works, but I have made a mistake in WCF service configuration. So basicaly if you have similar problem tired this:

Map<String, Object> reqContext = ((BindingProvider) port).getRequestContext();
reqContext.put(BindingProvider.USERNAME_PROPERTY, "username");
reqContext.put(BindingProvider.PASSWORD_PROPERTY, "password");

Best regards,
Rafal

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