Package nexj.core.meta.integration.format.xml.wsdl

Examples of nexj.core.meta.integration.format.xml.wsdl.WSDLServiceExporter


         exportMessages(new SingletonIterator(message), writer);
      }
      else if (m_nOutputMode == OUTMODE_WSDL)
      {
         MetadataServiceConverter converter = new MetadataServiceConverter();
         WSDLServiceExporter exporter = new WSDLServiceExporter();
         SOAPService service = converter.export(message);

         exporter.setInvocationContext(m_context);
         exporter.exportService(service, writer);
      }
      else
      {
         throw new IllegalStateException("Unknown output mode " + m_nOutputMode);
      }
View Full Code Here


    * @throws IOException If an I/O error occurs.
    */
   private void exportService(Interface iface, Channel channel, Writer writer) throws IOException
   {
      MetadataServiceConverter converter = new MetadataServiceConverter();
      WSDLServiceExporter exporter = new WSDLServiceExporter();
      SOAPService service = (iface == null) ? converter.export(channel) : converter.export(iface, channel);

      exporter.setInvocationContext(m_context);
      exporter.exportService(service, writer);
   }
View Full Code Here

TOP

Related Classes of nexj.core.meta.integration.format.xml.wsdl.WSDLServiceExporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.