coldfusion - 尝试在 ColdFusion 8/Windows Server 2003/IIS6 上使用 taffy RESTful API 框架时出现 404

标签 coldfusion iis-6 http-status-code-404 windows-server-2003 taffy

我的任务是为我们基于 ColdFusion 8 的 CMS 系统创建 API。在做了一些研究之后,我决定 RESTful API 是最好的选择,原因有以下三个:

  1. 非常简单易用
  2. 相当容易实现
  3. 出色的长期解决方案

鉴于我首先是一名应用程序/系统程序员,高级 Web 开发不是我的强项,因此我没有重新发明轮子,而是开始为我们的 API 寻找一些框架。

我选择了 Taffy主要是因为我发现它的设计比 PowerNap 和 FW/1 更优雅,但是我在实现它时遇到了一些麻烦。

根据文档,我将解压缩的“taffy”文件夹放在我们的网站根目录中,并在我们的开发站点中创建了一个 api 目录 -

xxx.xxx.xxx.xxx/dev.cms/api_mk3

里面是目录:

/resources/studentCollection.cfc
/resources/studentMember.cfc
/Application.cfc
/index.cfm

四个文件的内容如下:

studentCollection.cfc

<cfscript>
component extends="taffy.core.resource" taffy:uri="/students" {
    public function get() {
        //query the database for matches, making use of optional parameter "eyeColor" if provided
        //then...
        var someCollectionObject = ArrayNew(1);
        someCollectionObject[1] = "Jason Bristol";
        return representationOf(someCollectionObject).withStatus(200); //collection might be query, array, etc
    }
}
</cfscript>

studentMember.cfc

<cfscript>
component extends="taffy.core.resource" taffy:uri="/students/{personName}" {
    public function get(string personName) {
        //find the requested person, by name
        //then...
        return noData().withStatus(404);//representationOf(personName).withStatus(200); //member might be a structure, ORM entity, etc
    }
}
</cfscript>

应用程序.cfc

<cfcomponent extends="taffy.core.api">
<cfscript>

    this.name = 'CMS-API';

    variables.framework = {};
    variables.framework.debugKey = "debug";
    variables.framework.reloadKey = "reload";
    variables.framework.reloadPassword = "true";
    variables.framework.representationClass = "taffy.core.genericRepresentation";
    variables.framework.returnExceptionsAsJson = true;

    // do your onApplicationStart stuff here
    function applicationStartEvent() {
    }

    // do your onRequestStart stuff here
    function requestStartEvent() {
    }

    // this function is called after the request has been parsed and all request details are known
    function onTaffyRequest(verb, cfc, requestArguments, mimeExt) {
        // this would be a good place for you to check API key validity and other non-resource-specific validation
        return true;
    }

</cfscript>

索引.cfm

Blank, as per the documentation.

我遇到的问题是,如果我要导航到

xxx.xxx.xxx.xxx/dev.cms/api_mk3/index.cfm/students

我会得到一个 404

[14:57:02.963] GET http://xxx.xxx.xxx.xxx/dev.cms/api_mk3/index.cfm/students [HTTP/1.1 404 Not Found 56ms]

Request URL:
http://xxx.xxx.xxx.xxx/dev.cms/api_mk3/index.cfm/students


Request Method:
GET


Status Code:
HTTP/1.1 404 Not Found



Request Headers
14:57:02.000

User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0
Host:xxx.xxx.xxx.xxx
Connection:keep-alive
Accept-Language:en-US,en;q=0.5
Accept-Encoding:gzip, deflate
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8


Sent Cookie
CFTOKEN:85979056CFID:1194857



Response Headers
Δ56ms

X-Powered-By:ASP.NETServer:Microsoft-IIS/6.0
Date:Fri, 17 May 2013 18:57:37 GMT
Content-Type:text/html; charset=UTF-8
Connection:close

现在假设我理解正确,我应该有一个 .json 格式的响应“Jason Bristol”或类似的东西。

我怀疑 IIS6 中的 MIME 类型或 URL 重写有问题,但我不知道如何更正此问题的具体细节。一段时间以来,我一直在插入升级到 Windows Server 2008 RC2,但没有成功。

这是操作错误还是可以修复?

编辑: 从我所看到的,我在 CF 日志中什么也没有得到。以下是 IIS 日志中的条目:

2013-05-20 13:56:20 W3SVC4 10.40.204.236 GET /dev.cms/api_mk3/index.cfm/students - 80 - 70.88.47.65 Mozilla/5.0+(Windows+NT+6.1;+WOW64)+AppleWebKit/537.31+(KHTML,+like+Gecko)+Chrome/26.0.1410.64+Safari/537.31 404 0 0

最佳答案

这是 tomcat 上普通安装的已知问题。 (如果你用tomcat?)

您可以在 web.xml 文件中添加一个额外的 servlet 映射。

<servlet-mapping>
    <servlet-name>CFMLServlet</servlet-name>
    <url-pattern>/api/index.cfm/*</url-pattern>
</servlet-mapping>

https://github.com/atuttle/Taffy/wiki/404-issue-with-Railo-or-Tomcat-and-API-in-a-sub-folder

关于coldfusion - 尝试在 ColdFusion 8/Windows Server 2003/IIS6 上使用 taffy RESTful API 框架时出现 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16616318/

相关文章:

variables - Coldfusion 8 -> 9 更新,功能不再工作

web-services - 修改底层Web服务签名后如何回收ColdFusion Web服务

java - j_spring_security_check http 404 使用 SecurityConfig

web-config - MVC4自定义404页面?

mysql - 我可以在 cfloop 中调用存储过程并在 Coldfusion 中输出动态输出参数吗?

mysql - Coldfusion 数据库插入将长数值更改为科学计数法

iis-6 - 集群中可以有多个 ASP.NET 状态服务器服务吗?

c# - 在 IIS 7.5 上通过代理调用 WCF 时出现身份验证问题

WCF 未在 IIS 6.0 下运行

internet-explorer - 未识别的 404 未找到页面