-
调用ws异常如题:InaccessibleWSDLException: 2 counts of InaccessibleWSDLException10
服务端是用Delphi写的,现在用jax-ws调用,调用时出现下面异常信息。公司内部是用代理上网的方式,不知道是否和代理有关?请大牛门给指点指点..
com.sun.xml.internal.ws.wsdl.parser.InaccessibleWSDLException: 2 counts of InaccessibleWSDLException.
java.io.FileNotFoundException: http://10.230.253.22/vipsrv/HsVipWebSrv.dll/wsdl/IHsVipWebStv
java.io.FileNotFoundException: http://10.230.253.22/vipsrv/HsVipWebSrv.dll/wsdl/IHsVipWebStv?wsdl
at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.tryWithMex(RuntimeWSDLParser.java:146)
at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:122)
at com.sun.xml.internal.ws.client.WSServiceDelegate.parseWSDL(WSServiceDelegate.java:226)
at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:189)
at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:159)
at com.sun.xml.internal.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:81)
at javax.xml.ws.Service.<init>(Service.java:56)
at org.tempuri.IHsVipWebStvservice.<init>(IHsVipWebStvservice.java:54)
at WsTest.testWS(WsTest.java:26)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:69)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:48)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.runners.ParentRunner.run(ParentRunner.java:292)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
2012年7月26日 16:48
目前还没有答案
相关推荐
- Jaxb - com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 8 counts of IllegalAnnotationExcepti
- SpringBoot+CXF发布Webservice时报错:counts of IllegalAnnotationExceptions
- com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
- com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 3 counts of IllegalAnnotationExceptions
- om.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
相关推荐
2. **配置WebLogic Server**:在WebLogic管理控制台中,创建一个新的域或使用已有的域。设置正确的JDBC数据源、JMS队列或主题等,如果CXF项目依赖于这些资源。 3. **部署CXF WAR**:将CXF项目打包成WAR文件后,可以...
PKU_3786Adjacent Bit Counts
2. **递归计算**:调用`fibonacci(n, call_count)`函数计算第\(n\)个Fibonacci数,并同时记录递归调用次数。 3. **返回结果**:返回`call_count`数组,该数组包含每个Fibonacci数所需的递归调用次数。 ```python ...
《C/C++调用Java方法详解》 C/C++与Java之间的交互,主要依赖于Java Native Interface(JNI)技术。自Java 1.1以来,JNI已成为Java平台不可或缺的一部分,它提供了一种机制,使Java代码能够调用本地(非Java)代码...
**知识点2:为score新增总分列和平均分列** ```python score['总分'] = score.apply(lambda x: x[5:17].sum(), axis=1) score['平均分'] = score.apply(lambda x: x[5:17].mean(), axis=1) ``` - **知识点说明**:...
资源分类:Python库 所属语言:Python 资源全名:stjudecloud_merge_counts-1.0.1-py3-none-any.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
### C++调用Java方法详解 #### 一、概述 在跨语言编程中,C++与Java之间的相互调用是一个常见的需求。本文旨在详细介绍如何利用Java Native Interface (JNI)技术来实现C++对Java方法的调用。JNI是Java平台的一部分...
2. `Age`:学生的年龄。 3. `Gender`:学生的性别。 4. `Alcohol_amount`:每月饮酒量(以升为单位)。 5. `Drinking_frequency`:每周饮酒次数。 6. `Alcohol_type`:偏好酒类类型(如啤酒、红酒、白酒等)。 7. `...
在C或C++中调用JAVA方法是一种常见的跨语言交互技术,主要依赖于Java Native Interface (JNI)。JNI是Java平台的一部分,它允许Java代码和其他语言编写的代码进行交互,从而实现混合编程。JNI提供了丰富的API,使得...
counts_of_ingredients: 连续;巧克力条中的成分数量 cocoa_butter: 二进制;是否使用可可脂制作 vanilla: 二进制;是否使用香草制作 lecithin: 二进制;是否使用卵磷脂制作 salt: 二进制;是否使用盐制作 sugar: 二...
- 在按钮的`OnClick`事件处理函数中,获取`TEdit`组件中的文本,调用`CountCharacters`函数,然后在`TMemo`中显示统计结果。 4. **代码示例**: ```pascal procedure TForm1.Button1Click(Sender: TObject); ...
Chapter 2. Configure hardware and applications Chapter 3. Configure network connectivity Chapter 4. Configure access to resources Chapter 5. Configure remote access and mobility Chapter 6. Monitor and...
在pandas里面常用value_counts确认数据出现的频率。 1. Series 情况下: pandas 的 value_counts() 函数可以对Series里面的每个值进行计数并且排序。 import pandas as pd df = pd.DataFrame({'区域' : ['西安', '...
每个Android应用至少有一个主DEX文件(classes.dex),大型应用可能包含多个DEX文件(如classes2.dex、classes3.dex等)。 DEX文件中的方法数量是有限制的。在Android 6.0(API级别23)之前,单个DEX文件最多只能...
本题考察了数据结构中二叉搜索树(BST)的基本性质及其变形操作——如何将一个二叉搜索树转换为一个排序的双向链表。在转换过程中,不允许创建任何新的节点,而是通过调整节点之间的指针来完成。 **具体步骤**: 1....
$ meteor add cottz:counts 快速开始 // server Meteor . publish ( 'users' , function ( ) { var cursor = Meteor . users . find ( ) ; Counts . create ( cursor , 'users' , 5000 ) . publish ( this ) ; ...
每个Android应用至少有一个主DEX文件,但在方法数超过一定限制时,可能需要多个DEX文件(如 multidex)。Android的默认方法数限制是65536,这包括了应用自身的方法和所有依赖库的方法。因此,监控和管理方法数对于...
在dataframe中value_counts,只计算个数,现增加百分比和累计百分比