Java
Java
Transition from Http.PostUrlEncoded to Http.HttpReq
Provides instructions for replacing deprecated PostUrlEncoded method calls with HttpReq.Sends the following raw HTTP request:
POST /echoPost.asp HTTP/1.1 Host: www.chilkatsoft.com Content-Type: application/x-www-form-urlencoded Content-Length: 50 company=example&ip=111.111.111.111&url=example.com
Chilkat Java Downloads
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
boolean success = false;
CkHttp http = new CkHttp();
String url = "https://www.chilkatsoft.com/echoPost.asp";
CkHttpRequest req = new CkHttpRequest();
req.AddParam("company","example");
req.AddParam("ip","111.111.111.111");
req.AddParam("url","example.com");
// ------------------------------------------------------------------------
// The PostUrlEncoded method is deprecated:
CkHttpResponse responseObj = http.PostUrlEncoded(url,req);
if (http.get_LastMethodSuccess() == false) {
System.out.println(http.lastErrorText());
return;
}
// ...
// ...
// ------------------------------------------------------------------------
// Do the equivalent using HttpReq.
// Your application creates a new, empty HttpResponse object which is passed
// in the last argument and filled upon success.
CkHttpRequest req2 = new CkHttpRequest();
req2.AddParam("company","example");
req2.AddParam("ip","111.111.111.111");
req2.AddParam("url","example.com");
req2.put_HttpVerb("POST");
req2.put_ContentType("application/x-www-form-urlencoded");
CkHttpResponse resp = new CkHttpResponse();
success = http.HttpReq(url,req2,resp);
if (success == false) {
System.out.println(http.lastErrorText());
return;
}
// Results are contained in the HTTP response object...
}
}