我正在尝试使用Eclipse从动态WSDL
文件生成代理类。由于导入的架构WSDL
,我收到错误。
请帮我解决这个问题。
我得到以下异常:
Error javax.wsdl.WSDLException: WSDLException: faultCode=PARSER_ERROR: Problem parsing 'http://172.22.4.12/PKISignWS.asmx'.: org.xml.sax.SAXParseException: The element type "p" must be terminated by the matching end-tag "</p>"
但我的p
中没有WSDL
。
答案 0 :(得分:0)
.asmx
通常是用于ASP.NET网络服务的后缀,可以通过将WSDL
添加到?wsdl
服务地址来访问其.asmx
。
因此,您应该使用http://172.22.4.12/PKISignWS.asmx?wsdl
作为WSDL
文件的目标。