所以我收到了这个试图点击我的Webservice的错误
No endpoint mapping found for [SaajSoapMessage {http://www.example.org/Fta_Consumption/Interface/}triggerFTARequest
My Endpoint类看起来像
@Endpoint
public class TriggerFtaEndPoint {
private static final String NAMESPACE_URL = "http://www.example.org/Fta_Consumption/Interface/";
@PayloadRoot(localPart = "triggerFTARequest", namespace = NAMESPACE_URL)
@ResponsePayload@Transactional(propagation=Propagation.REQUIRED)
public TriggerFTAResponse triggerFta(@RequestPayload TriggerFTARequest request, MessageContext messageContext) {
所以在提出这个问题之前,我尝试了解链接
No endpoint mapping found when setting up Spring Web Service
但我仍然无法弄清楚我的问题。 Everthing似乎已经到位,但仍无法解决问题。
答案 0 :(得分:0)
我遇到了这个问题。根据我当前的框架,我必须将bean声明为springs-ws
文件。我认为使用@Endpoint
进行注释会很简单。