You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@velocity.apache.org by Angela Day <ak...@yahoo.com> on 2010/04/28 00:29:20 UTC

One working, the other not

I have one path working, and the other not working

Http Status 404 - /csea/Login.m

type Status report
message /csea/Login.m
description The requested resource (/csea/Login.m) is not available.
________________________________

They are both defined on the same tomcat 5.5.28 server

server.xml

<Context path="/csea" docBase="csea" reloadable="true" >
      <ResourceLink name="liarRealm"            global="liarRealm"/>
      <ResourceLink name="tdhca.liar.useDomain" global="tdhca.liar.useDomain"/>
      <ResourceLink name="tdhca.liar.hashSalt"  global="tdhca.liar.hashSalt"/>
      <ResourceLink name="cmts-url"             global="cmts-url"/>
      <ResourceLink name="cdb-url"              global="cdb-url"/>
      <ResourceLink name="pm-url"              global="pm-url"/>
      <ResourceLink name="jdbc/cdb"        global="jdbc/cmts"/>
      <Environment name="serverName" type="java.lang.String" value="cmts"/>
          <ResourceLink name="envName" global="envName"/>
          <ResourceLink name="cseaPropertiesFile" global="cseaPropertiesFile"/>
</Context>

<Context path="/alligator" docBase="alligator" reloadable="true">
<ResourceLink name="liarRealm" global="liarRealm"/>
<ResourceLink name="tdhca.liar.useDomain" global="tdhca.liar.useDomain"/>
<ResourceLink name="tdhca.liar.hashSalt" global="tdhca.liar.hashSalt"/>
<ResourceLink name="cmts-url" global="cmts-url"/>
<ResourceLink name="mf-url" global="mf-url"/>
<ResourceLink name="cdb-url" global="cdb-url"/>
<ResourceLink name="csea-url" global="csea-url"/>
<ResourceLink name="jdbc/cdb" global="jdbc/cmts"/>
<Environment name="serverName" type="java.lang.String" value="contract"/>
<ResourceLink name="envName" global="envName"/>
<ResourceLink name="contractPropertiesFile" global="contractPropertiesFile"/>
</Context>


alligator work great, csea does not.   I cannot see any differences.  What am I missing?

Thanks for your help.

Angela