Hy everybody!!!!

I 've following problem:

I hava a nonBean-complinet WSType.class
and a Webservice WS_Test.class using WSType

So I hav a Writen a (De)Serializer and the corresponding Factory, using XStream do serialize and deserialize

when I call java2wsdl via ant (

<java2wsdl
output="${local.wsdl}"
location="http://${target.server}:${target.port}/axis/services/WS-Test"
namespace="urn:sms"
classname="at.co.ksg.ws_test.WSTest_org"
style="rpc"
use="encoded"
serviceelementname="WSTest"
classpath="${bin.dir}"
>

<complexType
  classname="at.co.ksg.ws_test.WSType"
          namespace="urn:ws_test"
  serializer="at.co.ksg.ws_test.WSSerFactory"
  deserializer="at.co.ksg.ws_test.WSDeSerFactory"
/>
</java2wsdl>

) every thing work fine!

but when I call

wsdl2java

I have troubles ( cause the urn:ws_test isn't found! )

no my question:


is there somthing like the completype statement ( where I tell (de)serializer ) in the wsdl2java task?

best regard harry!

Reply via email to