ejoch wrote: > > Hello, > > I am using CXF 2.0.4, with Mule, to generate WSDLs from java interfaces > (Jax-ws). Is there way for me to apply a stylesheet to the generated wsdl? >
Yup, save the wsdl locally and run it through Xalan. Go to town! http://www.jroller.com/gmazza/entry/using_xslt_to_better_organize ejoch wrote: > > Having previously using Spring-ws to generate WSDLs, I found applying a > stylesheet was a useful way to transform an annotated WSDL into user > documentation. So I wondered if there was some way to override/extend the > wsdl generation to apply an XSL stylesheet? > Well, if you're using Ant (or Maven, using Ant task plugin) for your WSDL2Java generation, I think you can further modify the outputted wsdl file and run it through your stylesheet. The Ant user's list will help you here. It wouldn't be beneficial for us to make this command-line, because then every app for which you want a stylesheet would need this functionality. Better to learn once how to do this with Ant, and then you automatically know how to do this for anything that outputs an XML. HTH, Glen -- View this message in context: http://www.nabble.com/CXF-Jax-ws-wsdls%3A-applying-a-stylesheet-tp18965177p18972872.html Sent from the cxf-user mailing list archive at Nabble.com.
