今天我在myeclipse上编写一个WebService小程序,运行时报出了下面的错误:
Exception in thread "main" com.sun.xml.internal.ws.model.RuntimeModelerException:
runtime modeler error: Wrapper class com.yue.service.jaxws.SayHello is not found. Have you run APT to generate them?
at com.sun.xml.internal.ws.model.RuntimeModeler.getClass(RuntimeModeler.java:256)
at com.sun.xml.internal.ws.model.RuntimeModeler.processDocWrappedMethod(RuntimeModeler.java:567)
at com.sun.xml.internal.ws.model.RuntimeModeler.processMethod(RuntimeModeler.java:514)
at com.sun.xml.internal.ws.model.RuntimeModeler.processClass(RuntimeModeler.java:341)
at com.sun.xml.internal.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:227)
at com.sun.xml.internal.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:308)
at com.sun.xml.internal.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:174)
at com.sun.xml.internal.ws.api.server.WSEndpoint.create(WSEndpoint.java:420)
at com.sun.xml.internal.ws.api.server.WSEndpoint.create(WSEndpoint.java:439)
at com.sun.xml.internal.ws.transport.http.server.EndpointImpl.createEndpoint(EndpointImpl.java:208)
at com.sun.xml.internal.ws.transport.http.server.EndpointImpl.publish(EndpointImpl.java:138)
at com.sun.xml.internal.ws.spi.ProviderImpl.createAndPublishEndpoint(ProviderImpl.java:90)
at javax.xml.ws.Endpoint.publish(Endpoint.java:170)
at com.yue.service.HelloService.main(HelloService.java:17)
后来经过查找,得到了下面的解决方法:
在public class XXX{}之上添加注解:
@SOAPBinding(style = SOAPBinding.Style.RPC)
问题得到解决。
在使用MyEclipse编写WebService程序时遇到运行错误:'Wrapper class com.yue.service.jaxws.SayHello is not found'。通过在public class之上添加@SOAPBinding(style=SOAPBinding.Style.RPC)注解成功解决问题。

8691

被折叠的 条评论
为什么被折叠?



