English 中文(简体)
ASPX页面的脚本方法,从浏览器调用,IIS6 返回404
原标题:ScriptMethod in ASPX page, called from browser, IIS6 Returning 404

I have code which works on the dev environment (my machine), though doesn t work on IIS6

我在一个ASPX页面上有一个方法, 其脚印与这个相似:

 [WebMethod()]
 [ScriptMethod()]
 public static string HelloWorld(string name)
  { 
       return  Hi  +name;
  }    

当我看浏览器上的控制台时, 我可以看到我的脚本叫这个方法, 虽然 IS 返回一个404 找不到 。

The script does a http POST to this url: http://mydomain.com/myPage.aspx/HelloWorld

我猜这跟IIS上的MIME类型有关?

最佳回答

Found the solution to this, The problem was caused by two things.

首先,我需要把这个添加到网上。

<webServices>
    <protocols>
        <add name="HttpGet"/>
        <add name="HttpPost"/>
    </protocols>
</webServices>

Then , the other issue was the use of a tool for url rewriting called UrlRewritingNet (http://www.urlrewriting.net/149/en/home.html)

配置此模块的方法之一是将 IMS6 作为 ISAPI 过滤器放入 IIS6 中, 匹配野卡 *, 所以如果文件扩展名没有匹配, 此过滤器将运行查询 。

第二个问题是我对我的服务进行XML查询,而不是json查询。然后在拨打时使用带有文件扩展名的 URL 。

希望这有帮助

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签