2

我已经从 Visual Studio 的在线模板下载了 WCFRestServiceWithKey 模板。虽然 WebGet 方法工作正常,但 WebInvoke 方法根本不起作用。

例如:

[WebInvoke(UriTemplate = "/AddCustomer", Method = "POST", RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml)]
    public Boolean AddCustomer(string firstname)
    {
        return true;
    }

不允许对该方法的简单调用返回方法。我认为这可能与 clientaccesspolicy.xml 有关,但无论我对它做什么,我都无法弄清楚。

这是我的clientaccesspolicy.xml:

<?xml version="1.0" encoding="utf-8"?>
<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>

我没有接触 web.config,因为它是用模板文件配置的。

有人有什么想法吗?

我从 Silverlight 调用这样的服务:

  http://localhost:6423/PredraWebservice/AddCustomer?apikey=bda11d91-7ade-4da1-855d-24adfe39d174

我这样称呼它:

 String send = "<string     xmlns=\"http://schemas.microsoft.com/2003/10/Serialization/\">String content</string>";

 Uri url = new Uri("http://localhost:6423/PredraWebservice/AddCustomer?apikey=bda11d91-7ade-4da1-855d-24adfe39d174", UriKind.Absolute);

            WebClient client = new WebClient();
            client.UploadStringCompleted += new     UploadStringCompletedEventHandler(client_UploadStringCompleted);
            client.UploadStringAsync(url, send);
4

0 回答 0