/* 128 */ wsdlDefinitions = new WSDL11Reader().processDefinition(definition, wsdlLocation);
/* 129 */ wsdlDefinitions.setWsdlDocument(wsdlDoc);
/* */ }
/* */ else
/* */ {
/* 133 */ throw new WSDLException("Invalid default namespace: " + defaultNamespace);
/* */ }
/* */
/* 136 */ if (log.isTraceEnabled())
/* */ {
/* 138 */ StringWriter stwr = new StringWriter();
/* 139 */ WSDL11Writer wsdlWriter = new WSDL11Writer(wsdlDefinitions);
/* 140 */ wsdlWriter.write(stwr);
/* 141 */ log.trace("\n" + stwr.toString());
/* */ }
/* */ }
/* */ catch (WSDLException e)
/* */ {
/* 146 */ throw e;
/* */ }
/* */ catch (RuntimeException rte)
/* */ {
/* 150 */ throw rte;
/* */ }
/* */ catch (Exception e)
/* */ {
/* 154 */ throw new WSDLException(e);
/* */ }
/* */
/* 157 */ return wsdlDefinitions;
/* */ }