WCF数据服务访问问题 - 403被禁止?

时间:2010-06-11 14:32:15

标签: c# wcf service

我有Silverlight 4.0客户端调用WCF数据服务,在我写的服务中允许所有人(我知道这不是很明智,但我想先测试一下):

public static void InitializeService(DataServiceConfiguration config)
{
  // TODO: set rules to indicate which entity sets and service operations are visible, updatable, etc.
  // Examples:
  config.SetEntitySetAccessRule("*", EntitySetRights.All);
  config.SetServiceOperationAccessRule("*", ServiceOperationRights.All);
  config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
  config.UseVerboseErrors = true;

}

当我使用类似这样的BeginSaveChanges从客户端调用服务时:

MyServiceEntity.BeginSaveChanges(SaveChangesOptions.Batch, OnChangesSaved, MyServiceEntity);

我收到禁止的错误:

--batchresponse_a7bc1f95-8f8d-4e3b-9e24-108743499c3a
Content-Type: multipart/mixed; boundary=changesetresponse_04a92dd2-1fe4-4da5-8d2e-e020fe354f8f

--changesetresponse_04a92dd2-1fe4-4da5-8d2e-e020fe354f8f
Content-Type: application/http
Content-Transfer-Encoding: binary

HTTP/1.1 403 Forbidden
Content-ID: 1
DataServiceVersion: 1.0;
Content-Type: application/xml

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
 <code></code>
 <message xml:lang="en-US">Forbidden</message>
</error>
--changesetresponse_04a92dd2-1fe4-4da5-8d2e-e020fe354f8f--
--batchresponse_a7bc1f95-8f8d-4e3b-9e24-108743499c3a--

批处理操作响应代码为202,无论这是什么意思。

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

我知道它看起来非常明显但是,在您更改了允许写入的权限之后,您是否已将服务发布到生产中?  只需确保您指向正确的服务网址。 问候。