Is there a way to parse XML from an encrypted API via jQuery? Would I need to use ajax? Anyone have any examples? This is what I have:
http://www.mysite.com/net/WebService.aspx?Login=email@email.com&
EncryptedPassword=XXXXX&EDI_Name=Generic\Products&
SELECT_Columns=p.ProductCode,pe.ProductPrice
This is the returned XML I would like to also return and parse into a table or something:
<?xml version="1.0" encoding="iso-8859-1"?>
<Export>
<Products_Joined>
<productcode>PRODUCT 1</productcode>
<productprice>1500</productprice>
</Products_Joined>
</Export>
Yes, assuming you have access to run javascript on the server, something like this: