i am new for xforms .plz help me .
how to send value from redirect processor(this is one xpl)to xslt processor(this is there in another xpl). I am getting id value from view.this id value iwant to send to
list-records-action.xpl.(plz help me)
change-form.xpl:
<p:processor name="oxf:xslt-2.0"> <p:choose href="#query">
i want to send that id(underlined)value to list-recods-action.xpl from redirect kprocessor: list-recods-action.xpl : <p:processor name="oxf:xslt-2.0"> </p:config> -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
OK, let me try...
I presume you have reviewed the docs for the format the
<redirect-url>
element takes:
Since the redirect-processor directs the browser (or server)
to another
url, you will need a path within your page-flow.xml to handle
the
request.
Does page-flow.xml handle "/" and "/TestConfig2" with
list-records-action.xpl?
That is the only way to reach your last xslt-2.0
statement. (It is possible to
call that xpl file, but that is done by the <action>
element of page-flow.xml)
But I think an issue here is that to pass on any information,
you need to add
url parameters -- the <parameters> element within the
<redirect-url>. That
will pass them along with the url. Then in the file
list-records-action.xpl,
you can retrieve those parameters with request
generator. Then, you use
xslt to create the <config> element in your xslt-2.0
processor below.
Regards,
Hank
Hank Ratzesberger
http://nees.ucsb.edu/ Institute for Crustal Studies University of California, Santa Barbara
-- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
Free forum by Nabble | Edit this page |