You  would have to set up an AJP connector to get rid of the explicit 8080
port declaration.  and you will also have to do servlet mapping in the
web.xml file on tomcat ro remove the com.esri.esrimap from
com.esri.esrimap.Esrimap

there is a good how-to on jakarta's website for the ajp connector.

do something similar in your web.xml file for the mapping

<servlet>
        <servlet-name>RsAssignStationServlet</servlet-name>

<servlet-class>com.uss.irv.rollshop.RsAssignStationServlet</servlet-class>
   </servlet>
<servlet-mapping>
        <servlet-name>RsAssignStationServlet</servlet-name>
        <url-pattern>/abm/servlet/RsAssignStationServlet</url-pattern>
   </servlet-mapping>


hope this helps

Aaron




                                                                                       
                                      
                    Jon Scott                                                          
                                      
                    Stevens              To:     "[EMAIL PROTECTED]" 
<[EMAIL PROTECTED]>                   
                    <jon@latchkey.       cc:                                           
                                      
                    com>                 Subject:     Re: localhost:8080 vs 
localhost???                                     
                                                                                       
                                      
                    07/16/02 08:42                                                     
                                      
                    PM                                                                 
                                      
                    Please respond                                                     
                                      
                    to Jakarta                                                         
                                      
                    General List                                                       
                                      
                                                                                       
                                      
                                                                                       
                                      




on 7/16/02 5:33 PM, "Vishal Pahuja" <[EMAIL PROTECTED]> wrote:

> All:
>
> I have a custom servlet that works/responds if I type in following in the
> URL
http://vpahuja:8080/servlet/com.esri.esrimap.Esrimap?CMD=appserverping
> where com.esri.esrimap.Esrimap is our custom servlet
> The same fails if I type in following in the URL
> http://vpahuja/servlet/com.esri.esrimap.Esrimap?CMD=appserverping
> Notice that I do not have 8080 in there.
> I am using Apache 2.0.39 and Tomcat 4.0.3. Do I need to anything specific
to
> make this work? Like create a special web apps or something?
> Thanks in advance
> --Vish

http://jakarta.apache.org/site/idiot.html

Cheers and Love,

-jon


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>






--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to