java webservice多值返回

发布于 2024-11-08 19:07:30 字数 617 浏览 0 评论 0原文

我可以帮我解决这个问题吗? 我必须用java开发一个网络服务。那必须返回下面的xml。 我不知道如何像java中那样返回多个值

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Response xmlns="http://tempuri.org/">
      <Result>int</Result>
      <strReturn>string</strReturn>
    </Response>
  </soap:Body>
</soap:Envelope>

Can i help me solve this problem ?
I have to develop a web service in java. That have to return a xml below.
I dont know how to return multiple value like that in java

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Response xmlns="http://tempuri.org/">
      <Result>int</Result>
      <strReturn>string</strReturn>
    </Response>
  </soap:Body>
</soap:Envelope>

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

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

发布评论

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

评论(1

墨小沫ゞ 2024-11-15 19:07:30

我不确定您对网络服务了解多少。您发布的 XML 是 XML Web 服务(soap Web 服务)。
请参阅此处的介绍: http://download.oracle.com/javaee/ 6/tutorial/doc/gijti.html

正如教程中所述,您可以使用 Java API for XML Web Services (JAX-WS) 来开发 Web 服务。

I am not sure how much you know about web service. The XML you posted is a XML web service (soap web service).
See here for introduction: http://download.oracle.com/javaee/6/tutorial/doc/gijti.html

As stated in the tutorial, you can use the Java API for XML Web Services (JAX-WS) to develop the web service.

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