Thanks for the info.  Between posting my original message and getting your 
response, I did find the web site you mentioned.  Very helpful.

I've got my .jsp page working, but when I try to invoke the servlet (either by 
clicking "submit" on my JSP page, or directly, I get the same 404 result:

type Status report

message /pnp/PnpAuth

description The requested resource (/pnp/PnpAuth) is not available.

My .war file looks like this:

META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/classes/
WEB-INF/classes/pnp/
WEB-INF/classes/pnp/certs/
WEB-INF/lib/
images/
WEB-INF/classes/pnp/PnpAuth.class
WEB-INF/classes/pnp/PnpAuth.properties
WEB-INF/classes/pnp/PnpLoggerConfig.txt
WEB-INF/classes/pnp/certs/RSACA.crt
WEB-INF/classes/pnp/certs/VSIGN1.CRT
WEB-INF/classes/pnp/certs/VSIGN2.CRT
WEB-INF/classes/pnp/certs/VSIGN3.CRT
WEB-INF/classes/pnp/certs/VSIGNSS.CRT
WEB-INF/classes/pnp/certs/VSIGNTCA.CRT
WEB-INF/classes/pnp/certs/serverbasic.crt
WEB-INF/classes/pnp/certs/vsign.crt
WEB-INF/lib/javax.servlet.jar
WEB-INF/lib/log4j.jar
WEB-INF/lib/pnpapi.jar
WEB-INF/web.xml
images/logo.gif
mmmi_pnp.jsp

And my web.xml looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<web-app>
         
                 Plug-N-Pay credit card authorization application
         
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>
            mmmi_pnp.jsp
        </welcome-file>
    </welcome-file-list>
    
        <servlet-name>PnpAuth</servlet-name>
        <servlet-class>pnp.PnpAuth</servlet-class>
    
    <!--
    <servlet-mapping>
        <servlet-name>PnpAuth</servlet-name>
        <url-pattern>/mmmi_pnp.jsp</url-pattern>
    </servlet-mapping>    
    -->
</web-app>

pnp.PnpAuth is the servlet.  So what am I missing?  I have a feeling it's going 
to be something fundamental and simple, but I just can't see it.

Sorry for the brain dump -- any help anyone could provide would be greatly 
appreciated!

Thanks!

Burnie


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3950128#3950128

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3950128


_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to