Hello All,
I've defined my web service as such:
<service name="myService" provider="java:RPC">
<parameter name="allowedMethods" value="*" />
<parameter name="className" value="my.pacage.name" />
<namespace>http://mynamespace/myWebserviceName</namespace>
...
</service>
The problem I'm having is that for some reason, when the wsdl is created
by Axis, two different schema tags are used in the types portion of the
wsdl. The first schema uses namespace
"http://mynamespace/myWebserviceName" and the second schema uses
namespace "http://my.package.name".
I think this is a bug due to my previous posting about writing out
derived types. Seems like any derived types that aren't specifically
placed into the server-config.wsdd file get written to the wsdl with the
package name as the namespace.
Does this seem like a bug to anyone or is there some wsdd setting I can
implement to override this functionality and I just don't know about it?
Thanks,
-Clint