• 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

directly access a web service without localhost:8080/ProjectName/service/Webservice

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Java Ranch Members,

I have a device which is configured to access a webservice under a given ip address + port. The problem is that the configuration of the device cannot be changed anymore (it can but it would be very inconvinient since we would have to send the device back, etc.)...

the webservice it is supposed to call is running under http://xxx.xxx.xxx.xxx:8080/JavaProjectName/services/WebserviceName on a tomcat server (using axis2)

what i am trying to accomplish at the moment is to make it work directly under http://xxx.xxx.xxx.xxx:8080

after exchanging the <display-name> in the web.xml with "/" it is already running under http://xxx.xxx.xxx.xxx:8080/services/WebserviceName. I can see that there are mappings in the web.xml file which direct to url-patterns "/services/*" to an AxisServlet. I tried to replace those mappings with "/*" which produced some error during tomcat startup.

any ideas? is this possible at all? I am thankful for every hint.

 
I wasn't selected to go to mars. This tiny ad got in ahead of me:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic