Я новичок в Apache Camel и смог успешно установить начальный привет сервлет.Я использую Apache Camel внутри контейнера Tomcat.
Ниже приведен мой camel-config.xml
<camelContext xmlns="http://camel.apache.org/schema/spring">
<route id="helloRoute">
<!-- incoming requests from the servlet is routed -->
<from uri="servlet:hello"/>
<choice>
<when>
<!-- is there a header with the key name? -->
<header>name</header>
<!-- yes so return back a message to the user -->
<transform>
<simple>Hi I am ${sysenv.HOSTNAME}. Hello ${header.name} how are you today?</simple>
</transform>
</when>
<otherwise>
<!-- if no name parameter then output a syntax to the user -->
<transform>
<constant>Add a name parameter to uri, eg ?name=foo</constant>
</transform>
</otherwise>
</choice>
</route>
<route id="svRoute">
<from uri="servlet:camel/sxx-search"/>
<to uri="https4://sxx.abc.com/sxx/sxx.php"/>
</route>
</camelContext>
, а вот код из моего web.xml
<servlet>
<servlet-name>CamelServlet</servlet-name>
<servlet-class>org.apache.camel.component.servlet.CamelHttpTransportServlet</servlet-class>
</servlet>
<!-- Camel servlet mapping -->
<servlet-mapping>
<servlet-name>CamelServlet</servlet-name>
<url-pattern>/camel/*</url-pattern>
</servlet-mapping>
Когда я нажимаю http://localhost:port/camel/hello?name=Mr, я получаю желаемый ответ.
В настоящее время в приведенном ниже коде я нажимаю внешний URL-адрес HTTP с XML в качестве пост-запроса и в ответ получает XML (String)
String xml="<some input to the httppost>"
HttpPost httpPost = new HttpPost("camel/sxx-search"); //tryin to map this in route defined in config.xml above
SSLContext sslctx= SSLContexts.createSystemDefault();
SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(
sslctx,
new String[] { "TLSv1", "TLSv1.1", "TLSv1.2" },
null,
SSLConnectionSocketFactory.getDefaultHostnameVerifier());
CloseableHttpClient httpclient = HttpClients.custom()
.setSSLSocketFactory(sslsf)
.addInterceptorFirst(new RequestAcceptEncoding()) // adds gzip encoding header
.build();
CloseableHttpResponse response = null;
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("xml", xml)); // URLEncoding taken care of in the next line
try {
httpPost.setEntity(new UrlEncodedFormEntity(nvps));
response = httpclient.execute(httpPost);
result = EntityUtils.toString(response.getEntity(), "UTF-8"); } catch(Exception e) {...}
Теперь я хочу выполнить этот запрос httpPost по верблюжьему маршруту.Может ли кто-нибудь помочь мне направить меня в правильном направлении?Например, как я могу изменить приведенный выше http-код для прохождения маршрутов Camel.
Я пытался использовать
camel/sxx-search
в HttpPost, как написано выше.Чтобы он мог проложить путь через верблюда до
"https4://sxx.abc.com/sxx/sxx.php"
и после нажатия
http://localhost:8080/camel/sxx-search
приложение выдает ошибку 404.