- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我用 Java 创建了一个独立的 Web 服务客户端。我能够正确生成 WSDL,但是当我执行我的 run.bat 文件时,我得到上面的异常,下面是异常。我用谷歌搜索了标题中显示的异常,并找到了一个包含它的 .jar 文件。我将它添加到我的 JBOSS_HOME/lib 目录以及 Client/lib 目录中。不知道为什么我仍然看到这个。任何建议将不胜感激。
Exception in thread "main" org.jboss.xb.binding.JBossXBRuntimeException: Failed to create a new SAX parser
at org.jboss.xb.binding.UnmarshallerFactory$UnmarshallerFactoryImpl.newUnmarshaller(UnmarshallerFactory.java:100)
at org.jboss.ws.metadata.config.JBossWSConfigFactory.parse(JBossWSConfigFactory.java:76)
at org.jboss.ws.metadata.config.JBossWSConfigFactory.getConfig(JBossWSConfigFactory.java:149)
at org.jboss.ws.metadata.umdm.EndpointMetaData.initEndpointConfigMetaData(EndpointMetaData.java:872)
at org.jboss.ws.metadata.umdm.EndpointMetaData.initEndpointConfig(EndpointMetaData.java:849)
at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.rebuildEndpointMetaData(JAXWSClientMetaDataBuilder.java:292)
at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.getPortInternal(ServiceDelegateImpl.java:267)
at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:198)
at javax.xml.ws.Service.getPort(Service.java:141)
at com.firstcoverage.ws.client.om.WSStandAloneReportingSoapServiceService.getWSStandAloneReportingSoapServicePort(WSStandAloneReportingSoapServiceService.java:68)
at com.firstcoverage.ws.client.StandAloneReportingSoapClientFactory.ConnectToFCStandAloneReportingSoapWS(StandAloneReportingSoapClientFactory.java:70)
at com.firstcoverage.ws.client.StandAloneReportingSoapClientFactory.CreateInstance(StandAloneReportingSoapClientFactory.java:35)
at com.firstcoverage.ws.client.Reporter.main(Reporter.java:89)
Caused by: org.jboss.xb.binding.JBossXBException: Failed to create a new SAX parser
at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.<init>(SaxJBossXBParser.java:96)
at org.jboss.xb.binding.UnmarshallerImpl.<init>(UnmarshallerImpl.java:55)
at org.jboss.xb.binding.UnmarshallerFactory$UnmarshallerFactoryImpl.newUnmarshaller(UnmarshallerFactory.java:96)
... 12 more
Caused by: javax.xml.parsers.ParserConfigurationException: Feature 'http://apache.org/xml/features/xinclude' is not recognized.
at org.apache.xerces.jaxp.SAXParserFactoryImpl.newSAXParser(Unknown Source)
at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.<init>(SaxJBossXBParser.java:92)
... 14 more
最佳答案
看来我的 jar 文件太多了。删除了引用 xerces 的本地 jar 文件,我很酷引用:http://community.jboss.org/wiki/whydoigetjavalangclasscastexceptionorgapachexercesparsersxincludeawareparserconfigurationinas-5
关于java - 线程 "main"org.jboss.xb.binding.JBossXBRuntimeException : Failed to create a new SAX parser 中的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2877793/
我对Python很陌生,在这段代码中,我试图编写一个代码来读取包含城市列表及其各自的经度和纬度的文本文件,然后将它们作为包含城市列表的字典返回。城市,包括其经度和纬度。 文本文件如下所示: Name:
澄清一下,我想匹配: ab aabb aaabbb ... 这在 Perl 中有效: if ($exp =~ /^(a(?1)?b)$/) 要理解这一点,请看一下字符串,就好像它是从外向内生长的,而不
澄清一下,我想知道如何使用正则表达式来匹配: ab aabb aaabbb ... 我刚刚发现这在 Perl 中有效: if ($exp =~ /^(a(?1)?b)$/) 要理解这一点,请看一下字符
我已将 Individual.XML 放置在目录中:Files\InputApps - - **A123** 只是想打印出“A123”,但我收到此错误: Exception in thread "
我正在尝试将一些 matlab 代码转换为 C++ 我正在使用 Eigen这是一个很棒的库(如果你不知道就试试吧) 但我正在尝试转换这一行: x = B/A 与 B = rand(7,20); A =
我正在尝试使用 R 中的 plm 包为面板数据开发固定效应回归模型。我想获得固定效应和回归变量之间的相关性。 Stata 输出中的 corr(u_i, Xb) 之类的东西。如何在 R 中获取它?我尝试
如何在字符串中替换这些字符:r'\xb0' 为 r'\260',我已经尝试过: test = u'\xb0C' test = test.encode('latin1') test = test.rep
我对 python 很陌生,对做高斯回归很感兴趣。我在 py3.6 和 SKlearn 0.19 下。 我有简单的代码,但我得到了一个关于预测调用的 cdist 中向量维度的错误。我知道我的输入有问题
好吧,我必须编写一个程序来计算一个骑士(在棋盘上)从 (xb, yb) 到 (xe, ye) 可以走的路线数。我不确定我哪里出错了。好吧,我知道计数不会添加任何东西,并且会在我的代码中保持为 0,但我
看下面的片段: >>> import unicodedata >>> from unicodedata import normalize, name >>> normalize('NFKD', u'\
我用 Java 创建了一个独立的 Web 服务客户端。我能够正确生成 WSDL,但是当我执行我的 run.bat 文件时,我得到上面的异常,下面是异常。我用谷歌搜索了标题中显示的异常,并找到了一个包含
我是一名优秀的程序员,十分优秀!