Hi,
I'm a new developer in Zen and Ensemble and I have some questions.
I'm trying to fill a tablepane using a Web Service Client method that
response with a %XML.DataSet.
But I don't how to use the data source in tablepane to obtain the
information from the Web Service Client.
I'm trying using as queryclass the name of the web service client
class and as quety name, the name of the method in the web service
client.
The web service is working correctly but i don't know how to fill the
tablepane
XData tablePane [ XMLNamespace = "
http://www.intersystems.com/zen" ]
{
<pane xmlns="
http://www.intersystems.com/zen">
<tablePane id="table"
queryClass="Labor.WS.List.ListPetSoap"
queryName="ListPetLabSQL">
<parameter value="NN"/>
</tablePane>
</pane>
}
This is the method
Method ListPetLabSQL(inCodMedico As %String) As %XML.DataSet [ Final,
ProcedureBlock = 1, SoapBindingStyle = document, SoapBodyUse =
literal, WebMethod ]
{
Quit ..WebMethod("ListPetLabSQL").Invoke(##this,"http://
laboratorio.org/
Tabaiba.Listados.ListaPeticiones.ListadoPetLabMedicoSQL",.inCodMedico)
}
Regards and thank you in advance
Victor