RE: [flexcoders] simple webService question

2005-05-22 Thread Abdul Qabiz
Sanjay, the only problem I see is: - MyWebService.mxml is not a MXML component because it has Application as root tag. So put everything in another container or tag. A MXML component should not have Application as root tag. Do something like this: ?xml version=1.0 encoding=utf-8? mx:Canvas

RE: [flexcoders] simple webService question

2005-05-22 Thread Abdul Qabiz
...To avoid this, do following: var myWS = new MyWebService(); myWS.init(); myWS.runWebServices(this); That should work fine... -abdul -Original Message- From: Abdul Qabiz Sent: Sunday, May 22, 2005 2:12 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] simple webService