JAX-WS异常

发布于 2024-07-23 04:54:35 字数 57 浏览 4 评论 0原文

如何在服务器端分配SOAPFaultExceptionfault字段?

How to assign the fault field of the SOAPFaultException on the server side?

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

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

发布评论

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

评论(2

银河中√捞星星 2024-07-30 04:54:35

据我所知,分配错误字段的唯一方法是通过 构造函数。 因此,最简单的方法是创建一个新的 SOAPFaultException,并将错误作为参数。

As far as I can tell, the only way to assign a fault field is through the constructor. So, the easiest way would be to create a new SOAPFaultException with the fault as an argument.

遗失的美好 2024-07-30 04:54:35

定义异常

public class SomeFault extends Exception
{
   public SomeFault(String code)
   {
   }

   public String getA() {...}
   public void setA() {..}

   public String getB() {...}
   public void setB() {..}
}

,然后定义webservice

@WebService
public class MyWS
{
   public MyWS()
   {
   }

   public Response getSomething(String id) throws SomeFault 
   {
      throw new SomeFault(id);
   }
}

define exception

public class SomeFault extends Exception
{
   public SomeFault(String code)
   {
   }

   public String getA() {...}
   public void setA() {..}

   public String getB() {...}
   public void setB() {..}
}

and then webservice

@WebService
public class MyWS
{
   public MyWS()
   {
   }

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