1

나는 webservice 및 Silverlight 응용 프로그램이 있습니다. 나는 또한에 crossdomain.xml을 가지고Silverlight 4.0 : 도메인 간 정책 오류

<?xml version="1.0"?> 
<!DOCTYPE cross-domain-policy 
    SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> 
<cross-domain-policy> 
    <allow-access-from domain="http://localhost/MHVWS/MachineHistoryWS.asmx" /> 
</cross-domain-policy> 

내 웹 서비스는 IIS에서 호스팅되는 내 크로스 도메인 정책 여기

<access-policy> 
    <cross-domain-access> 
    <policy> 
     <allow-from http-request-headers="*"> 
     <domain uri="*"/> 
     </allow-from> 
     <grant-to> 
     <resource path="/" include-subpaths="true"/> 
     </grant-to> 
    </policy> 
    </cross-domain-access> 
</access-policy> 

clientaccesspolicy.xml.

An error occurred while trying to make a request to URI 'http://localhost/MHVWS/MachineHistoryWS.asmx'. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place, or a policy that is unsuitable for SOAP services. You may need to contact the owner of the service to publish a cross-domain policy file and to ensure it allows SOAP-related HTTP headers to be sent. This error may also be caused by using internal types in the web service proxy without using the InternalsVisibleToAttribute attribute. Please see the inner exception for more details.

당신은 하나의 정책 파일이 필요

답변

0
  • 도와주세요 :

    는이 구성을 나는 아직도 이런 종류의 오류가 있습니다. 둘 다 필요하지 않습니다.

  • 해당 정책 파일 중 하나 (또는 ​​둘 다)가 웹 서비스와 동일한 위치 (도메인)에 있는지 확인하십시오.
  • 디버깅하고 진행 상황을 보려면 Fiddler와 같은 도구를 사용하여 클라이언트가 찾고있는 정책 xml 파일의 URL 경로를 확인하십시오.