Re: [qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-04 Thread Christian Boulanger
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

Re: [qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-03 Thread Derrell Lipman
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

Re: [qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-03 Thread bibliograph
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;

Re: [qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-03 Thread Derrell Lipman
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

Re: [qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-03 Thread Derrell Lipman
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

Re: [qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-03 Thread Derrell Lipman
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

[qooxdoo-devel] faulty HTML breaks qx.io.remote.Request

2008-02-03 Thread bibliograph
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