通过SOAPUI调用消息驱动的bean?

时间:2015-02-22 21:59:45

标签: java java-ee ejb-3.0

我开始研究现有项目,并希望测试我在Message驱动bean上所做的更改。但是我从未使用过消息驱动的bean,所以如何调用这个bean呢?是否可以通过SOAPUI调用来调用它? Bean代码:

    @MessageDriven(name = "StudentsScores", activationConfig = {
        @ActivationConfigProperty(propertyName = "destinationStudents", propertyValue = "javax.jms.Queue"),
        @ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/returns")
        @ActivationConfigProperty(propertyName = "sendResponse", propertyValue = "true"),
        @ActivationConfigProperty(propertyName = "dbPassword", propertyValue = "stud_db")
})
public class StudentScoreListener {

}

1 个答案:

答案 0 :(得分:1)

是的 - 你可以使用Hermes JMS做到这一点。您可以将其用作独立的util或集成到SoapUI中。有关详细信息,请参阅documentation