I am used to consuming Web services via a XMLHttpRequest, to retrieve xml or JSON.

Recently, I have been working with SharePoint REST services, which can return a single value (for example 5532, or "Jeff"). I am wondering if there is a more efficient way than XMLHttpRequest to retrieve this single value. For example, would it work if I loaded the REST url via an iframe, then retrieved the iframe content? Or is there any other well established method?

[Edit] By single value, I really mean that the service just returns these characters. This is not even presented in a JSON or xml response.

link|improve this question

80% accept rate
If you've done everything you can think of and XHR is too heavyweight, maybe you need to rethink the problem. – Joshua K Dec 24 '11 at 1:20
Well, you're right, and I have alternate options. But I am trying to push the REST one as far as I can. – Christophe Dec 24 '11 at 1:36
The only way to retrieve data over HTTP is to retrieve data over HTTP. Whether you do it though XHR or an iframe... it doesn't matter. Consider batching up a bunch of requests all at once and returning them all in one go. – Joshua K Dec 24 '11 at 1:51
I understand. I was just trying to see if some ways are more efficient, for example by passing a smaller message. I am not even sure if the iframe idea would work at all. – Christophe Dec 24 '11 at 2:03
An iframe still causes an HTTP request like XHR. – Joshua K Dec 24 '11 at 2:16
feedback

2 Answers

up vote 0 down vote accepted

Any inefficiency in XMLHttpRequest is largely due to the overhead of HTTP, which the iframe approach is going to incur, as well. Furthermore, if the Sharepoint service expects to speak HTTP, you're going to need to speak HTTP. However, an API does not have to run over HTTP to be RESTful, per Roy Fielding, so if the service provided an API over a raw socket -- or if you simply wanted to craft your own slimmer HTTP request -- you could use a Flash socket via a library like: http://code.google.com/p/javascript-as3-socket/. You could cut the request message size down to under 100 bytes, and could pull out the response data trivially.

link|improve this answer
Makes sense. iframe is the only thing I could think of, that's why I posted my question. I don't really have control on the tools, it's just JavaScript consuming existing services. – Christophe Dec 24 '11 at 1:35
Yeah, I get it. If you want to leverage HTTP, then honestly XMLHttpRequest is the way to go, unless you have some sort of same-origin issues to get around -- it's popular, well-supported, well-understood, etc. – toddsundsted Dec 24 '11 at 1:42
feedback

The jQuery library is a well established framework which you can use. It´s also an article which answer your concrete question at StackOverflow.

link|improve this answer
Your examples are XMLHttpRequest. I am retrieving a single value, and looking for a lighter method. – Christophe Dec 24 '11 at 0:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.