File indexing completed on 2024-04-28 04:40:43

0001 #!/bin/bash
0002 set -eu
0003 
0004 # SPDX-FileCopyrightText: 2019 Casper Meijn <casper@meijn.net>
0005 # SPDX-License-Identifier: GPL-3.0-or-later
0006 #
0007 
0008 # First download WS-Discovery 2005-04
0009 wget --no-verbose -r http://schemas.xmlsoap.org/ws/2005/04/discovery/ws-discovery.xsd
0010 wget --no-verbose -r http://schemas.xmlsoap.org/ws/2004/08/addressing
0011 # Apperently the original file is not available anymore: http://schemas.xmlsoap.org/ws/2005/04/discovery/ws-discovery.wsdl
0012 wget --no-verbose https://web.archive.org/web/20070225062601/http://schemas.xmlsoap.org/ws/2005/04/discovery/ws-discovery.wsdl
0013 mv -v ws-discovery.wsdl schemas.xmlsoap.org/ws/2005/04/discovery/ws-discovery.wsdl
0014 
0015 # Then download OASIS WS-Discovery 2009-01
0016 wget --no-verbose -r http://docs.oasis-open.org/ws-dd/discovery/1.1/os/wsdd-discovery-1.1-wsdl-os.wsdl
0017 wget --no-verbose -r http://docs.oasis-open.org/ws-dd/discovery/1.1/os/wsdd-discovery-1.1-schema-os.xsd
0018 wget --no-verbose -r http://www.w3.org/2006/03/addressing/ws-addr.xsd
0019