org.apache.xmlbeans.XmlException: error: does not close tag

使用myeclipse的jax自动生成webservice , 或者serviceImpl通过@webservice来实现webservice时,

使用soap UI (我测试使用的版本 5.2.1),提示出现does not close tag错误提示

总结一下:原因发现有二:

1、情况二:可能是你使用的是jax版本过低,因为在soap UI 5.4 和 soap UI 4.5 在实现上是有区别的;

具体区别描述可以看一下这位兄弟:http://blog.csdn.net/a19881029/article/details/32101373

在重新引用一下,全部使用jax-* 1.1 或只使用jax-WS 1.2

--我这边是直接使用jax-WS 1.2

如果不是必要情况下,都建议使用最新的正式版本,无论什么东西~

2、情况二:使用URL地址时,修改为IP,不要使用localhost或127.0.0.1 (这个比较坑)

如发现其他可能导致的问题,欢迎讨论~

时间: 2024-10-10 09:24:27

org.apache.xmlbeans.XmlException: error: does not close tag的相关文章

[SoapUI] SoapUI+Groovy中"org.apache.xmlbeans.XmlException: error:

把 def holder = groovyUtils.getXmlHolder("Get Token#Response") 改为 def holder = groovyUtils.getXmlHolder( "Get Token#ResponseAsXml" ),即加了AsXml就可以了

解决:java.lang.ClassNotFoundException: org.apache.xmlbeans.XmlObject报错问题。

利用POI操作PPT一直报如下错误java.lang.ClassNotFoundException: org.apache.xmlbeans.XmlObject 是因为项目中缺少一个包xmlbeans-2.3.0.jar,加上后就可以正常操作了. 官方下载地址:http://xmlbeans.apache.org 导入XMLBEANS包即可 原文地址:https://www.cnblogs.com/yang-xiansen/p/11972187.html

Apache access.log error.log日志文件太大优化方法

有没有发现Apache生成的日志文件一天比一天大,不是一般大,若你apache安装在C盘,那可惨了,不几天硬盘就满了,太恐怖了,有没有办法优化一下日志,让它不那么大?答案是有的. 一.停止Apache服务,删除Apache下/logs/目录中的error.log和access.log文件. 二.打开Apache的conf/httpd.conf配置文件,找到以下配置信息: ErrorLog logs/error.log CustomLog logs/access.log common 请在上述两行

apache Internal Server Error 的几个问题

Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you mi

xampp Apache Access forbidden! Error 403解决方法

今天下载了最新的xampp,配置了一个虚拟主机,一直在报错,Access forbidden! Error 403 这很明显是服务器不允许访问文件,但是我的虚拟主机配置如下: DocumentRoot "D:/work/test" ServerName test Options None Order allow,deny Allow from all 竟然还是访问不成功,折腾了一会终于发现在httpd.conf里面有这个配置. 把这个改成如下配置,重启apache就行了. 我想这应该是

linux 上安装apache 出现 configure: error: APR not found. Please read the documentation错误

今日编译apache时出错: #./configure --prefix……检查编辑环境时出现: checking for APR... noconfigure: error: APR not found .  Please read the documentation 解决办法: 1.下载所需软件包: wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache.org/dist/apr/

xampp 启动apache 提示:Error: Apache shutdown unexpectedly.

无法启动xampp的apache提示错误: 下午 8:32:21  [Apache]       Error: Apache shutdown unexpectedly. 下午 8:32:21  [Apache]       This may be due to a blocked port, missing dependencies, 下午 8:32:21  [Apache]       improper privileges, a crash, or a shutdown by anothe

anroid import org.apache.http.Header error

//useLibrary 'org.apache.http.legacy' in android-sdk-windows\platforms\android-26\optional dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation project(':libcocos2dx') implementation files('libs/android-async-http-1.

使用POI解析Excel时,出现org.xml.sax.SAXParseException: duplicate attribute 'o:relid'的解决办法

1.使用org.apache.poi解析excle,.xlsx类型文件InputStream is = new FileInputStream(strFileName);XSSFWorkbook wb = new XSSFWorkbook(is);出现异常如下: org.apache.poi.POIXMLException: java.lang.reflect.InvocationTargetExceptionat org.apache.poi.xssf.usermodel.XSSFFactor