It could be the SOP problem. Is the php running on a different server to GWT? If so, your messages aren't getting through because of SOP.
You can fix this by going to debug configurations in eclipse- >unchecking 'Run built in server' and matching the port number to your localhost. -Rob www.bookwhack.com On Mar 1, 4:53 pm, mibtar <[email protected]> wrote: > i tried another thing, i tried to echo without the > database result: > > $test = '<?xml version="1.0" encoding="UTF-8"?>'; > $test = $test . '<result>'; > $test = $test . '<row>'; > $test = $test . '<col>'; > $test = $test . 'Data 1'; > $test = $test . '</col>'; > $test = $test . '</row>'; > $test = $test . '<row>'; > $test = $test . '<col>'; > $test = $test . 'Data 2'; > $test = $test . '</col>'; > $test = $test . '</row>'; > $test = $test . '</result>'; > echo $test; > > and it was fine. > > it seems the problem before was > that the text inside the loop was not included. > this is really strange. > > i tried compiling, but pretty much the same. -- 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.
