This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 176538 - [68cat] Axis2 Web Service wizard incomplete
Summary: [68cat] Axis2 Web Service wizard incomplete
Status: RESOLVED WONTFIX
Alias: None
Product: webservices
Classification: Unclassified
Component: Axis2 (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P3 normal (vote)
Assignee: Milan Kuchtiak
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-11-11 07:53 UTC by javydreamercsw
Modified: 2010-11-17 13:27 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description javydreamercsw 2009-11-11 07:53:06 UTC
When I try to deploy the service into the server I get this error:

Target "axis2-deploy" does not exist in the project

Had to manually add the following to build.xml:
<import file="nbproject/axis2-build.xml"/>

Build.xml was the empty default build.xml file. I was using the Axis that is
available in the update center (2.1 I think), Windows XP, JDK 1.6.16. The
project was not originally created in NB 6.8.

The xml files for axis were created, it was just missing the import in the
build.xml file. After that it worked.
Comment 1 palance 2010-03-22 20:04:33 UTC
I encounter a very similar problem as well. If I create a brand new project then I am able to deploy the web service for that project without a problem. If I attempt to create one from an existing class and deploy that then I experience the same error previously stated. Target "axis2-deploy" does not exist in the project.
Spec: Windows XP, JDK 1.6.0, NB 6.8, Axis2 1.5.1
Comment 2 Milan Kuchtiak 2010-03-24 12:04:27 UTC
To reproduce the problem, please, attach the entire project.

Nopte:
The following files/elements should be present in project :

1/ nbproject/axis2.xml
2/ nbproject/axis2-build.xml
3/ nbproject/project.xml should contain the axis2 extension:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
    <type>org.netbeans.modules.java.j2seproject</type>
    <configuration>
        <buildExtensions xmlns="http://www.netbeans.org/ns/ant-build-extender/1">
            <extension file="axis2-build.xml" id="axis2">
                <dependency dependsOn="axis2-aar" target="jar"/>
            </extension>
        </buildExtensions>
        <data ...>
        ...
    </configuration>
</project>

4/ nbproject/build-iml.xml must import axis2-build.xml:
<project ...>
  <import file="axis2-build.xml"/>
  ...

I need to know the exact steps to reproduce.
Comment 3 javydreamercsw 2010-03-25 11:46:08 UTC
As I mention in the other issue, I no longer have that configuration in my project. I can try to reproduce it and attach the project afterwards.
Comment 4 Denis Anisimov 2010-11-17 13:27:55 UTC
No longer supported functionality.