Searched defs:wsdls (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DMexEntityResolver.java51 private final Map<String, SDDocumentSource> wsdls = new HashMap<String, SDDocumentSource>(); field in class:MexEntityResolver
53 public MexEntityResolver(List<? extends Source> wsdls) throws IOException { argument
55 for (Source source : wsdls) {
67 this.wsdls.put(systemId, doc);
74 SDDocumentSource src = wsdls.get(systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportOptions.java90 * Setting disableSSLHostVerification to true disables the SSL Hostname verification while fetching the wsdls.
262 if (wsdls.isEmpty()) {
270 wsdlLocation = wsdls.get(0).getSystemId();
278 addFile(arg, wsdls, ".wsdl");
281 private final List<InputSource> wsdls = new ArrayList<InputSource>(); field in class:WsimportOptions
305 return wsdls.toArray(new InputSource[wsdls.size()]);
325 wsdls.add(absolutize(is));
349 addRecursive(dir, ".wsdl", wsdls);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java90 private Map<String,SDDocument> wsdls; field in class:HttpAdapter
93 * Reverse map of {@link #wsdls}. Read-only.
98 * A reference to the service definition from which the map of wsdls/revWsdls
163 wsdls = Collections.emptyMap();
166 wsdls = new HashMap<String, SDDocument>(); // wsdl=1 --> Doc
172 wsdls.put("wsdl", sdd);
173 wsdls.put("WSDL", sdd);
184 wsdls.put("wsdl="+(wsdlnum++),sdd);
187 wsdls.put("xsd="+(xsdnum++),sdd);
192 for (Entry<String,SDDocument> e : wsdls
[all...]

Completed in 24 milliseconds