Wierd.  I checked all of your points and they seemed fine.  I 'cleaned'
my project, and the warning went away. I know I did that before....

Thanks for the help.


  ~ Geoff ~

-----Original Message-----
From: Martin Gainty [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 06, 2008 10:38 AM
To: Tomcat Users List
Subject: RE: CHKJ4014W Warning


Geoff-

did you verify security-context.xml contains the required context
attributes and is located on classpath e.g.?
<security>
  <login-command class="com.gdais.security.AcegiLoginCommand"
server="Tomcat"/>
    <security-constraint id="basic-read-access">
      <auth-method>Basic</auth-method>
        <roles>
          <role>ROLE_MANAGERS</role>
          <role>ROLE_USERS</role>
         </roles>
    </security-constraint>
</security>

also i see null value entries for your supplied init params serviceNames
AND serviceClassNames

also I did'nt see your servlet-mapping e.g.
    <servlet>
        <servlet-name>coverc</servlet-name>
 
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servle
t-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>coverc</servlet-name>
        <url-pattern>*.htm</url-pattern>
    </servlet-mapping>

but assuming you have valid entries  for each of these I would comment
out all filters and servlets and config in each filter and servlet one a
time until you can locate the entry which is causing this exception
Martin ______________________________________________
Disclaimer and confidentiality note
Everything in this e-mail and any attachments relates to the official
business of Sender. This transmission is of a confidential nature and
Sender does not endorse distribution to any party other than intended
recipient. Sender does not necessarily endorse content contained within
this transmission. 


> Subject: RE: CHKJ4014W Warning
> Date: Wed, 6 Aug 2008 09:31:11 -0700
> From: [EMAIL PROTECTED]
> To: users@tomcat.apache.org
> 
> Sure, here it is:
> 
> <?xml version="1.0" encoding="UTF-8"?>
> 
> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web 
> Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd";>
> 
> <web-app>
>     <display-name>emtk-air</display-name>
>     <description>LiveCycle Data Services Application</description>
> 
>     <context-param>
>         <param-name>flex.class.path</param-name>
>  
> <param-value>/WEB-INF/flex/hotfixes,/WEB-INF/flex/jars</param-value>
>     </context-param>
> 
>     <!-- used by Spring 2.0, it will load this into the web context
-->
>     <context-param>
>         <param-name>contextConfigLocation</param-name>
>         <param-value>
>             classpath:/security-context.xml
>         </param-value>
>     </context-param>
> 
>     <!--  Spring Security Filter -->
>     <filter>
>         <filter-name>Acegi Filter Chain Proxy</filter-name>
>         <filter-class>
>             org.acegisecurity.util.FilterToBeanProxy
>         </filter-class>
>         <init-param>
>             <param-name>targetClass</param-name>
>             <param-value>
>                 org.acegisecurity.util.FilterChainProxy
>             </param-value>
>         </init-param>
>     </filter>
> 
>     <filter-mapping>
>         <filter-name>Acegi Filter Chain Proxy</filter-name>
>         <url-pattern>/*</url-pattern>
>     </filter-mapping>
> 
>     <!-- Http Flex Session attribute and binding listener support -->
>     <listener>
>
<listener-class>flex.messaging.HttpFlexSession</listener-class>
>     </listener>
>     
>     <!-- Spring 2.0 Web Listener -->
>     <listener>
>         <listener-class>
>             org.springframework.web.context.ContextLoaderListener
>         </listener-class>
>     </listener>
> 
>     <!-- MessageBroker Servlet -->
>     <servlet>
>         <servlet-name>MessageBrokerServlet</servlet-name>
>         <display-name>MessageBrokerServlet</display-name>
>  
> <servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
>         <init-param>
>             <param-name>services.configuration.file</param-name>
>
<param-value>/WEB-INF/flex/services-config.xml</param-value>
>        </init-param>
>         <init-param>
>             <param-name>flex.write.path</param-name>
>             <param-value>/WEB-INF/flex</param-value>
>         </init-param>
>         <load-on-startup>2</load-on-startup>
>     </servlet>
>     
>     <servlet>
>         <servlet-name>StartupServlet</servlet-name>
>         <display-name>StartupServlet</display-name>
>         <servlet-class>
>             com.comp.proj.startup.StartupServlet
>         </servlet-class>
>         <init-param>
>             <param-name>serviceNames</param-name>
>             <param-value>
>                 -- removed list --
>             </param-value>
>         </init-param>
>         <init-param>
>             <param-name>serviceClassNames</param-name>
>             <param-value>
>                 -- removed list --
>             </param-value>
>         </init-param>
>         <load-on-startup>1</load-on-startup>
>     </servlet>
> 
>     <servlet-mapping>
>         <servlet-name>MessageBrokerServlet</servlet-name>
>         <url-pattern>/messagebroker/*</url-pattern>
>     </servlet-mapping>
> 
>     <welcome-file-list>
>         <welcome-file>index.html</welcome-file>
>         <welcome-file>index.htm</welcome-file>
>     </welcome-file-list>
> 
>       <resource-ref>
>               <res-ref-name>jdbc/myDataSource</res-ref-name>
>               <res-type>javax.sql.DataSource</res-type>
>               <res-auth>Container</res-auth>
>               <res-sharing-scope>Shareable</res-sharing-scope>
>       </resource-ref>
> 
>       <resource-ref>
>               <res-ref-name>jms/TopicConnectionFactory</res-ref-name>
>               <res-type>javax.jms.TopicConnectionFactory</res-type>
>               <res-auth>Container</res-auth>
>               <res-sharing-scope>Shareable</res-sharing-scope>
>       </resource-ref>
> 
> </web-app>
> 
> 
>   ~ Geoff ~
> 
> -----Original Message-----
> From: Martin Gainty [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 06, 2008 9:23 AM
> To: Tomcat Users List
> Subject: RE: CHKJ4014W Warning
> 
> 
> Hi Geoff-
> 
> masking out the propietary vits can you supply your web.xml
> 
> ?
> Martin
> ______________________________________________
> Disclaimer and confidentiality note
> Everything in this e-mail and any attachments relates to the official 
> business of Sender. This transmission is of a confidential nature and 
> Sender does not endorse distribution to any party other than intended 
> recipient. Sender does not necessarily endorse content contained 
> within this transmission.
> 
> 
> > Subject: CHKJ4014W Warning
> > Date: Wed, 6 Aug 2008 09:01:52 -0700
> > From: [EMAIL PROTECTED]
> > To: users@tomcat.apache.org
> > 
> > I'm getting a warning that I can't seem to find an answer for.  The 
> > Eclipse console is stating:
> >  
> >   Severity and Description:
> >     CHKJ4014W: Empty Entry of Type Parameter Name.
> >  
> >   Path:
> >     emtk-air/src/main/webapp/WEB-INF
> >  
> >   Resource:
> >     web.xml
> >  
> >   Location:
> >  
> > [EMAIL PROTECTED]
> > ab c0 e (paramName: null, paramValue: null, description: null)
> > 
> >   Creation Time:
> >     1218033789740
> >  
> >   Id:
> >     125270
> >  
> >  
> > I've checked against the DTD, but nothing is jumping out at me.  I 
> > appologize if this isn't the correct forum for this question.  If 
> > someone knows of a better place, please let me know.
> >  
> > Thank you,
> >   Geoff
> 
> _________________________________________________________________
> Get more from your digital life.  Find out how.
> http://www.windowslive.com/default.html?ocid=TXT_TAGLM_WL_Home2_082008
> 
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, 
> e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

_________________________________________________________________
Get more from your digital life.  Find out how.
http://www.windowslive.com/default.html?ocid=TXT_TAGLM_WL_Home2_082008

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to