gpt4 book ai didi

org.apache.xmlrpc.common.XmlRpcHttpRequestConfig类的使用及代码示例

转载 作者:知者 更新时间:2024-03-21 03:03:05 26 4
gpt4 key购买 nike

本文整理了Java中org.apache.xmlrpc.common.XmlRpcHttpRequestConfig类的一些代码示例,展示了XmlRpcHttpRequestConfig类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlRpcHttpRequestConfig类的具体详情如下:
包路径:org.apache.xmlrpc.common.XmlRpcHttpRequestConfig
类名称:XmlRpcHttpRequestConfig

XmlRpcHttpRequestConfig介绍

[英]Extension of org.apache.xmlrpc.client.XmlRpcClientConfigfor HTTP based transport. Provides details like server URL, user credentials, and so on.
[中]组织的扩展。阿帕奇。xmlrpc。客户XMLRPCClientConfig用于基于HTTP的传输。提供服务器URL、用户凭据等详细信息。

代码示例

代码示例来源:origin: stackoverflow.com

public class MyRequestProcessorFactoryFactory
     extends RequestProcessorFactoryFactory.RequestSpecificProcessorFactoryFactory {
   protected Object getRequestProcessor(Class pClass, XmlRpcRequest pRequest) {
     Object result = super.getRequestProcessor(pClass, pRequest);
     // Configure the object here
     ClassOfObjectBeingExposedViaXmlRpc obj = (ClassOfObjectBeingExposedViaXmlRpc) result;
     XmlRpcHttpRequestConfig httpRequest = (XmlRpcHttpRequestConfig) pRequest.getConfig();
     MyUserClass user = authenticateSomehow(httpRequest.getBasicUserName(), httpRequest.getBasicPassword());
     obj.setUser(user);
     return result;
   }
 }

代码示例来源:origin: org.apache.xmlrpc/xmlrpc-server

public OutputStream newOutputStream() throws IOException {
  boolean useContentLength;
  useContentLength = !requestData.isEnabledForExtensions()
    ||  !((XmlRpcHttpRequestConfig) requestData).isContentLengthOptional();
  if (useContentLength) {
    return new ByteArrayOutputStream();
  } else {
    return output;
  }
}

代码示例来源:origin: xmlrpc/xmlrpc-client

protected void initHttpHeaders(XmlRpcRequest pRequest) throws XmlRpcClientException {
  config = (XmlRpcHttpClientConfig) pRequest.getConfig();
  method = new PostMethod(config.getServerURL().toString());
  super.initHttpHeaders(pRequest);
  
  if (config.getConnectionTimeout() != 0)
    client.getHttpConnectionManager().getParams().setConnectionTimeout(config.getConnectionTimeout());
  
  if (config.getReplyTimeout() != 0)
    client.getHttpConnectionManager().getParams().setSoTimeout(config.getConnectionTimeout());
  
  method.getParams().setVersion(HttpVersion.HTTP_1_1);
}

代码示例来源:origin: xmlrpc/xmlrpc-client

try {
  if (config.getReplyTimeout() != 0)
    socket.setSoTimeout(config.getReplyTimeout());
  input = new BufferedInputStream(socket.getInputStream());

代码示例来源:origin: com.atlassian.xmlrpc/atlassian-xmlrpc-binder-client-test-suite

public boolean isAuthorized(XmlRpcRequest pRequest) throws XmlRpcException
  {
    XmlRpcHttpRequestConfig config = (XmlRpcHttpRequestConfig) pRequest.getConfig();
    return config.getBasicUserName().equals("james") && config.getBasicPassword().equals("mypassword");
  }
});

代码示例来源:origin: org.sonatype.sisu/sisu-xmlrpc-server

public OutputStream newOutputStream() throws IOException {
  boolean useContentLength;
  useContentLength = !requestData.isEnabledForExtensions()
    ||  !((XmlRpcHttpRequestConfig) requestData).isContentLengthOptional();
  if (useContentLength) {
    return new ByteArrayOutputStream();
  } else {
    return output;
  }
}

代码示例来源:origin: xmlrpc/xmlrpc-client

