| java.lang.Object com.google.gwt.user.client.HTTPRequest
Method Summary | |
public static boolean | asyncGet(String url, ResponseTextHandler handler) Makes an asynchronous HTTP GET to a remote server. | public static boolean | asyncGet(String user, String pwd, String url, ResponseTextHandler handler) Makes an asynchronous HTTP GET to a remote server. | public static boolean | asyncPost(String url, String postData, ResponseTextHandler handler) Makes an asynchronous HTTP POST to a remote server. | public static boolean | asyncPost(String user, String pwd, String url, String postData, ResponseTextHandler handler) Makes an asynchronous HTTP POST to a remote server. |
asyncGet | public static boolean asyncGet(String url, ResponseTextHandler handler)(Code) | | Makes an asynchronous HTTP GET to a remote server.
Parameters: url - the absolute url to GET Parameters: handler - the response handler to be notified when either the requestfails, or is completed successfully false if the invocation fails to issue |
asyncGet | public static boolean asyncGet(String user, String pwd, String url, ResponseTextHandler handler)(Code) | | Makes an asynchronous HTTP GET to a remote server.
Parameters: url - the absolute url to GET Parameters: handler - the response handler to be notified when either the requestfails, or is completed successfully false if the invocation fails to issue |
asyncPost | public static boolean asyncPost(String url, String postData, ResponseTextHandler handler)(Code) | | Makes an asynchronous HTTP POST to a remote server.
Parameters: url - the absolute url to which the POST data is delivered Parameters: postData - the data to post Parameters: handler - the response handler to be notified when either the requestfails, or is completed successfully false if the invocation fails to issue |
asyncPost | public static boolean asyncPost(String user, String pwd, String url, String postData, ResponseTextHandler handler)(Code) | | Makes an asynchronous HTTP POST to a remote server.
Parameters: url - the absolute url to which the POST data is delivered Parameters: postData - the data to post Parameters: handler - the response handler to be notified when either the requestfails, or is completed successfully false if the invocation fails to issue |
|
|