首页 > JAVA > The ServiceClass object does not implement the required method in the following form: OMElement getDocSummary(OMElement e)
The ServiceClass object does not implement the required method in the following form: OMElement getDocSummary(OMElement e)
发布时间:2015-04-03 作者:伊君 点击:2698
使用vb.net调用java axis2生成的soap时报如下错误:
The ServiceClass object does not implement the required method in the following form: OMElement getDocSummary(OMElement e)
经过排查是在aar服务包中的services.xml文件中的方法定义中缺少了一些定义:
原内容:
<operation name="setValue">
<messageReceiver class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
</operation>
其中缺少了 mep="http://www.w3.org/2004/08/wsdl/in-out"
如果方法没有返回值,使用
mep="http://www.w3.org/2004/08/wsdl/in-only"
修改后的定义如下:
<operation name="setValue">
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
</operation>
更多关于 java,soap,webservices 的信息
- java.lang.IllegalArgumentException: java.security.InvalidKeyException: Illegal key size(2023-12-15)
- java SimpleDateFormat处理英文3位字母月份时的注意事项(2019-11-27)
- IE浏览器javascript new date NAN bug的解决(2016-04-27)
- 清理java项目中多余的jar包(2016-03-10)
- 安卓下java连接串口进行客显控制的方法(2016-02-02)
- 卸载aliyun linux 15预装的java运行环境openjdk 1.6(2016-01-30)
- vb.net调用java axis2生成的soap webservices(2015-04-03)
- java及tomcat使用http正向代理的几种方法(2015-03-08)
- vb.net中实现java字符串的hashcode(2015-01-17)
- vb.net 、java、vb等获取guid的方法(2015-01-11)
本站部分文章转载于网上,版权归原作者所有。如果侵犯您的权益,请Email和本站联系!