[flexcoders] Mapping SOAP response onto a DataGrid

2007-04-28 Thread sebastien_arbogast
After reading the Use Webservices lesson, I tried to prototype an application with a DataGrid to display items retrieved from a webservice of my own. Here is my Flex application: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

Re: [flexcoders] Mapping SOAP response onto a DataGrid

2007-04-28 Thread Mickael RUELLAN
What's going on if you replace your dataProvider by : dataProvider={basementIssues.getAllIssues.lastResult.getAllIssuesReturn.issueListItem} Mika sebastien_arbogast a écrit : After reading the Use Webservices lesson, I tried to prototype an application with a DataGrid to display items

Re: [flexcoders] Mapping SOAP response onto a DataGrid

2007-04-28 Thread André Rodrigues Pena
Man I had a bad time time trying to fit the SOAP response of a SQL SERVER 2005 WEBMETHOD in a DataGrid. I gave up! On 4/28/07, Mickael RUELLAN [EMAIL PROTECTED] wrote: What's going on if you replace your dataProvider by : dataProvider={

Re: [flexcoders] Mapping SOAP response onto a DataGrid

2007-04-28 Thread Sebastien Arbogast
Mickael was right. I figured it out using the debugger in Flex Builder. It works great now. This Flex thing is really amazingly simple. Thanks guys. 2007/4/28, André Rodrigues Pena [EMAIL PROTECTED]: Man I had a bad time time trying to fit the SOAP response of a SQL SERVER 2005 WEBMETHOD