diff options
Diffstat (limited to 'misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js')
-rw-r--r-- | misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js b/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js new file mode 100644 index 0000000..19e1ad0 --- /dev/null +++ b/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.js @@ -0,0 +1,18 @@ +var csw_request = +'<csw:GetDomain xmlns:csw="http://www.opengis.net/cat/csw/2.0.2" service="CSW" version="2.0.2">' + + '<csw:PropertyName>type</csw:PropertyName>' + +'</csw:GetDomain>'; + +var csw_response = +'<?xml version="1.0" encoding="UTF-8"?>' + +'<csw:GetDomainResponse xmlns:csw="http://www.opengis.net/cat/csw/2.0.2">' + + '<csw:DomainValues type="csw:Record">' + + '<csw:PropertyName>type</csw:PropertyName>' + + '<csw:ListOfValues>' + + '<csw:Value my_attr="my_value">dataset</csw:Value>' + + '<csw:Value>service</csw:Value>' + + '</csw:ListOfValues>' + + '</csw:DomainValues>' + +'</csw:GetDomainResponse>' +; + |