/
Web Services
Web Services
OpenHub framework provides several tools and components for communication with external systems.
Components:
SOAP 1.2
OpenHub supports SOAP 1.1 and 1.2 for outgoing web service communication. There are getOutWsUri and getOutWsSoap12Uri methods in org.openhubframework.openhub.api.route.AbstractBasicRoute.
There is the following configuration prerequisite (sp_ws.xml):
<bean id="messageFactorySOAP11" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"> <property name="soapVersion"> <util:constant static-field="org.springframework.ws.soap.SoapVersion.SOAP_11"/> </property> </bean> <bean id="messageFactorySOAP12" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"> <property name="soapVersion"> <util:constant static-field="org.springframework.ws.soap.SoapVersion.SOAP_12"/> </property> </bean>
, multiple selections available,
Related content
Web Services
Web Services
More like this
How to implement web services?
How to implement web services?
More like this
Request/response tracking
Request/response tracking
More like this
Request/response tracking
Request/response tracking
More like this
HTTP Message Sender
HTTP Message Sender
More like this
HTTP Message Sender
HTTP Message Sender
More like this