【发布时间】:2012-01-04 06:44:04
【问题描述】:
我为axis2创建了一个服务,并为该服务实现了一个服务框架和一个MessageReceiver。
当我现在想从客户端调用该服务时,服务器上的 Receiver 接收调用,但在此框架代码中:
public void invokeBusinessLogic(
org.apache.axis2.context.MessageContext msgContext,
org.apache.axis2.context.MessageContext newMsgContext)
throws org.apache.axis2.AxisFault {
System.out.println("! !invokeBusinessLogic");
try {
// get the implementation class for the Web Service
Object obj = getTheImplementationObject(msgContext);
System.out.println("2invokeBusinessLogic");
....
'2invokeBusinessLogic' 永远不会被打印出来。 我检查了 localhost:8080 上的服务器,该服务在此处正确列出。
所以我想调用服务,服务Receiver得到Request但没有找到骨架?
没有例外,我找不到问题。
感谢您的帮助。
【问题讨论】:
标签: axis2