It does work, I think what the issue is that you are trying to get the XML to display in a browser like a web page does.
This is the whole point of the API is that it does not display in a browser, but instead returns XML which is then parsed to get the data you need from the XML.
When you submit a test to the API, if you use a browser view the source code.
<?xml version="1.0" encoding="utf-8" ?> <ApiResponse> <ErrorCode>0</ErrorCode> <ErrorDescription/> <ResultData recordcount="1"> <Record> <ApiVersion>1.03</ApiVersion> </Record> </ResultData> </ApiResponse>
|
This XML code is intended to be parsed by an XML Parser, not as a viewable page in a web browser.