Class
421422423424425426427428429430431
} if (wsdlServicePort != null && wsdlServicePort.length() > 0) { emitter.setServicePortName(wsdlServicePort); } Document doc = emitter.emit(Emitter.MODE_ALL); msgContext.setProperty("WSDL", doc); } catch (NoClassDefFoundError e) { log.info( JavaUtils.getMessage("toAxisFault00"), e ); throw new AxisFault(e.toString(), e);
238239240241242243244245246247248
if (msgContext.isPropertyTrue(AxisEngine.PROP_EMIT_ALL_TYPES)) { emitter.setEmitAllTypes(true); } Document doc = emitter.emit(Emitter.MODE_ALL); msgContext.setProperty("WSDL", doc); } catch (NoClassDefFoundError e) { entLog.info(Messages.getMessage("toAxisFault00"), e); throw new AxisFault(e.toString(), e);
247248249250251252253254255256257
if(methods!=null) { emitter.setAllowedMethods(methods); } if (outputImpl == null) { // Normal case emitter.emit(output, Emitter.MODE_ALL); } else { // Emit interface and implementation wsdls emitter.emit(output, outputImpl); }
250251252253254255256257258259260
if (outputImpl == null) { // Normal case emitter.emit(output, Emitter.MODE_ALL); } else { // Emit interface and implementation wsdls emitter.emit(output, outputImpl); } } catch(BuildException b) { //pass build exceptions up the wire
486487488489490491492493494495496
service.getOption(OPTION_WSDL_INPUTSCHEMA); if (null != wsdlInputSchema && wsdlInputSchema.length() > 0) { emitter.setInputSchema(wsdlInputSchema); } Document doc = emitter.emit(Emitter.MODE_ALL); msgContext.setProperty("WSDL", doc); } catch (NoClassDefFoundError e) { entLog.info( Messages.getMessage("toAxisFault00"), e ); throw new AxisFault(e.toString(), e);
258259260261262263264265266267268
service.getOption(OPTION_WSDL_INPUTSCHEMA); if (null != wsdlInputSchema && wsdlInputSchema.length() > 0) { emitter.setInputSchema(wsdlInputSchema); } Document doc = emitter.emit(Emitter.MODE_ALL); msgContext.setProperty("WSDL", doc); } catch (NoClassDefFoundError e) { entLog.info(Messages.getMessage("toAxisFault00"), e); throw new AxisFault(e.toString(), e);
232233234235236237238239240241242
235236237238239240241242243244245
if (soapAction != null) { emitter.setSoapAction(soapAction); } if (outputImpl == null) { // Normal case emitter.emit(output, Emitter.MODE_ALL); } else { // Emit interface and implementation wsdls emitter.emit(output, outputImpl); }