本文整理汇总了Java中org.apache.xmlrpc.XmlRpcRequest.getConfig方法的典型用法代码示例。如果您正苦于以下问题:Java XmlRpcRequest.getConfig方法的具体用法?Java XmlRpcRequest.getConfig怎么用?Java XmlRpcRequest.getConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.xmlrpc.XmlRpcRequest
的用法示例。
在下文中一共展示了XmlRpcRequest.getConfig方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendRequest
import org.apache.xmlrpc.XmlRpcRequest; //导入方法依赖的package包/类
@Override
public Object sendRequest(XmlRpcRequest req) throws XmlRpcException {
XmlRpcHttpClientConfig config = (XmlRpcHttpClientConfig) req.getConfig();
URL serverUrl = config.getServerURL();
if (serverUrl == null) {
throw new XmlRpcException("Invalid server URL");
}
try {
con = openConnection(serverUrl);
con.setUseCaches(false);
con.setDoInput(true);
con.setDoOutput(true);
} catch (IOException e) {
throw new XmlRpcException("Failed to create URLConnection: " + e.getMessage(), e);
}
return super.sendRequest(req);
}
示例2: sendRequest
import org.apache.xmlrpc.XmlRpcRequest; //导入方法依赖的package包/类
public Object sendRequest(XmlRpcRequest pRequest) throws XmlRpcException {
config = (XmlRpcHttpClientConfig) pRequest.getConfig();
URL url = config.getServerURL();
ssl = "https".equals(url.getProtocol());
hostname = url.getHost();
int p = url.getPort();
port = p < 1 ? 80 : p;
String u = url.getFile();
uri = (u == null || "".equals(u)) ? "/" : u;
host = port == 80 ? hostname : hostname + ":" + port;
headers.put("Host", host);
return super.sendRequest(pRequest);
}
示例3: initHttpHeaders
import org.apache.xmlrpc.XmlRpcRequest; //导入方法依赖的package包/类
@Override
protected void initHttpHeaders(final XmlRpcRequest pRequest) throws XmlRpcClientException {
super.initHttpHeaders(pRequest);
XmlRpcHttpClientConfig config = (XmlRpcHttpClientConfig) pRequest.getConfig();
URI requestUri;
try {
requestUri = config.getServerURL().toURI();
} catch (URISyntaxException e) {
throw new XmlRpcClientException(e.getMessage(), e);
}
setRequestHeader("Cookie", cookieFileStore.toCookieRequestText(requestUri.getHost(), false));
}