• 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

servlet URL

 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have all my servlets in the path:
c:\tomcat\webapps\myapplication\web-inf\classes
this application works when i give URL: http://localhost:8080/myapplication/servlet/myservlet
but doesn't work when i want to call it through my registered domain name giving url:
http://www.mydomain.com:8080/myapplication/servlet/myservlet
please let me know if i need to change some conf. file..??
thanks
arpit
 
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
for your web.xml file in your app structure what do you have for using your servlet
for example your
<web-app><servlet><servlet-name>Serve</servlet-name><servlet-class>MeriServlet</servlet-class></servlet></web-app>

------------------
Sun Certified Java Programmer
Sun Certified Java Developer
I-Net Certified
A+ Certified
Network+ Certified
MCP
 
reply
    Bookmark Topic Watch Topic
  • New Topic