留言板

Setting the HTTP Response in a liferay service

Tim Cardwell,修改在11 年前。

Setting the HTTP Response in a liferay service

Junior Member 帖子: 29 加入日期: 12-7-19 最近的帖子
I have a liferay service, and a .NET app that calls this service.

The .NET app will only continue processing it's code if the HttpResponseStatus from the liferay service call is OK. However, lets say my service needs to manually set an http response if an exception occurs. Is there a way to do this in liferay? Do I need to pass the request into my service or something along those lines?

Thanks,
-Tim
thumbnail
Andew Jardine,修改在11 年前。

RE: Setting the HTTP Response in a liferay service

Liferay Legend 帖子: 2416 加入日期: 10-12-22 最近的帖子
Hey Tim,

It's been a while since I've had to do anything with services but if memory serves me, you should be able to throw an exception that get returned as a SOAP Fault to the caller. I am pretty sure that Faults, although representing errors, do use a HTTP Status code of 200 OK. Have you tried that avenue yet?
Tim Cardwell,修改在11 年前。

RE: Setting the HTTP Response in a liferay service

Junior Member 帖子: 29 加入日期: 12-7-19 最近的帖子
Well my service is catching a few types of exceptions, including PortalExceptions. The problem is I don't want it to return with status code 200, I want it to return with an error status code, but even when I trip the portal exception, it still returns with status code 200...
thumbnail
Charly Wu,修改在10 年前。

RE: Setting the HTTP Response in a liferay service

New Member 帖子: 4 加入日期: 13-4-11 最近的帖子
I'm also interested in returning http status other than 200 when exception occurs.
Hi Tim, do you have any solution?
thumbnail
Nicolas Forney,修改在10 年前。

RE: Setting the HTTP Response in a liferay service

Junior Member 帖子: 78 加入日期: 11-5-23 最近的帖子
Anyone found a solution to set the HTTP response code ?