Using Netbeans with Axis 1 shows HTTP Version Not Supported
Hello,
I need to use Axis 1 with Netbeans. So i have integrated Axis 1 in build.xml file to use axis ant targets. If i am executing the deploy target:
<target name="AdminClientDeploy" description="adminClient" depends="validate">
<java classname="org.apache.axis.client.AdminClient" fork="yes"
dir="." classpathref="${classpath_id}">
<classpath>
<pathelement location="${build.classes}" />
</classpath>
<arg value="-l ${service.url}/servlet/AxisServlet"/>
<arg value="${basedir}\src\${service.java.path}\deploy.wsdd" />
</java>
</target>
It shows
running Apache Axis Admin client
Processing file D:\\Axis1WS\src\java\axis1\deploy.wsdd
Exception: AxisFault
faultCode:{http://xml.apache.org/axis/}HTTP
faultSubcode:
faultString: (505)HTTP Version Not Supported
faultActor:
faultNode:
faultDetail:
{}:return code: 505
{http://xml.apache.org/axis/}HttpErrorCode:505
Java Result: 1
BUILD SUCCESSFUL (total time: 1 second)
I have no idea whats the problem, but i think it's a configuration problem with netbeans. The compilation itself shows no problem. Please let me know, if you have some experience and especially if you know this problem.
Thanks
Alex

