• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

create soap request from xml file

 
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Am new to SOAP services,i dont know my question whether it is right or wrong,
Here i want to access third party API for eg air ticket booking API,they gave service endpoint url like http://<url>/DOMFlightAvailability?wsdl for availablitiy, i want to send xml structured request with(from,to,date,adults,childern,infants) values to Third party API server,more than their documnetation mention like this "The Third party(company name) web service provides a service
point URL(http://<url>/DOMFlightAvailability?wsdl). Web service clients should post SOAP request message as an attachment for the desired response".

please guide me how to get their response with clear example,sorry for mistakes in my question
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You would select a SOAP implementation to use (like Metro or Axis2); they come with tools that can create client-side Java code for accessing a WS if you point them at the WSDL.

For Axis2 this is explained in great detail in the "Installation Guide" and the "QuickStart Guide" at http://axis.apache.org/axis2/java/core/index.html.
 
Ranch Hand
Posts: 143
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use SOAPUI tool to create a sample request and response.
 
reply
    Bookmark Topic Watch Topic
  • New Topic