Go back to using Java2WSDL again
This reverts the changes to use SimpleAxisServer in favor of (again)
using the Java2WSDL program locally. The main reason for using the more
complex SimpleAxisServer "approach" was that before classes in the util
package was moved to the motedata package it ended up in the namespace:
"http://util". This is no longer a problem and the differences in the
generated WSDL documents are minimal:
diff -bBur build-axis/wsdl/authentication.wsdl build-java2wsdl/wsdl/authentication.wsdl
--- build-axis/wsdl/authentication.wsdl 2007-07-04 01:58:05.
000000000 +0200
+++ build-java2wsdl/wsdl/authentication.wsdl 2007-07-04 02:03:39.
000000000 +0200
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="authentication.remote.distlab.diku" ...>
<!--WSDL created by Apache Axis version: 1.4
Built on Mar 01, 2007 (08:51:19 GMT)-->
@@ -7,8 +8,8 @@
<complexType name="Credential">
<sequence>
<element name="hideValue" type="xsd:boolean"/>
- <element name="label" nillable="true" type="xsd:string"/>
- <element name="value" nillable="true" type="xsd:string"/>
+ <element name="label" nillable="true" type="soapenc:string"/>
+ <element name="value" nillable="true" type="soapenc:string"/>
...