Ah cool. Thank you.... but now the problem is that the returned value
is always null. I guess, from what i've read, that this is happening
because the crossContext value for Axis is false (as it explains on
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/context.html).
How do I configure Axis to set this value to true (ignoring security
implications for the time being)? I tried adding a Context attribute to
the Axis/WEB-INF/web.xml as follows:
<web-app>
...
<Context crossContext="true"/>
</web-app>
but i'm guessing this isn't the correct usage, as I'm still getting a
null value?
Dario Di Minno wrote:
you can get the context of another servlet in this way:
ServletContext myServletContext = sc.getContext("http://myServletURL");
and then set/get its attributes
Dario