• 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

How to run Servlets with Weblogic 6.1

 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I wish to create one web page with HTML + Java servlets & JDBC.
I have compiled my servlet & put the class file in the folder
"C:\bea\wlserver6.1\config\mydomain\applications\DefaultWebApp\WEB-INF\Classes"
and the HTML file in the folder "C:\bea\wlserver6.1\config\mydomain\applications\DefaultWebApp". I have modified the "web.xml" file as per the instructions. The problem is I can open the HTML page from the webserver, but I couldn't run the servlet. It is giving some error message like "Error 404: Could not locate the URL". I have specified the path in the HTML as
"http//localhost ort/servletname"
Can anyone help me how to come out of this problem?
Thnx
Kala
 
Saloon Keeper
Posts: 27762
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You're better off packaging up the app in a WAR file and using the WLS console app to load it. Within the WAR, the html and JSPs goe at the root (assuming simple naming) and the servlet and support classes go in the WEB-INF/classes (or WEB-INF/lib, if JAR'ed). WAR form is a standard for J2EE regardless of what brand of server you use.
reply
    Bookmark Topic Watch Topic
  • New Topic