How to retrieve a json object from a sharepoint list

abvolt

New Member
I am created myself a custom list with sharepoint 2007, which is exactly the same as any excel spreadsheet in effect.I was told that i can get this out all of the information as a json or XML object. I don't have access to the file system, only to sharepoint web interface.Can i just use a url and do my normal \[code\]getJson\[/code\]?\[code\] $.getJSON("http://somesharepointurl.asp?get=json",function(results){ console.info(results); $.each(results, function(){ }); });\[/code\]Or is there no way of doing this without writing some backend service?Edit\[code\]https://someserver/sites/DisasterRecovery/eventmgmt/DRR/_vti_bin/owssvr.dll?Cmd=Display&List={B0ACA997-8A41-498B-97FE-B276D48F64D7}&XMLDATA=http://stackoverflow.com/questions/13878001/TRUE\[/code\]I have tried this... it gave me this:\[code\]HTTP/1.1 200 OKServer: Microsoft-IIS/7.5Date: Fri, 14 Dec 2012 11:41:55 GMTConnection: close\[/code\]No idea what to look for whatsoever i'm afraid :(
 
Back
Top