Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SOAP Response cannot be decoded. Raw response

Former Member
0 Likes
653

Dear experts,

I want to consume an abap webservice in my FLEX 3. 0 application.

I get "SOAP response cannot be decoded. Raw response" error.

Here is my code. Thanks for helping!!

<mx:WebService id="abapWS" service="service" port="Z_PO_OVERVIEW" wsdl="{encodeURI(abapWSDL)}" makeObjectsBindable="true" useProxy="false">

<mx:operation name="ZPoOverview" result="onResult()" fault="onFault(event)" resultFormat="e4x">

<mx:request>

<Vendor>0000005550</Vendor>

<Createdonmin>22102009</Createdonmin>

<Createdonmax></Createdonmax>

<Material></Material>

<Internalorder></Internalorder>

<PoNotReleased></PoNotReleased>

<Purchaseorder></Purchaseorder>

<ReturnBapi></ReturnBapi>

<PoHeaders> </PoHeaders>

<PoItems></PoItems>

</mx:request>

</mx:operation>

</mx:WebService>

private function initApp():void{

txt = "send is called";

abapWS.ZPoOverview.send();

txt_test.text = txt;

}

private function onResult():void{

txt_test.text = txt;

}

private function onFault(event:FaultEvent):void{

txt = event.fault.toString();

txt_test.text = txt;

}

1 REPLY 1
Read only

athavanraja
Active Contributor
0 Likes
452

did you search this form for this error?

http://forumsa.sdn.sap.com/search.jspa?threadID=&q=SOAPresponsecannotbedecoded.Rawresponse&objID=f272&dateRange=all&numResults=15