且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

连接到Magento SOAP API java

更新时间:2022-10-31 13:34:14

我刚遇到同样的问题并将这些依赖项添加到我的maven pom

I just ran into the same issue and added these dependencies to my maven pom

<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>

希望这有帮助。