SJ *_*lex 3 rest wcf web-services exception-handling wcf-rest
我正在使用WCF服务4.5 F/W开发REST Full API.请建议如何向客户端发送异常或任何业务验证消息.我正在寻找非常通用的解决方案,请提出最佳方法.我尝试了下面的一些方法,
在向客户端发送响应之前设置OutgoingWebResponseContext.
定义的故障合同只能正常工作添加服务引用(代理类)不能在REST FULL环境中工作.
在catch块中添加WebFaultException类.
WCF休息入门套件 - 我收到了一些关于此的文章和帖子,但他们的codeplex官方建议不再提供此信息.链接.所以,我不想这样做.
这些没有按预期工作..我的示例代码片段:接口:
[OperationContract]
[FaultContract(typeof(MyExceptionContainer))]
[WebInvoke(Method = "GET", UriTemplate = "/Multiply/{num1}/{num2}", BodyStyle = WebMessageBodyStyle.Wrapped,RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml)]
string Multiply(string num1, string num2);
Run Code Online (Sandbox Code Playgroud)
执行:
public string Multiply(string num1, string num2)
{
if (num1 == "0" || num2 == "0")
{
try
{
MyExceptionContainer exceptionDetails = new MyExceptionContainer();
exceptionDetails.Messsage = "Business Rule violatuion";
exceptionDetails.Description = "The numbers should be non zero to perform this operation";
//OutgoingWebResponseContext outgoingWebResponseContext = WebOperationContext.Current.OutgoingResponse;
//outgoingWebResponseContext.StatusCode = System.Net.HttpStatusCode.ExpectationFailed;
//outgoingWebResponseContext.StatusDescription = exceptionDetails.Description.ToString();
// throw new WebFaultException<MyExceptionContainer>(exceptionDetails,System.Net.HttpStatusCode.Gone);
throw new FaultException<MyExceptionContainer>(exceptionDetails,new FaultReason("FaultReason is " + exceptionDetails.Messsage + " - " + exceptionDetails.Description));
}
catch (Exception ex)
{
throw new FaultException(ex.Message);
}
}
return Convert.ToString(Int32.Parse(num1) * Int32.Parse(num2));
}
Run Code Online (Sandbox Code Playgroud)
Web.Config:
<system.serviceModel>
<services>
<service name="TestService.TestServiceImplementation" behaviorConfiguration="ServiceBehaviour">
<endpoint binding="webHttpBinding" contract="TestService.ITestService" behaviorConfiguration="webHttp" >
</endpoint>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehaviour">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="webHttp" >
<webHttp helpEnabled="true" faultExceptionEnabled="true"/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
Run Code Online (Sandbox Code Playgroud)
客户:
try
{
string serviceUrl = "http://localhost:51775/TestService.cs.svc/Multiply/0/0";
//Web Client
//WebClient webClient = new WebClient();
//string responseString = webClient.DownloadString(serviceUrl);
WebRequest req = WebRequest.Create(serviceUrl);
req.Method = "GET";
req.ContentType = @"application/xml; charset=utf-8";
HttpWebResponse resp = req.GetResponse() as HttpWebResponse;
if (resp.StatusCode == HttpStatusCode.OK)
{
XmlDocument myXMLDocument = new XmlDocument();
XmlReader myXMLReader = new XmlTextReader(resp.GetResponseStream());
myXMLDocument.Load(myXMLReader);
Console.WriteLine(myXMLDocument.InnerText);
}
Console.ReadKey();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Run Code Online (Sandbox Code Playgroud)
这是我的第一个问题,感谢所有充满激情的开发人员......!
而不是FaultException,使用以下:
服务器:
catch (Exception ex)
{
throw new System.ServiceModel.Web.WebFaultException<string>(ex.ToString(), System.Net.HttpStatusCode.BadRequest);
}
Run Code Online (Sandbox Code Playgroud)
客户端:
catch (Exception ex)
{
var protocolException = ex as ProtocolException;
var webException = protocolException.InnerException as WebException;
if (protocolException != null && webException != null)
{
var responseStream = webException.Response.GetResponseStream();
var error = new StreamReader(webException.Response.GetResponseStream()).ReadToEnd();
throw new Exception(error);
}
else
throw new Exception("There is an unexpected error with reading the stream.", ex);
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5594 次 |
| 最近记录: |