我正在构建WFC Rest Web服务。 此服务包含POST操作,当我在本地使用它时,它正常工作。但是当我尝试从外部IP使用它但它返回HTTP 400时。
这是Web服务接口:
[OperationContract(Name = "Login")]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Xml,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "Login")]
string Login(Stream data);
你对此有什么想法吗?
谢谢。