Hi,
I have created a Webservice model from a WSDL file, created a service controller and bound the same to the model. I have also created a view and bound my view to my controller.
The problem I am facing right now is that certain fields of my request are not getting set.
The structure of my context is as shown below
Context |-OrderWS |- RequestNode |-NodeA |-Item1 |-Item2 |-Item3 |-NodeB |-ItemA |-ItemB |-ResponseNode
Even though I have created Item 1,Item2,Item 3 elements of Node A as input fields in my View, they cannot be edited, when I run my application.
Item1,Item2,Item3 have min occurance "0", max occurance "unbounded" , set in the WSDL file.
Is there any way by which I can set these values?
Why are only the Item1,2,3 fields not editable? (I have made sure that readonly =false,editable=true are set for these fields as they are for the other fields.)
-Ashwini.