Stephan H. Wissel wrote:
I'm facing an interesting challenge. We are evaluating OXF for "dual use". Means: Have a web interface using the xforms rendering engine as well as supporting a client application that communicates using XML over HTTP. While serving XML using the XML serializer is a snap, I'm a bit lost for the way back. How would I handle an XML that arrives from our client application using HTTP Post?
Hi Stephan,
You can use the Request generator for this. The posted XML is under /request/body. You can typically use this to implement a Web service.
<p:processor name="oxf:request">
<p:input name="config">
<config>
<include>/request/body</include>
</config>
</p:input>
<p:output name="data" id="request"/>
</p:processor>Alex
------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click _______________________________________________ orbeon-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/orbeon-user
