Using Model.wsdl
Nathan Kontny <Nathan.Kontny-UgwZ4owrJFB8UrSeD/[email protected]> Wed, 25 Aug 2004 21:06:32 -0700
| Newsgroups | gmane.comp.java.keel.user |
|---|---|
| Message-ID | <1093493192.412d61c8103fb__33981.6240048551$1093493254$gmane$org@webmail.inventric.com> |
Mike, Did you have a desire to publish the Model.wsdl (found in clnt-axis) file to the Axis engine. With the current server-config.wsdd, Axis automagically creates its own wsdl file for the ModelService. If you want to attach the Model.wsdl file you have made to this service, the server-config.wsdd needs the <wsdlFile> tags. From the Axis ref guide at http://ws.apache.org/axis/java/reference.html: wsdlFile is the path to a WSDL File; can be an absolute path or a resource that axis.jar can load. Useful to export your custom WSDL file. When specify a path to a resource, place a forward slash to start at the beginning of the classpath (e.g "/org/someone/res/mywsdl.wsdl"). How does Axis know whether to return a file or resource? It looks for a file first, if that is missing a resource is returned. I'd be happy to alter server-config.wsdd to make this happen, if this is what your intention was. Still, as per my previous note, we need to get the build fixed to get the wsdl and wsdd files into their proper places.... -Nate