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

Problem in accesing Web services in java

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guys I am new to java web servcies.I had Installed Apache tomcat and configured Apache axis.When I open http://localhost:8080/axis/happyaxis.jsp in my web browser everything seems to be fine.And I can even see the list of deployed services and their corresponding WSDL document.

But when i go to the link of web service specified in WSDL document I see the following :

WELCOME TO AXIS SERVICE

PERHAPS THERE WOULD BE A FORM TO INVOKE IT

And the link is somewhat like
http://localhost:8080/axis/services/multiplication.
But in my Apache axis 1.4 there is no such services folder???

Guys I am really struck in this problem please help me in eradicating this problem i.e what should i do next.
 
Rancher
Posts: 43081
77
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Axis does not provide web forms to invoke services, nor does accessing SOAP services through the browser make sense. You need to create Java client code to access any services; this is explained at length in the Axis User Guide (which you can find both online and as part of the Axis distribution).
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic