‎2009 Jun 18 9:40 AM
I have develop a Adobe flex application that consuming SAP Web Service.
I can run the .swf from bin-debug directory, it's fine on my PC.
When run swf file that copied to another computer,
SAP data does not show up in chart area ??
The source code follows;
************************************************************
private var wss:WebService = new WebService();
private function init():void {
wss.wsdl = "http://x.x.com:8000/sap/bc/srt/rfc/sap/zget_qry_data?sap-client=100&wsdl=1.1";
wss.addEventListener(LoadEvent.LOAD, loadListener);
wss.addEventListener(ResultEvent.RESULT, resultTrigger);
wss.loadWSDL();
}
*************************************************************
DEV environment:
SAP NewWeaver 7.1 CE sp05
Eclipse platform 3.3.0
Flex builder Plugin 3.0.2
Regards,
park
Edited by: jinhyoung park on Jun 18, 2009 10:42 AM
‎2009 Jun 20 6:19 AM
When run swf file that copied to another computer,
Do you mean you just copied the swf alone to another machine and it didnt work?
just copy the swf from bin directory place it in the same machines desktop or some other location and try running it, it wont work.
The issue is wht "crossdomain". Search this forum or google with key word "crossdomain.xml" . This has been discussed many times in the past.
Regards
Raja
‎2009 Jun 20 6:19 AM
When run swf file that copied to another computer,
Do you mean you just copied the swf alone to another machine and it didnt work?
just copy the swf from bin directory place it in the same machines desktop or some other location and try running it, it wont work.
The issue is wht "crossdomain". Search this forum or google with key word "crossdomain.xml" . This has been discussed many times in the past.
Regards
Raja
‎2009 Jun 21 11:55 PM