• 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
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Deploying Axis on Tomcat

 
Ranch Hand
Posts: 279
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to deploy axis on Tomcat.

http://ws.apache.org/axis/java/install.html

If I do
http://localhost:8080/axis/services/Version?wsdl
I am able to see the WSDL correctly.
But if I do
http://localhost:8080/axis/services/Version?method=getVersion
it gives me the following message
<soapenv:Reason>
-
<soapenv:Text xml:lang="en-US">
The endpoint reference (EPR) for the Operation not found is /axis/services/Version?method=getVersion and the WSA Action = null
</soapenv:Text>
</soapenv:Reason>

Can someone please let me know why the second URL is not working?
Thank you
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

http://localhost:8080/axis/services/Version?method=getVersion


That's not how you invoke SOAP services - you need a proper SOAP request in the HTTP request body.
 
Nothing up my sleeve ... and ... presto! A tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic