1

总之,我正在尝试熟悉 Axis2/C 框架,但我无法使用 Savan 模块附带的 WS-Eventing 示例(天气服务 - 订阅者 - 监听器)。根据日志文件,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
4

1 回答 1

1

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

原来的:

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

固定的:

axutil_array_list_add(svc_skeleton->func_array, env, "send");
于 2013-10-28T20:25:07.120 回答