Hi Guys,
I am looking for solution like xforms where we can bind input component to our xml data model but should work with
JSF.
If I explain in other way, In my managed bean I have a field for whole xml data, (may be xml as
String, Stream, JSON, or DOM Document) and from my view (xhtml) I need to access / display some xml element using xpath or similar technique.
eg,
model
<employee>
<id>01</id>
<name>Mali</name>
</employee>
view
<h:input value"//employee/name">
Why I need such solution,
My
Java Model is very dynamic, which can be changed from client to client, So I like to pass data in xml, and store in xml format, (db2, oracle supports xml data), So I need change only view, and keep services untouch,
Thanks