1

このチュートリアルのすべてを試しましたが、Web サービスをデプロイするときにこのエラーが発生しました。 ここに画像の説明を入力

ご覧のとおり、存在しないと書かれている構成は実際には存在します。Google で検索しましたが、見つけたのは同じ問題を抱えている例だけでしたが、解決策は投稿されませんでした。

4

2 に答える 2

3
I found solution regarding mentioned problem. It seems Netbeans 7.4+ is not creating axis2 config file for deployment. You can do it manually.

here is the guide how to do it in French:
http://vincent-lecomte.blogspot.be/2014/10/java-probleme-config-axis2-et-netbeans.html


Below is my config for Netbeans 8.0:

1. Go to directory C:\Users\[Curr user]\AppData\Roaming\NetBeans\8.0\config\Preferences\org\netbeans\modules
2. Create folder "websvc"
3. In the folder "websvc" create file "axis2.properties"
4. In the file "axis2.properties" paste below text:

    AXIS_DEPLOY=D:\\Tomcat\\webapps\\axis2    //change to the directory where axis2 is installed
    AXIS_URL=http://[yourhost]:8080/axis2
    TOMCAT_MANAGER_USER=user
    TOMCAT_MANAGER_PASSWORD=password

Hope this helps.
于 2014-11-10T21:43:16.943 に答える