Oh I see... try putting th full URL of the PHP page rather than the relative path. Because it seems to be reading the file rather than the response the PHP script should give via Apache. So instead of: String url = "authenticate.php?name=\'"+ name"\'&pwd=\'"+pass+"\'"; try: String url = "*http://localhost/*authenticate.php?name=\'"+ name"\'&pwd=\'"+pass+"\'"; or put whatever ur hostname is etc... See what happens.
Good luck. -Pavel On Thu, Oct 2, 2008 at 12:05 PM, RamI <[EMAIL PROTECTED]> wrote: > > First thanks to helping me :D > > >Pavel > > That is exactly the problem : my JSON response contains my whole php > script instead of the interpreted version of this script. > Sorry if I'm not clear enough, my english is not as perfect as I would > like ;) > > >Ian > In fact, my php file is querying an apache server, which runs > independently of the application in hosted mode. Putting the required > response text already proved me that if the php file is correctly > interpreted, the rest of the script runs fine, but when I compile my > code with the original php file, I don't have the good result, so I > conclude that the php script is not interpreted. Nevertheless I don't > see what I am missing. > However I went on your site (may be very useful for what is coming > next with me, thanks), and saw in some part that the sdk was > recquired... I think I only use the runtime environment... Does > Eclipse includes one devlopement kit?) > > RamI > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
