Wow!

After a little more than three months of persistence, my web service
works.

However, I don't like the fact that I'm getting all these repeated
namespace definitions attributes in my SOAP reply. For instance, my web
service returns an array of strings. Each entry in the string array
represents a single line of output. However, each entry as it is
represented in the XML file exhibits the following structure:

<ns1:string xmlns:ns1="http://au.net.wcg.webservice.jvmhost/WSDL";>a line
of output</ns1:string>

So, if I ran a program that produced, say, 1000 lines of output, it
would produce 1000 tags above, differing only in the contents of the
actual line. This is wonderfully wastefull - I want to the namespace
prefix (ns1) to be defined elsewhere other than for each tag that
represents each line of output.

How do I do this?

  Owen.

Reply via email to