小智 29
客户的最小罐子是:
下面的STAX jar不是Axis2 1.5.1版本的一部分,如果您的JDK版本低于6,则需要它:
Ale*_*lex 14
(注意:此回复是由Aaron Digulla本人提供的.以下是他自己答案的确切文字.)
在maven2中,使ADB客户端工作的最小依赖关系(与从WSDL创建Java类的方式中的"ADB")是:
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-kernel</artifactId>
<version>1.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
<version>1.4.1</version>
</dependency>
Run Code Online (Sandbox Code Playgroud)
嗯...似乎我不能把它标记为正确的答案.有人可以复制这个,以便我可以标记他的帖子吗?
Ren*_*aud 13
不得不添加运输工具
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
<version>1.5.4</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-transport-local</artifactId>
<version>1.5.4</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-transport-http</artifactId>
<version>1.5.4</version>
</dependency>
Run Code Online (Sandbox Code Playgroud)
she*_*shi 10
摘要中对工作客户端的最小依赖性
下面列出了具有详细信息的最小依赖项
客户端存根使用针对给定WSDL的%AXIS2_HOME%\ bin\WSDL2Java工具生成的ServiceClient类(为了生成,您需要类路径上的所有轴jar,通过设置AXIS_HOME可以轻松实现)
org.apache.axis2.AxisFault:连接被拒绝:连接 - >错误仅在Web服务未启动或由于某些其他原因而可访问时
请注意确切的版本,但是行为是通用的,因为版本之间的包装更改,因此,提到上面的FQCN-
轴版本 - 1.6.3
Tomcat版本 - Apache Tomcat/7.0.64
Servlet版本 - 3.0
java.runtime.version - 1.7.0_79-b15
没有axis2-xmlbeans, Axis2版本1.6.2对我来说不起作用(尽管这可能与我使用axis2-wsdl2code-maven-plugin插件和xmlbeans作为我的数据绑定框架这一事实有关).我有以下POM:
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-kernel</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-transport-http</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-transport-local</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-xmlbeans</artifactId>
<version>1.6.2</version>
</dependency>
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
31836 次 |
最近记录: |