1

我尝试了本教程中的所有内容,但是当需要部署 Web 服务时,我得到了这个错误。 在此处输入图像描述

如您所见,它所说的配置实际上不存在。我搜索了谷歌,但我只能找到人们遇到同样问题的实例,但从未发布解决方案。

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 回答
3

您好,请按照以下步骤解决问题。

步骤1:从Internet下载axis2插件文件“org-netbeans-modules-websvc-axis2.nbm”。在netbeans中安装插件并重新启动netbeans。

第 2 步:浏览 .nbm 文件的位置并单击安装,然后重新启动 netbeans。

创建项目后的主要问题是部署在tomcat服务器中。在我们进行部署时,它显示以下内容。

“既没有为 Axis2 Web 应用程序(Axis2 环境)指定部署目录也没有指定 war 文件。请指定axis2.war 或axis2 部署目录位置

工具 -> 选项 -> Axis2 -> 部署面板。”

要解决上述问题,请按照以下步骤操作。

• 转到以下文件夹:UserProfile\AppData\Roaming\IDE\7.4\config\Preferences\org\netbeans\modules。

• 创建一个子文件夹“websvc”。

• 创建一个“axis2.properties”文件。

• 添加以下属性(在部署目录中添加双斜杠):

AXIS_DEPLOY=C:\Program Files (x86)\Apache Software Foundation\Tomcat 8.0\webapps\axis2.war

AXIS_URL= http://localhost:8090/axis2

TOMCAT_MANAGER_PASSWORD=root

TOMCAT_MANAGER_USER=root

最终文件路径将是(例如):C:\Users\BalaSubrahmanyam\AppData\Roaming\NetBeans\8.0.2\config\Preferences\org\netbeans\modules\websvc\axis2.properties

保存文件,然后再次重新启动 netbeans 并构建项目。

自定义的axis2 war现在部署在tomcat服务器中。

于 2016-04-21T13:01:59.627 回答