mirror of
https://github.com/AdaCore/aws.git
synced 2026-02-12 12:29:46 -08:00
The new supported types are: xsd:date xsd:time xsd:decimal xsd:token xsd:normalized_string xsd:anyuri Part of eng/toolchain/aws#39
10 lines
282 B
Python
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');
|