调用Camel-Rest服务使我能够使用restlet

调用Camel-Rest服务使我能够使用restlet,rest,ssl,apache-camel,restlet,Rest,Ssl,Apache Camel,Restlet,我正在尝试编写一个调用restful服务的路由。它们都没有主体,只有查询参数。当我调用rest服务时,我得到了401授权。 但是,如果我使用简单的非ssl http并调用它,它在其他API上也可以正常工作。 这是我的路线和生产商模板 路线 ================================================主类=============================== public static void main(String[] args) throws Ex

我正在尝试编写一个调用restful服务的路由。它们都没有主体,只有查询参数。当我调用rest服务时,我得到了401授权。 但是,如果我使用简单的非ssl http并调用它,它在其他API上也可以正常工作。 这是我的路线和生产商模板

路线

================================================主类===============================

public static void main(String[] args) throws Exception {
    CamelContext context = createCamelContext();
    context.start();
    final String text = "paracetamol";
    final String fmt = "json";
    final String authMethod = "Digest";
    final String authUsername = "TR_Internal_024";
    final String authPassword="ZTYA5S1KLF7WCDMN";
    final String query = String.format("text=%s&fmt=%s&authMethod=%s&authUsername=%s&authPassword=%s",text,fmt,authMethod,authUsername,authPassword);
    Map<String,Object> headers = new HashMap<String, Object>(){
        {
            put(Exchange.HTTP_METHOD,"POST");
            put(Exchange.AUTHENTICATION,"Digest");
            put("authUsername","TR_Internal_024");
            put("authPassword","ZTYA5S1KLF7WCDMN");
            put(Exchange.HTTP_QUERY,query);
        }
    };
   ProducerTemplate template = context.createProducerTemplate();

  String request = template.requestBodyAndHeaders(Constants.DIRECT_MONITOR,null,headers,String.class);
  System.out.println("Body is : "+request);
}
HttpComponent http = (HttpComponent) camelContext.getComponent("https");
        HttpClientConfigurer httpClientConfigurer = http.getHttpClientConfigurer();
        if(httpClientConfigurer == null){
            System.out.println("httpClientConfigurer is null");
            if(http.getHttpClientConfigurer() == null ){
                HttpConfiguration httpConfiguration = new HttpConfiguration();
                httpConfiguration.setAuthMethod(AuthMethod.Digest);
                httpConfiguration.setAuthUsername("xxxxx");
                httpConfiguration.setAuthPassword("xxxxxx");
                http.setHttpConfiguration(httpConfiguration);
            }
        }

有人能帮助我们如何使用camel-cxf或restlet配置SSL吗? 如何将凭据提供程序添加到CamelContext或Spring上下文?
对耽搁表示歉意。我通过从下面的代码中检索组件来实现它

=========================================================================

public static void main(String[] args) throws Exception {
    CamelContext context = createCamelContext();
    context.start();
    final String text = "paracetamol";
    final String fmt = "json";
    final String authMethod = "Digest";
    final String authUsername = "TR_Internal_024";
    final String authPassword="ZTYA5S1KLF7WCDMN";
    final String query = String.format("text=%s&fmt=%s&authMethod=%s&authUsername=%s&authPassword=%s",text,fmt,authMethod,authUsername,authPassword);
    Map<String,Object> headers = new HashMap<String, Object>(){
        {
            put(Exchange.HTTP_METHOD,"POST");
            put(Exchange.AUTHENTICATION,"Digest");
            put("authUsername","TR_Internal_024");
            put("authPassword","ZTYA5S1KLF7WCDMN");
            put(Exchange.HTTP_QUERY,query);
        }
    };
   ProducerTemplate template = context.createProducerTemplate();

  String request = template.requestBodyAndHeaders(Constants.DIRECT_MONITOR,null,headers,String.class);
  System.out.println("Body is : "+request);
}
HttpComponent http = (HttpComponent) camelContext.getComponent("https");
        HttpClientConfigurer httpClientConfigurer = http.getHttpClientConfigurer();
        if(httpClientConfigurer == null){
            System.out.println("httpClientConfigurer is null");
            if(http.getHttpClientConfigurer() == null ){
                HttpConfiguration httpConfiguration = new HttpConfiguration();
                httpConfiguration.setAuthMethod(AuthMethod.Digest);
                httpConfiguration.setAuthUsername("xxxxx");
                httpConfiguration.setAuthPassword("xxxxxx");
                http.setHttpConfiguration(httpConfiguration);
            }
        }
问候
Ram

有人能帮助我如何使用camel-cxf或restlet配置SSL吗?我不熟悉Apache-camel+restlet集成,但是关于HTTPS,你有没有看过restlet自己关于这个主题的文档?