Hi Guys,
Im using Flex 3 and the WebService component. I started getting the following fault
HTTP request error
when making a call to service method. This error only showed up and i cant figure out whats causing it
<mx:WebService
useProxy="false"
id= "myService">
<mx:operation name="getName" resultFormat="object"
result="getNameResultHandler(event)"
fault="faultHandler(event)"/>
</mx:WebService>
i set the wsdl im my init method which i read in as a flashvar. ANy ideas?
the code i use to make the call goes as follows;
var id:Strig = Application.application.parameters.id;
mysERVICE.getname(id);