I got a ADF Business Components Model Project. In some View Objects I defined a List of Values for the Attributes, and also set a Label in the UI Hints tab of some Attributes.
When I run the Application Module every thing works fine.
Now I want to expose this (and some other) View Objects via web service. So I added a Service Interface to the Application Module, where I set how the View Objects should be exposed. I also checked the Generate Control Hints Operation Check box.
In the next step I create a Web Service Data Control with the WSDL of my service. Then when I drop the result of a, for example, findByViewCriteria-method, to a jsf page, and choose ADF Form, I got neither the option for a Choice component, nor are the labels like I configured them.
Does any one have a idea, what am I missing? How do I enable the LOV and UI Hints in my web service?
Shays answer was very helpful (as always), though I want to share how I eventually solved this in my case.
As he pointed out
So I dropped the attribute, as
selectOneChoiseto the page. Important thing to note is, that only the result of afind-method can be used as aList Data Source, the result of agetByKey-method results in an error.