On Feb 11, 3:16 pm, nino <[email protected]> wrote: > Well this code is working inside of the non-application sandboy : > > function HCall(){ > > xmlhttp = new XMLHttpRequest(); > xmlhttp.open("GET", > "http://localhost:8888/pdmdesktop/host", > true); > xmlhttp.onreadystatechange = function() { > > if(xmlhttp.readyState == 4) { > > if(xmlhttp.status == 200) > { > alert(xmlhttp.responseText); > } > } > > } > > xmlhttp.send(null); > > } > > bei setting : allowCrossDomainXHR="yes" inside of the iframe. > But still the Requestbuilder is throwing an excemtion > so i m also interesred why is that ?
Could it be because of the IFrameLinker? the GWT runs in an iframe created by the nocache.js, which obviously does not set allowCrossDomainXHR="yes". Have you tried using the "xs" linker? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
