Hi,
When you have no control of what the service returns, you should write your own
service. Call your service from the same origin, let your service make the
cross-domain request, transform the answer to your needs and return it as a
response.
Tino
Am 07.05.2011 um 12:44 schrieb dabd:
>> Fr
A generic web service has to at least support JSONP, to be usable with
ScriptTransport. Those that do (like Yahoo's YQL) usually provide a
dedicated parameter in their API, where you can pass the string that is
used as the callback. The server will then wrap its results in that
call. You might
>From what I read in the forums and the documentation the only way to make a
cross-domain request is to use the ScriptTransport but this requires that
the server agrees to return a call to
qx.io.remote.ScriptTransport._requestFinished(id, returnValue);
But what if I have no control of what the