Title: XML in actions

I need something (action/generator) that talks to a backend system to get xml.  The problem is I can't use a generator because I also want to use the xsp generator in the same pipeline.  So how can I get an action to return xml that is available to xsp as xml.

Here is a sitemap example of what I was looking for


  <map:pipeline>  

    <map:match type="request-parameter" pattern="login-test">
      <map:act type="ValidateUser" >
        <map:act type="GetXml" >
              <map:generate type="serverpages" src=""xsp/home.xsp"/>
        </map:act>
        </map:act>
      <map:transform src=""xsl/simple.xsl"/>
      <map:serialize/>     
    </map:match>
  </map:pipeline>  

Reply via email to