Derrell,
thanks for the info.
Since I have no influence on the output that the server produces, I
managed to work it out using a local php proxy script which does some
cleanup and adds the javascript callback for script transport. Not
ideal, but a decent solution.
Christian
Derrell Lipman schri
On Feb 3, 2008 2:36 PM, Derrell Lipman
<[EMAIL PROTECTED]> wrote:
> If you want to experiment, you can likely get text returned to you
> using a "fragment identifier transport":
>
> "A more recently developed content-retrieval technique employs
> communication between a page's script and a hidden i
Derrell Lipman schrieb:
> On Feb 3, 2008 12:48 PM, bibliograph <[EMAIL PROTECTED]> wrote:
>
>> Hello,
>>
>> With qooxdoo 0.7.2, I am making a cross-domain request to a local server :
>>
>> // get all entries from bookends for the years
>> for ( var year = yearStart; year <= yearEnd;
On Feb 3, 2008 2:28 PM, Derrell Lipman
<[EMAIL PROTECTED]> wrote:
> You are extremely limited in what you can do with cross-domain
> requests. Script Transport does the best job it can (at the expense,
> as you saw, of having to reply with that requestFinished() call). The
> response should need
On Feb 3, 2008 2:17 PM, bibliograph <[EMAIL PROTECTED]> wrote:
> Derrell Lipman schrieb:
>
> > On Feb 3, 2008 12:48 PM, bibliograph <[EMAIL PROTECTED]> wrote:
> >
> >> Hello,
> >>
> >> With qooxdoo 0.7.2, I am making a cross-domain request to a local server :
> >>
> >> // get all entries from
On Feb 3, 2008 12:48 PM, bibliograph <[EMAIL PROTECTED]> wrote:
> Hello,
>
> With qooxdoo 0.7.2, I am making a cross-domain request to a local server :
>
> // get all entries from bookends for the years
> for ( var year = yearStart; year <= yearEnd; year++)
> {
> var beReq
Hello,
With qooxdoo 0.7.2, I am making a cross-domain request to a local server :
// get all entries from bookends for the years
for ( var year = yearStart; year <= yearEnd; year++)
{
var beReq = new qx.io.remote.Request( beExpUrl+year,
qx.net.Http.METHOD_GET, qx.util.M