I have been forced to downgrade my application that I've started to
java 1.4 for the time being and am trying to inject a hivemind service
but don't seem to be doing it right because the object I am trying to
get injected seems to be null

In my component spec i have the following:

        <inject property="requestGlobals"
object="service:tapestry.globals.HttpServletRequest"
                type="org.apache.tapestry.services.RequestGlobals"/>

and in my java class i have:

        private RequestGlobals requestGlobals;


       public RequestGlobals getRequestGlobals() {
                return requestGlobals;
        }


        public void setRequestGlobals(RequestGlobals requestGlobals) {
                this.requestGlobals = requestGlobals;
        }


Thanks,

--
~chris

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

Reply via email to