When I use this combination below I get out of memory errors, the first request to the server works fine I get the login2.xsp (its below as well). When the second request comes up (button is pressed from the login page) it throw out of memory errors. If I don't do the cinclude in the request-parameter matcher the "footer.xsp" works fine. Am I just using things wrong?
Here is my pipeline
<map:pipeline>
<map:match pattern="">
<map:generate src=""xsp/login2.xsp"" type="serverpages"/>
<map:transform type="cinclude"/>
<map:transform src=""xsl/simple.xsl"/>
<map:serialize />
</map:match>
<map:match pattern="MyWelcome" type="request-parameter">
<map:generate type="serverpages" src=""xsp/footer.xsp"" />
<map:transform type="cinclude"/>
<map:transform src=""xsl/simple.xsl"/>
<map:serialize />
</map:match>
<map:match pattern="**.xsp">
<map:generate type="serverpages" src=""xsp/{1}.xsp"/>
<map:transform type="i18n"/>
<map:serialize type="xml"/>
</map:match>
</map:pipeline
*****login2.xsp *****
<?xml version="1.0" encoding="UTF-8"?>
<xsp:page language="java"
xmlns:xsp="http://apache.org/xsp"
xmlns:cinclude="http://apache.org/cocoon/include/1.0"
>
<page>
<cinclude:include src=""cocoon://loginEntity2.xsp"/>
</page>
</xsp:page>
*******loginEntity2.xsp ******
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsp:page language="java"
xmlns:xsp="http://apache.org/xsp"
>
<content>
<form method="POST" >
<structure>
<row>
<column width="36%" align="right">
<span class="formLabel"> </span>
</column>
<column>
<input type="submit" id="MyWelcome" name="MyWelcome" value="MyLogin"/>
</column>
</row>
</structure>
</form>
</content>
</xsp:page>
****welcome.xsp******
<?xml version="1.0" encoding="UTF-8"?>
<xsp:page language="java"
xmlns:xsp="http://apache.org/xsp"
xmlns:cinclude="http://apache.org/cocoon/include/1.0"
>
<cinclude:include src=""cocoon://footer.xsp"/>
</xsp:page>
****footer.xsp*******
<?xml version="1.0" encoding="UTF-8"?>
<xsp:page language="java"
xmlns:xsp="http://apache.org/xsp"
xmlns:i18n="http://apache.org/cocoon/i18n/2.0"
>
<footer>
<copyright>
Copyright (c) 2002 Euronet Worldwide, Inc. All Rights Reserved.
</copyright>
</footer>
</xsp:page>