所有的,
我正在尝试熟悉C/C框架,我无法为Savan模块自带的WS - 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

最佳答案

我找到了解决办法。在这个例子中有一个bug。在第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");

关于c - Axis2C Savan-发布到数据接收器失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19575274/

10-09 09:24