Hi Sumudu, (removing dev@. These questions are best posted on users@)
The error indicates that FlashBuilder cannot parse the WSDL because it is seeing a problem with the modifyReservationRequest entry. Someone on this mailing list may be able to help you, but the error is being thrown from FlashBuilder code which is not under control of Apache Flex. You can contact Adobe support and try to get help that way. If you can post your WSDL, maybe we can help you guess why FlashBuilder does not like it. You may be able to make a copy of the WSDL without the pieces that FlashBuilder does not like in order to generate the data classes you need. -Alex From: Sumudu Chinthaka <[email protected]<mailto:[email protected]>> Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>> Date: Saturday, July 6, 2013 5:48 AM To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>, "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>> Subject: FlashBuilder 4.6 Fail to connect to WSDL Hi All I have posted this problem before also, but didn't really have any reliable solution about it. so i thought of posting the question again with bit more information and screen shots here is what i'm experiencing when i try to connect to my web service using flash builder data service wizard, progress bar show's that it has gone to halfway and hang there for a while. then it pops out a error message saying "Unable to retrieve operations and entities from the specified WDSL [see the attached pics] and when i check tha Flash Builder log i can see following message, which is no sense to me "!ENTRY com.adobe.flexbuilder.services.WEBService 4 1 2013-07-06 10:50:11.668 !MESSAGE More than one part for message modifyReservationRequest !STACK 0 com.adobe.flexbuilder.services.webservice.introspection.WebServiceException: More than one part for message modifyReservationRequest at com.adobe.flexbuilder.services.webservice.WEBServiceIntrospector.createOperationsAndTypes(WEBServiceIntrospector.java:243) at com.adobe.flexbuilder.services.webservice.WebService$1$2.run(WebService.java:187)" This web service i'm trying to access uses wsse security headers, if i try to connect to a simple webservice like http://www.webservicex.net/globalweather.asmx?WSDL i can connect and flash builder will create operation stubs and i could invoke the operations On the other hand i can load the wsdl file and invoke operations when i use it through action script as follows var webService:WebService = new WebService(); webService.addHeader(mySecurityHeadersForWSSE); webService.loadWSDL("URL TO MY WEBSERVICE WSDL "); var op:Operation = webserive.getOperation(methodName) as Operation; op.resultFormat = "e4x"; var asyncToken:AsyncToken = op.send(methodParameter); asyncToken.addResponder(new mx.rpc.Responder(onPriceQuotResult,onPriceQuotFault)); this way i could send then SOAP Request as a XML and retreve the result but the problem is ill have to compose the xml request by concatenating string and embedding my variable values inside it which is not that realistic so what could be the solution for my problem is this a flashbilder bug? since FB faill to create webservice operation stubs is there any other tool that i can use to create those classes PLEASE PLEASE help me to resolve this issue
