C语言 Axis2C Savan-发布到数据接收器失败



all,我正在尝试熟悉 Axis2/C 框架,但我无法获得 Savan 模块附带的 WS 事件的示例(天气服务 - 订阅者 - 侦听器)。根据日志文件,url地址有问题,但我不明白,可能是什么问题。有人有同样的问题吗?

[Thu Oct 24 21:25:57 2013] [debug] publisher.c(209) [savan] Publishing to:urn:uuid:4e482bf8-3cd3-1e31-3822-080027ac2daf
[Thu Oct 24 21:25:57 2013] [debug] publisher.c(280) [savan] Publishing to:http://localhost:9090/axis2/services/listener
[Thu Oct 24 21:25:57 2013] [error] publisher.c(290) Could not create the filter module
[Thu Oct 24 21:25:57 2013] [error] publisher.c(229) Publishing to the Data Sink:http://localhost:9090/axis2/services/listener proviced by subscriber:urn:uuid:4e482bf8-3cd3-1e31-3822-080027ac2daf Failed.
Check whether the Data Sink url is correct

我找到了解决方案。在示例中有一个错误。在文件 listener_skeleton.c 的第 84 行中,必须将操作名称更改为与 services.xml 中的名称相同。

源语言:

axutil_array_list_add(svc_skeleton->func_array, env, "weather");

固定:

axutil_array_list_add(svc_skeleton->func_array, env, "send");

相关内容

  • 没有找到相关文章

最新更新