Hi, my applciation works fine in hosted mode, but not in web mode. It
compiles with no errors.
When I click a label in my app, it does this requestbuilder call to a
php file on a wamp distro at //localhost/:
public void onClick(Widget sender) {
urlString = ((Element)descripNode).getAttribute("href");
descripString =
((Element)descripNode).getAttribute("description");
CALL TO METHOD--->phpRequest(urlString);
}
public void phpRequest(String myurlString){
String url = "http://localhost/term_php_extraction.php?url=" +
myurlString;
RequestBuilder builder = new RequestBuilder(RequestBuilder.POST,
URL.encode(url));
// etc etc etc..........
This works in hosted mode, but in web mode, it does nothing,
Can anyone please help?
Thanks,
Scott.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---