开发者

WCF service is not responding

开发者 https://www.devze.com 2022-12-29 14:06 出处:网络
A Flash program is connecting to WCF web service hosted on a server without anti-virus and without firewall and windows server 2003 64 bit environment.

A Flash program is connecting to WCF web service hosted on a server without anti-virus and without firewall and windows server 2003 64 bit environment.

The flash return Connection failed message

When I sniffer it I found that the Flash program cannot find these requests, http://IP:2805/BLL.svc?xsd=xsd1 http://IP:2805/BLL.svc?xsd=xsd0

The strange thing is that the service work fin开发者_JAVA百科e with asp.net.

also the same service deployed on another server, just work fine!!

Is there a work around.

Thanks


You may need a crossdomain.xml file on the server for flash to connect to a remote web service.


Worked around by creating static WSDL, we copied xsd0 and xsd1 from 32 bit server, and place those files in the service root.

-follow the WSDL in the browser,

-remove all Logical resources (http://IP:2805/BLL.svc?xsd=xsd1) convert it to (http://IP:2805/xsd1.xml).

also fix the references between the files, and fix IPs if needed. Reference from WSDL to WSDL0, till reach xsd0, xsd1.

0

精彩评论

暂无评论...
验证码 换一张
取 消