I have a java-based web service built with Axis2. The WSDL was generated by the Eclipse 3.6 wizard.
I have a Flex 4 client built using introspection via the WSDL in Flash Builder 4.
For calls where the method takes a 'simple' type like String or int, it all seems OK, but for calls where the parameter is (on the Java side) and OMElement, ie XML data, I'm setting the following runtime error on the service:
org.apache.axis2.engine.AxisEngine - namespace mismatch require http://server.rsc.geo.othermaps.com found none
http://server.rsc.geo.othermaps.com is indeed the target namespace declared in the WSDL.
The same workflow (use autogenerated client built from web service introspection) worked fine against the same service in Flex 3, so I'm not sure where to start hunting. So I really need to manually add the namespace to the XML data I'm submitting?
D