- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我以为我已经解决了对 ServiceStack Web 服务的访问问题 in this question ,但我现在遇到了相同的“访问被拒绝”错误,即使在该解决方案中找到了修复程序,我也无法自行解决。
这是我的观点:我有一个 Web 服务,我正在使用 POST 方法向其发送数据。我还有一个 GET 方法,它返回与 POST 相同的响应类型,并且工作正常。据我所知,请求在失败之前甚至没有到达 ServiceStack。响应中没有访问控制 header ,即使我在响应 header 中使用了 CorsFeature 插件。我不明白为什么它没有获取任何 ServiceStack 代码……一切似乎都已正确设置。顺便说一句,当我尝试 DELETE 操作时,我从服务器收到“403 Forbidden,Write access is denied”错误,是否有帮助?
这是我的 Global.asax(相关部分):
public class AppHost : AppHostBase
{
public AppHost() : base("RMS Citations Web Service", typeof(CitationService).Assembly) { }
public override void Configure(Container container)
{
SetConfig(new EndpointHostConfig
{
DefaultContentType = ContentType.Json,
ReturnsInnerException = true,
WsdlServiceNamespace = "http://www.servicestack.net/types"
});
Plugins.Add(new CorsFeature());
RequestFilters.Add((httpReq, httpRes, requestDto) =>
{
if (httpReq.HttpMethod == "OPTIONS")
httpRes.EndRequestWithNoContent(); // extension method
});
container.RegisterAutoWired<CitationRequest>();
// Not sure I need this - is it necessary for the Funq container?
using (var addCitation = container.Resolve<CitationService>())
{
addCitation.Post(container.Resolve<CitationRequest>());
addCitation.Get(container.Resolve<CitationRequest>());
addCitation.Delete(container.Resolve<CitationRequest>());
}
}
}
protected void Application_Start(object sender, EventArgs e)
{
new AppHost().Init();
}
这是我的请求和响应类:
[Route("/citations", "POST, OPTIONS")]
[Route("/citations/{ReportNumber_Prefix}/{ReportNumber}/{AgencyId}", "GET, DELETE, OPTIONS")]
public class CitationRequest : RmsData.Citation, IReturn<CitationResponse>
{
public CitationStatus Status { get; set; }
}
public enum CitationStatus
{
COMP,
HOLD
}
public class CitationResponse
{
public bool Accepted { get; set; }
public string ActivityId { get; set; }
public int ParticipantId { get; set; }
public string Message { get; set; }
public Exception RmsException { get; set; }
}
这是我的服务类:
public class CitationService : Service
{
public Repository Repository { get { return new Repository(); } }
public CitationResponse Post(CitationRequest citation)
{
var response = new CitationResponse { Accepted = false };
if (string.IsNullOrEmpty(citation.ReportNumber))
{
response.Accepted = false;
response.Message = "Report number was empty, so no data was sent to the web service.";
return response;
}
try
{
response.ActivityId = Repository.CreateCitation(citation.ReportNumber, citation.ReportNumber_Prefix, citation.ViolationDateTime, citation.AgencyId, citation.Status);
response.Accepted = true;
}
catch (Exception ex)
{
response.Accepted = false;
response.Message = ex.Message;
response.RmsException = ex;
}
return response;
}
public CitationResponse Get(CitationRequest citation)
{
var citationResponse = new CitationResponse();
if (string.IsNullOrEmpty(citation.ReportNumber))
{
citationResponse.Accepted = false;
citationResponse.Message = "Error occurred passing citation data to web service.";
return citationResponse;
}
var isDuplicate = Repository.IsDuplicateReportNumber(citation.AgencyId, citation.ReportNumber, citation.ReportNumber_Prefix);
citationResponse = new CitationResponse
{
Accepted = isDuplicate,
Message =
isDuplicate ? "Report Number already exists in database." : "Report Number has not yet been used."
};
return citationResponse;
}
public CitationResponse Delete(CitationRequest citation)
{
var citationResponse = new CitationResponse();
try
{
if (Repository.DeleteCitation(citation.ReportNumber, citation.AgencyId, citation.ReportNumber_Prefix))
{
citationResponse.Accepted = true;
citationResponse.Message = "Citation removed from RMS successfully.";
}
else
{
citationResponse.Accepted = false;
citationResponse.Message = "Citation NOT deleted from RMS. Check exception for details.";
}
}
catch (Exception ex)
{
citationResponse.Accepted = false;
citationResponse.Message = ex.Message;
citationResponse.RmsException = new Exception(ex.Message);
throw;
}
return citationResponse;
}
}
最后,这是我将数据发送到网络服务的方式。它总是正确到错误 block :
SendCitationToDb: function (cit, callback) {
$.ajax({
type: "POST",
url: Citations.DataServiceUrl + "citations",
data: JSON.stringify(cit),
contentType: "application/json",
dataType: "json",
success: function(data) {
if (!data.Accepted) {
Citations.ShowMessage('Citation not added', 'Citation not added. Error was: ' + data.Message, 'error');
} else {
ActivityId = data.ActivityId;
callback(data);
}
},
error: function(errMsg) {
Citations.ShowMessage('Citation not added', 'Citation not added. Error was: ' + errMsg.statusText, 'error');
}
});
}
这是 Chrome 开发工具的示例输出。首先来自此服务的良好响应 (GET):
更新在将 aspnet_isapi.dll 路径添加到 IIS 中的通配符后的响应::(已删除屏幕截图)
更新 2 - 这是 POST 响应。请求显示它是 POST 方法,但代码直接跳转到 jQuery ajax 函数中的错误 block 。在开发工具中,我看到了这一行:
然后我单击它并获取这些请求和响应 header :
不确定还需要寻找什么 - 我知道它说状态代码 200 OK,但我认为这只是用于飞行前的选项...?不确定,但它不会从服务返回有效响应。
非常感谢您的帮助!
最佳答案
看起来 WebDav 正在处理并拒绝您的请求。你可以试试disabling WebDav看看是否有帮助。
关于c# - ServiceStack 'Access is denied' 又来了,还有其他问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19101264/
我在 Ubuntu Linux Server 20.04这是我第一次向 Docker 推送东西,所以我只是在本地创建了一个虚拟容器并且它工作了。按照一些在线教程,hello-world示例也可以正常工
尝试将图像推送到 Docker Hub 上的公共(public)存储库时会发生此错误。我尝试过的其他注册表没有问题。 我查看了很多网站、博客,包括 StackOverflow,但仍然没有明确的答案。
我有个问题。我有操作系统 CentOS 5.8 。我在 httpd.conf 文件中写了这个配置: Listen 85 并在文件末尾: ServerName localhost ServerAdmi
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 9 年前。 Improve
请帮我配置 python 服务器。当我使用 python 命令在 cmd 中执行 .pyw 文件时出现错误我收到错误: IOError: [Errno 13] Permission denied(Pe
我是第一次尝试 CGI 脚本,但没有成功。我已经阅读了很多教程并关注了不同论坛中的主题,但我无法使其正常工作。我在 Fedora 10 机器上使用 appache 网络服务器。我总是有问题 [Wed
在两个文件中使用相同的 mdb.connect 行。使用 debian 7,我的问题现在是向您提供更多详细信息,因为我在问题中使用了很多代码,但我没有什么可告诉的。文件 1 工作正常。 #!/usr/
我正在尝试将数据洞察报告连接到表格和 BigQuery 中的 View 。在 BigQuery 中,表从位于我的云端硬盘中的 GoogleSheet 接收数据, View 正在查询同一个表,但添加了一
我正在尝试为我的 docker hub 存储库创建一个 list ,以便我拥有一个多平台镜像。 我的程序如下: 我首先创建一个空的存储库并向其中推送两个图像,一个用于 amd64,另一个用于 arm6
我正在尝试在我的 arch linux lamp 服务器中使用 fuecms。但是我不能让 htaccess 工作。我的主文件夹是 ytsejam/fuel_cms/.. 这是我的 .htaccess
我有一个简单的docker-compose.yml文件以这种方式定义: version: '3' services: db: image: postgres:10.5-alpine
所以我使用了 testcafe 的默认 docker,它在 docker hub 上是 testcafe/testcafe,我必须运行一些 testcafe 脚本。 但是,我需要将错误触发的屏幕截图上
我在 ubuntu 上使用 Hyperledger Fabric 2.2。我正在尝试借助 article 使用 express.js 创建 REST API . 我的结构网络和 apiserver.j
最近将 macOS Mojave (10.14.4) 上的 Logstash(通过 Homebrew 安装)升级到版本 6.7.0,但事情没有按预期运行。当我尝试通过命令行手动运行它(出于本地开发目的
最近将 macOS Mojave (10.14.4) 上的 Logstash(通过 Homebrew 安装)升级到版本 6.7.0,但事情没有按预期运行。当我尝试通过命令行手动运行它(出于本地开发目的
我的想法是 eclipse-luna 。系统是windows 7旗舰版。我使用 spring security 将 *.jar 复制到我的项目并“添加到构建路径”。请查看有关警告的图片
我在 vmware 播放器上使用 ubuntu 16.04。共享文件夹已启用并且在/mnt/fghs 上可见。但是,所有者(root)不能被 chown 改变。如何改变它?请给我建议。 另外,有人说修
我刚开始学习 SQL 的基础知识,当我在搜索数据操作语言、数据控制语言、数据定义语言时,有些东西没有意义。 据我了解,Data Control Language 有 3 个关键词:Grant、Deny
我要迁移到新服务器,并希望在过渡期间将我的所有站点都脱机。我知道我可以将它放在我的根 .htaccess 文件中以阻止人们访问该站点: order deny,allow deny from all 但
我正在尝试使用 os.Mkdir() 创建一个目录,然后在其中创建文件,类似于这个脚本: package main import ( "log" "os" "path" ) f
我是一名优秀的程序员,十分优秀!