Try to open the wsdl url in a browser window and check if it is correct. ~Peeyush
On Mon, Mar 17, 2008 at 5:15 PM, qau_yasir <[EMAIL PROTECTED]> wrote: > > Hi! > I have created a simple web service in Flex 3. It is simple java > class that has two methods. One of the method, Fun()method returns > simple string. > Second method is native method that access print method of dll. I just > used Fun() in client. > I am using BLAZDS server. > In the Proxy config.xml fowwloing code placed. destination name > > <destination id="ws-catalog"> > <properties> > <wsdl>http://server:port/wsdl/WS.wsdl?wsdl</wsdl> > > <soap>*</soap> > </properties> > <adapter ref="soap-proxy"/> > </destination> > > Client Code. > > <mx:WebService id="srv" destination="ws-catalog" > wsdl="http://mahmood:8400/wsDLL/wsdl/WS.wsdl?wsdl" useProxy="true" > showBusyCursor="true" /> > > <mx:Button label="Get Data" click="Alert.show(srv.Fun())" /> > > PROBLEM: When I run the progarm I find this error. > > [RPC Fault faultString="Send failed" > faultCode="Client.Error.MessageSend" faultDetail="Unable to load WSDL. > If currently online, please verify the URI and/or format of the WSDL > (null)"] > ........ > ................. > > Any body know why this happens? What is possible solution? > Thanks > > >

