Files
Pascal Obry 9b0df1f20b Add support for new XSD types from WSDL.
The new supported types are:

   xsd:date
   xsd:time
   xsd:decimal
   xsd:token
   xsd:normalized_string
   xsd:anyuri

Part of eng/toolchain/aws#39
2024-09-07 12:11:38 +02:00

10 lines
282 B
Python

from test_support import *
exec_cmd('ada2wsdl',
['-q', '-f', '-Pwsdl_d_main',
'-a', 'http://localhost:7723', 'wsdl_d.ads', '-o', 'wsdl_d.wsdl'])
exec_cmd('wsdl2aws',
['-q', '-f', '-cb', '-types', 'wsdl_d', 'wsdl_d.wsdl'])
build_and_run('wsdl_d_main');