• 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

calling webservice by sending soap/xml request?

 
Ranch Hand
Posts: 257
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In axis server I wrote webservice script and deployed it. I wrote client script and able to call the webservice from it.

instead writing client java script myself is there any tool to create a script based on WSDL?

instead of executing client java script if I want to send soap request xml file then how can I send and call webservice? in AXIS webserver is there any place where we can paste the xml document to call and execute the webservice?

Yamini.
 
Ranch Hand
Posts: 548
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can use IDE's like Eclipse-AXIS plugings, WSAD etc. to build web service clients and call them for you.

instead of using stub based appraoch or DII approach in your client scripts you can use JAXM, SAAJ to progam soap messages and sent it to the web service.

there is no place in axis server to place the incoming soap request xml's
 
reply
    Bookmark Topic Watch Topic
  • New Topic