Bing Web 服务客户端 (Java)

发布于 2024-10-04 15:00:39 字数 449 浏览 5 评论 0原文

我想要使​​用 bing web 服务并且我有我的 Bing appid。 我已经安装了eclipse helios(EE)、tomcat6、axis2、maven2等。 在我的 Eclipse 中,我转到“文件”->“新建”->“其他”->“Web 服务客户端”。然后我输入 WSDL 文件路径。验证没问题。 Eclipse 在我的项目中构建了一些类,但我无法使用 Bing Web 服务。 Bing 文档 (.Net) 使用 LiveSearchService class 但我没有这个类(实际上它是一个接口)。

I want use bing web services and I have my Bing appid.
I have installed eclipse helios (EE), tomcat6, axis2, maven2, and so on.
In my eclipse I go to File->New->Other->Web service client. Then I enter WSDL file path. Verification is ok. Eclipse build some classes in my project but I can't use Bing web services. Bing documentation (.Net) uses LiveSearchService class but I don't have this class (really it's an interface).

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

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

发布评论

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

评论(1

一个人的旅程 2024-10-11 15:00:39

您没有明确说明问题出在哪里......

一般来说,使用 ws 很容易,并且有很多关于此的教程:

HelloWorldService service = new HelloWorldService();
HelloWorld port = service.{a getter method for port..by convention i believe it isgetHelloWorldPort()};
port.myMethod();

这有帮助吗?
如果没有,请说得更明确。

You didn't say explicitly where the problem was...

In general consuming a ws is easy and there are many tutorials on this:

HelloWorldService service = new HelloWorldService();
HelloWorld port = service.{a getter method for port..by convention i believe it isgetHelloWorldPort()};
port.myMethod();

Was this helpful?
If not, please be more explicit.

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