Reputation: 23
I went through some documents relating to Spring Integration WebService support.
I currently have a sample webservice , but is not a spring based webservice.
Can I call this webservice from my sample SpringIntegrtion
application or is there any rule that requires a webservice should be a Spring based WebService?
Upvotes: 0
Views: 386
Reputation: 174494
Yes, you can easily call the web service using the <int-ws:outbound-gateway/>
; the target service does not need to be Spring-based.
Upvotes: 1