I'm having a problem
with the namespaces in the WSDL generated using the "?wsdl" URL
parameter. I'm using Axis 1.2
alpha (Java version) and according to
the documentation it defaults to use SOAP 1.1, which is what I want.
After my service is deployed,
I retrieve the WSDL with the correct
I'm using Axis 1.2 alpha
on the server. I'm having trouble building a .Net client because the generated
WSDL from Axis (using ?wsdl) maps all of the primitive types to the SOAP 1.2 "http://www.w3.org/2003/05/soap-encoding" namespace, which .Net
doesn't like because it only supports SOAP 1.1.
I've got a web service that returns a List. Sometimes it returns an
instance of ArrayList and somtimes it returns an instance of my own class
ClassifiedList, which extends ArrayList. I've written my own
serializer/deserializer (and factories) to serialize ClassifiedList, but I
can't get Axis to c