I developed the WCF service, and although in Visual Studio 2010 I can import WSDL without problems. After I deployed it to AppFabric, I get WSDL, but some schema files referenced inside WSDL, for some reason, cannot be found. I do not know the configuration problem, or what. The error I get when I try to handle WSDL in Visual Studio 2010 is shown below:
Metadata contains a link that cannot be resolved:
'Http://myserver.mydomain.com:9871/app_deploy/MyAppService.svc?wsdl.
The WSDL document contains links that cannot be resolved.
An error occurred while loading "http://myserver.mydomain.com:9871/app_deploy/MyAppService.svc?xsd=xsd0".
Request failed with HTTP status 502: Proxy error (The specified network name is no longer available.).
Metadata contains a link that cannot be resolved:
'Http://myserver.mydomain.com:9871/app_deploy/MyAppService.svc.
There was no endpoint listening at http://myserver.mydomain.com:9871/app_deploy/MyAppService.svc
who could receive the message. This is often caused by an incorrect address or SOAP. See InnerException, if present, for more details.
The remote server returned an error: (404) Not found.
If the service is defined in the current solution, try creating a solution and adding the service link again.
The error is a proxy error because it passes through the proxy server, but the error is due to the fact that there is no page. I tried accessing http://localhost:9871/app_deploy/MyAppService.svc?xsd=xsd0on the server, but I get 404.
Why not find these xsd files? Is this a deployment issue?
Any help would be greatly appreciated.
source
share