Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've a package making use of the following code:

SOAPEnvelope retMsg = (SOAPEnvelope) call.invoke(message.getSOAPEnvelope());

...this expects a reply message and hangs without one. I've been asked to adapt this to fireAndForget with no reply.

I'm having trouble finding how to do this and noticed the invokeOneWay() method however this does not accept a SOAPEnvelope. Can anyone advise if this is the right approach or whether I can adapt the normal invoke() method to ignore a reply.

Thanks

share|improve this question

1 Answer

ok this was easier than I thought just hard to find.

call.setProperty(JMSConstants.WAIT_FOR_RESPONSE, false); //Defaults to true

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.