All of my data types are represented by my own serializers and deserializers. Now that they are finished, I'd like to get the WSDL generation going for those custom types. Does anyone have experience with any of the following:
1) Currently the WSDL Axis generates has all of my methods, but no type descriptions. I know there is a way to supply the WSDL, but I don't want to exhaustively write method descriptions all over again, I just want to supply the type descriptions. Is there a way to do this via a single file in the server-config.wsdd? 2) If the above doesn't work, is there a way to upload these types using the writeSchema methods? Mine currently returns null. I noticed that the Types class has a method for loadSchemaTypes(). Can this just be used as is? Is the assumption here that the serializer only loads a single type for the object type it represents or does it load multiple? 3) If that way doesn't work, is there any documentation on how to properly build up the WSDL using the other calls in the Types class? Thanks! J.P.
