I have had an identical issue that I'm unable to resolve. Here are the
4 samples I've tried in my proxyConfig.xml file:
<destination id="DefaultHTTP">
<properties>
<dynamic-url>http://URLGOHERE/WS.asmx?WSDL</dynamic-url>
</properties>
</destination>
<destination id=Sample0>
<properties>
<dynamic-url>http://URLGOHERE/WS.asmx?WSDL</dynamic-url>
</properties>
</destination>
<destination id="Sample1">
<properties>
<wsdl>http://URLGOHERE/WS.asmx?WSDL</wsdl>
<soap>*</soap>
</properties>
<adapter ref="soap-proxy"/>
</destination>
<destination id="Sample2" adapter="soap-proxy">
<properties>
<wsdl>http://URLGOHERE/WS.asmx?WSDL</wsdl>
<soap>http://URLGOHERE/WS.asmx?WSDL</soap>
</properties>
</destination>
<destination id="Sample3" adapter="soap-proxy">
<properties>
<wsdl>http://URLGOHERE/WS.asmx?WSDL</wsdl>
<soap>http://URLGOHERE/WS.asmx?WSDL</soap>
</properties>
<channels>
<channel ref="my-amf"/>
</channels>
</destination>
I've tried with the soap-proxy as default="true" and the general
state. When I call the URL direct from a web service it does work. As
soon as I try to do the named proxy approach, it fails.
What am I missing??? I bet it's obvious :(
Jamie
--- In [email protected], "nmsflex" <[EMAIL PROTECTED]> wrote:
>
>
> i have .net web service api example
>
> http://190.100.1.102/ws/Service.asmx
>
> wsdl address: http://190.100.1.102/ws/Service.asmx?WSDL
>
> is anyone can show me how to set up webservice in fds to access
> my .net web service api
>
> if configure flex-proxy-service.xml by adding
>
> <destination id="myWS" adapter="soap-proxy">
> <properties>
> <wsdl>http://190.100.1.102/ws/Service.asmx?WSDL</wsdl>
> <soap>http://190.100.1.102/ws/Service.asmx</soap>
> </properties>
> <channels>
> <channel ref="my-amf"/>
> </channels>
> </destination>
>
> but i still get error when i run my app
> Error: can not send and can not load success wsdl
>
> Thanks
>