Nesto,
 
I´m not sure if this works, but try
 
</map:match>
   <map:match pattern="*.jsp">
   <map:generate type="file" src=""http://anotherHost:8080/theApp/{1}.jsp?user={request:user}&password={request:password}">http://anotherHost:8080/theApp/{1}.jsp?user={request:user}&password={request:password}" />
  
<map:transform src=""/>
   <map:serialize type="xhtml"/>
</map:match>
 
The {request:yourparam} parts are so called input-modules. See:
 
 
Be careful with the generator type you choose. The JSP generator expects the location of a JSP-File. You are calling a jsp from another server, that means you have to use a generator that matches the *output* of this jsp. I.e if the jsp produces HTML you need the HTML-generator. In your case you need the file-generator since the jsp produces XML.
 
Hope this helps,
 
-Jan Harms
 
-----Ursprüngliche Nachricht-----
Von: Nesto [mailto:[EMAIL PROTECTED]]
Gesendet: Mittwoch, 5. Februar 2003 15:00
An: [EMAIL PROTECTED]
Betreff: matcher of a request

How can I write a matcher for this type of request:
 
 
I can't write a matcher that runs fine! I don't know how the parameters can be passed.
The jsp runs on another server and generates a xml document.
 
</map:match>
   <map:match pattern="*.jsp">
   <map:generate type="jsp" src="" />
  
<map:transform src=""/>
   <map:serialize type="xhtml"/>
</map:match>
 
 
How I have to modify the matcher??
Thanks in advance!
 
Nesto

Reply via email to