Double-click cSOAP to open
its Basic settings view in the Component tab.
In the Address field, leave
the default setting unchanged.
In the Type list, select
wsdlURL.
In the WSDL File field, enter
the URL of the WSDL file. You can also click the [...] button
to browse for it.
Click [...] next to Service
Configuration to open the service configuration wizard. The
WSDL field has been filled in with the selected WSDL
file. Click to show the available port in the Port
Name box. Select the airportSoap port and click
Finish to close the wizard. The Service
Name and Port Name fields in the
Basic settings view are filled in
automatically.
In the Dataformat list,
select PAYLOAD.
Double-click cExchangePattern to open its Basic
settings view in the Component tab.
In the Exchange Patterns
list, select InOut to enable the
request/reply message exchange mode.
Double-click cProcessor to
open its Basic settings view in the
Component tab.
In the Code box, enter the
code below.
StringBuilder sb = new StringBuilder();
sb.append("<tns:getAirportInformationByISOCountryCodeResponse xmlns:tns=\"http://airportsoap.sopera.de\">");
sb.append("<tns:getAirportInformationByISOCountryCodeResult>This is a response</tns:getAirportInformationByISOCountryCodeResult>");
sb.append("</tns:getAirportInformationByISOCountryCodeResponse>");
exchange.getOut().setBody(sb.toString());
As shown above, a string is built here and is used as a reply
message of the Route. It is in line with the message definition of the above WSDL
file.
Press Ctrl+S to save your
Route.
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – please let us know!