dendenners
Programmer
Hey there,
Last week I had weblogic understanding a .war file I had created. Unfortunately, in the time being I have messed something up, and I don't know what. My war file is defined as follows in weblogic.properties:
weblogic.httpd.webApp.ramApp=c:\\weblogic\\myserver\\public_html\\WEB-INF\\RAM.war
The servlet mapping is defined as follows in my web.xml file:
<servlet>
<servlet-name>
ramtool
</servlet-name>
<servlet-class>
com.omnipay.ram.control.RamServlet
</servlet-class>
However, this doesn't work. The action in the form on my jsps refers to "/ramtool". Whenever I click a button in my war-red application, the url goes to "/ramtool" and not "/ramApp/ramtool" as it should. What am I forgetting? This is very frustrating because it was working fine until I starting messing around with it.
Thanks
Last week I had weblogic understanding a .war file I had created. Unfortunately, in the time being I have messed something up, and I don't know what. My war file is defined as follows in weblogic.properties:
weblogic.httpd.webApp.ramApp=c:\\weblogic\\myserver\\public_html\\WEB-INF\\RAM.war
The servlet mapping is defined as follows in my web.xml file:
<servlet>
<servlet-name>
ramtool
</servlet-name>
<servlet-class>
com.omnipay.ram.control.RamServlet
</servlet-class>
However, this doesn't work. The action in the form on my jsps refers to "/ramtool". Whenever I click a button in my war-red application, the url goes to "/ramtool" and not "/ramApp/ramtool" as it should. What am I forgetting? This is very frustrating because it was working fine until I starting messing around with it.
Thanks