I have generated a web service client using a WSDL from an Axis 1.4 web service using the demo version of FB3 on OS X.
I end up with two classes and I am wondering which one should be used to call the web service. One class name is preceded with "Base". If I use this class, I can call the web service and using the debugger I can tell the web service is called and the result is returned as expected. However the listener is not called (and at this point I do not know why). If I use the class which is named as expected (i.e. not named with the "Base" prefix), I cannot call the web service because there are compilation errors in the generated code: Severity and Description Path Resource Location Creation Time Id 1067: Implicit coercion of a value of type dcn.circ4:GetCCTransactionsResultEvent to an unrelated type flash.events:Event. JFinSysUF/src/dcn/circ4 CMECF_WS_CommonReportsServiceService.as line 147 1206493836945 121838 1119: Access of possibly undefined property GetCCTransactions_RESULT through a reference with static type Class. JFinSysUF/src/dcn/circ4 CMECF_WS_CommonReportsServiceService.as line 135 1206493836942 121834 1119: Access of possibly undefined property headers through a reference with static type dcn.circ4:GetCCTransactionsResultEvent. JFinSysUF/src/dcn/circ4 CMECF_WS_CommonReportsServiceService.as line 145 1206493836943 121836 1119: Access of possibly undefined property result through a reference with static type dcn.circ4:GetCCTransactionsResultEvent. JFinSysUF/src/dcn/circ4 CMECF_WS_CommonReportsServiceService.as line 144 1206493836942 121835 1119: Access of possibly undefined property result through a reference with static type dcn.circ4:GetCCTransactionsResultEvent. JFinSysUF/src/dcn/circ4 CMECF_WS_CommonReportsServiceService.as line 146 1206493836944 121837 My questions are what is the difference in the two classes and what's causing the 1067 and 1119 errors? TIA, Carl

