Questions tagged [spring-integration-ws]
4 questions
0
votes
1 answer
Spring integration: transform http message to soap message
I'm writing an application to support a protocol that in the same HTTP endpoint mixes SOAP messages (a POST with SOAP XML) with empty messages (a POST without body), which are not empty SOAP messages.
I tried to receive the empty messages using…

Victoria Antolucci
- 38
- 3
0
votes
1 answer
Spring Integration: replying messages with gateways
I have this Spring Integration code that receives a SOAP message and then replies it.
This is the configuration:
@Bean
public MessageChannel wsGatewayInboundChannel() {
return MessageChannels.direct(GATEWAY_INBOUND_CHANNEL_NAME).get();
}
…

Pepi
- 3
- 2
0
votes
1 answer
Spring integration - SimpleWsOutboundGateway error handling (SOAP WS)
I have a spring integration flow where I listening to a channel and call a SOAP WS and and put back the response from the WS in to a outgoing channel
return IntegrationFlows.from(CHANNEL)
.transform(String::new)
…

SJay
- 15
- 4
0
votes
1 answer
Reuse SimpleWebServiceOutboundGateway in multiple IntegrationFlows in Spring Integration
Given I have 2 IntegrationFlows which reference the same SimpleWebServiceOutboundGateway bean:
@Bean
IntegrationFlow getDataA(
Jaxb2Marshaller xmlMarshaller,
SimpleWebServiceOutboundGateway webServiceOutboundGateway) {
return…

Patrik Mihalčin
- 3,341
- 7
- 33
- 68