Hy;
I want to retrieve a <map:part> across application boundaries.
I set up my tomcat server with SSO, so that i can share the
same session context over different webapps. Then i created
one "cocoon" webapp for presentation purposes and one "backend"
webapp for the business logic. Both webapps are under
authentification control of tomcat. i am logged in and both
webapps share the same sesion context. Now i want the cocoon
webapp to retrieve data from the "backend" webapp:
I tried to setup the cocoon sitemap as follows:
<map:match pattern="canvas">
<map:aggregate element="page">
<map:part element="profile"
src="http://myserver:9000/backend/sessionProps.jsp"/>
<map:part element = "canvas"
src="cocoon:/canvas"/>
</map:aggregate>
<map:transform src="xsl/page.xsl"/>
<map:serialize/>
</map:match>
my questions:
1.) With the first map:part i try to retrieve a source on the backend
webapp, that runs in the same container, as the cocoon webapp.
This setup results in a response code 500, although the requested
page can be retrieved from a browser using the exact same URL.
I did some experiments with context:// and http:// and so on,
but i could not find a setup, that would show me the expected
result of the jsp-page above (the jsp-page delivers xml-content).
2.) If the retrieval of the map:part would work, would the retrival
use the same session context in which cocoon operates for this
request, or would it open a new session context just for the
part retrival ?
Did anyone encounter similar problems ?
I'd be glad to hear from your solution ...
regards, Hussayn
---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>