@Override
public ReqEntity getEntity() {
try {
URL url = new URL(jtf_url.getText());
return new ReqEntityUrlStreamBean(
jp_content_type_charset.getContentType(), url);
}
catch(MalformedURLException ex) {
throw new IllegalStateException("Body Stream URL is malformed!", ex);
}