protected void setCredentials(XmlRpcHttpClientConfig pConfig)
    throws XmlRpcClientException {
  String auth;
  try {
    auth = HttpUtil.encodeBasicAuthentication(pConfig.getBasicUserName(),
                         pConfig.getBasicPassword(),
                         pConfig.getBasicEncoding());
  } catch (UnsupportedEncodingException e) {
    throw new XmlRpcClientException("Unsupported encoding: " + pConfig.getBasicEncoding(), e);
  }
  if (auth != null) {
    setRequestHeader("Authorization", "Basic " + auth);
  }
}

代码示例来源:origin: rosjava/rosjava_core

public OutputStream newOutputStream() throws IOException {
  boolean useContentLength;
  useContentLength = !requestData.isEnabledForExtensions()
    ||  !((XmlRpcHttpRequestConfig) requestData).isContentLengthOptional();
  if (useContentLength) {
    return new ByteArrayOutputStream();
  } else {
    return output;
  }
}

代码示例来源:origin: xmlrpc/xmlrpc-client

protected void setCredentials(XmlRpcHttpClientConfig pConfig) throws XmlRpcClientException {
  String userName = pConfig.getBasicUserName();
  if (userName != null) {
    String enc = pConfig.getBasicEncoding();
    if (enc == null) {
      enc = XmlRpcStreamConfig.UTF8_ENCODING;
    }
    client.getParams().setParameter(HttpMethodParams.CREDENTIAL_CHARSET, enc);
    Credentials creds = new UsernamePasswordCredentials(userName, pConfig.getBasicPassword());
    AuthScope scope = new AuthScope(null, AuthScope.ANY_PORT, null, AuthScope.ANY_SCHEME);
    client.getState().setCredentials(scope, creds);
    client.getParams().setAuthenticationPreemptive(true);
  }
}

代码示例来源:origin: org.sonatype.sisu/sisu-xmlrpc-server

/** Returns, whether the requests content length is required.
 */
protected boolean isContentLengthRequired(XmlRpcStreamRequestConfig pConfig) {
  if (!pConfig.isEnabledForExtensions()) {
    // The spec requires a content-length.
    return true;
  }
  boolean isRequired = !((XmlRpcHttpServerConfig) getConfig()).isContentLengthOptional();
  if(pConfig instanceof XmlRpcHttpRequestConfig) {
    isRequired |= !((XmlRpcHttpRequestConfig)pConfig).isContentLengthOptional();
  }
  return isRequired;
}

代码示例来源:origin: apache/ofbiz-framework

public boolean isAuthorized(XmlRpcRequest xmlRpcReq) throws XmlRpcException {
    XmlRpcHttpRequestConfig config = (XmlRpcHttpRequestConfig) xmlRpcReq.getConfig();
    ModelService model;
    try {
      model = dispatcher.getDispatchContext().getModelService(xmlRpcReq.getMethodName());
    } catch (GenericServiceException e) {
      throw new XmlRpcException(e.getMessage(), e);
    }
    if (model != null && model.auth) {
      String username = config.getBasicUserName();
      String password = config.getBasicPassword();
      // check the account
      Map<String, Object> context = new HashMap<String, Object>();
      context.put("login.username", username);
      context.put("login.password", password);
      Map<String, Object> resp;
      try {
        resp = dispatcher.runSync("userLogin", context);
      } catch (GenericServiceException e) {
        throw new XmlRpcException(e.getMessage(), e);
      }
      if (ServiceUtil.isError(resp)) {
        return false;
      }
    }
    return true;
  }
}

代码示例来源:origin: org.apache.xmlrpc/xmlrpc-server

/** Returns, whether the requests content length is required.
 */
protected boolean isContentLengthRequired(XmlRpcStreamRequestConfig pConfig) {
  if (!pConfig.isEnabledForExtensions()) {
    // The spec requires a content-length.
    return true;
  }
  boolean isRequired = !((XmlRpcHttpServerConfig) getConfig()).isContentLengthOptional();
  if(pConfig instanceof XmlRpcHttpRequestConfig) {
    isRequired |= !((XmlRpcHttpRequestConfig)pConfig).isContentLengthOptional();
  }
  return isRequired;
}

代码示例来源:origin: apache/ofbiz-framework

String username = config.getBasicUserName();
String password = config.getBasicPassword();
if (UtilValidate.isNotEmpty(username)) {
  context.put("login.username", username);

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com