Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
langxml
titleHTTP xbean.xml
<beans xmlns:http="http://servicemix.apache.org/http/1.0"
       xmlns:citytime="http://servicemix.apache.org/samples/citytime"
       xmlns:localtime="http://ripedev.com/xsd/ZipCodeResults.xsd"
       xmlns:uszip="http://www.webserviceX.NET">

  <http:endpoint service="citytime:CityTime"
                 endpoint="Soap"
                 role="consumer" 
                 locationURI="http://0.0.0.0:8192/citytime/"
                 soap="true" />             
  
  <http:endpoint service="localtime:LocalTime"
                 endpoint="LocalTimeSoap"
                 role="provider"
                 locationURI="http://www.ripedev.com/webservices/LocalTime.asmx"
                 soap="true" 
                 soapAction="http://ripedev.com/xsd/ZipCodeResults.xsd/LocalTimeByZipCode"
                 soapVersion="1.1"  />
  
  <http:endpoint service="uszip:USZip"
                 endpoint="USZipSoap"
                 role="provider"
                 locationURI="http://www.webservicex.com/uszip.asmx"
                 soap="true" 
                 soapAction="http://www.webserviceX.NET/GetInfoByCity"
                 soapVersion="1.1" />
</beans>

Hey !