Alright, I did that, but I'm still not seeing any communication coming across the wire. On the server side I've got:
Code:
<bean name="httpInvokerAdapter" class="org.springframework.integration.adapter.httpinvoker.HttpInvokerGateway">
<constructor-arg ref="invokerChannel"/>
</bean>
With this in web.xml:
Code:
<servlet>
<servlet-name>httpInvokerAdapter</servlet-name>
<servlet-class>org.springframework.web.context.support.HttpRequestHandlerServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>httpInvokerAdapter</servlet-name>
<url-pattern>/integrationgateway/httpInvokerAdapter</url-pattern>
</servlet-mapping>
And on the client side I've got:
Code:
<integration:httpinvoker-handler id="httpTarget" url="http://${host.server}:${host.port}/app/integrationgateway/httpInvokerAdapter"/>
<integration:service-activator input-channel="invokerChannelInput" output-channel="invokerChannelOutput" ref="httpTarget"/>
What am I missing/doing wrong?