Hi,
We've recently picked up SAS 9.1.2 to notch up our use of XML. However it appears that I cannot use a URL to reference my XML data.
Has anyone tried this ?
My Code looks a bit like this:
This produces the following error:
The code works fine when I save the XML data as a local file, but using XML as "Web Services" is one of the biggest wins of using XML, surely SAS support this ?!
Any hints/tips would be greatly appreciated.
We've recently picked up SAS 9.1.2 to notch up our use of XML. However it appears that I cannot use a URL to reference my XML data.
Has anyone tried this ?
My Code looks a bit like this:
Code:
filename ds '[URL unfurl="true"]http://username:passwd@server1/hel/ABCD.nsf/e9b7e790faded6da4a256ad8000093d1?ReadViewEntries';[/URL]
filename SXLEMAP 'C:\Projects\XML2SAS\ds.map';
libname ds xml xmlmap=SXLEMAP access=READONLY;
This produces the following error:
Code:
ERROR: Physical file does not exist, C:\Documents and Settings\username\[URL unfurl="true"]http://username:passwd@server1/hel/ABCD.nsf/e9b7e790faded6da4a256ad8000093d1?ReadViewEntries.[/URL]
The code works fine when I save the XML data as a local file, but using XML as "Web Services" is one of the biggest wins of using XML, surely SAS support this ?!
Any hints/tips would be greatly appreciated.