Hi All,
I have a WebService client application which is using the WebServiceTemplate in Spring-WS v2.1.2.RELEASE to send requests off to remote SOAP WebServices.
As expected these WebServices...
Type: Posts; User: pbray; Keyword(s):
Hi All,
I have a WebService client application which is using the WebServiceTemplate in Spring-WS v2.1.2.RELEASE to send requests off to remote SOAP WebServices.
As expected these WebServices...
Excellent thanks for all your help Gary, it is much appreciated.
In case anyone else stumbles across this thread and is attempting to do the same thing I can confirm that it is possible to wire a...
Excellent thanks Gary.
I agree success and failure reconnect hooks would be great for simplifying this or even something along the lines of the ability to inject a retry delay calculation...
Hi Gary,
Thanks for your quick reply.
As you suggested I have tested sub classing the DMLC and overriding both the sleepInbetweenRecoveryAttempts() (to calculate the sleep time) and the...
Hi All,
Is it possible to throttle the number of connection recovery attempts which are made by the DMLC (Dynamic Message Listener Container)? Or to modify the behavior to use some kind of...
Hi Gary,
Once again thanks for your quick response. You are absolutely right the issue I was having was due to the stop callback running under the JMS listener thread and hence being unable to...
Hi Gary,
Thanks for your quick response. As suggested I have enabled Trace level logging for Spring as follows:
log4j.category.org.springframework =TRACE
Unfortunately this has not...
Hi All,
I am developing an application which uses Spring's DefaultMessageListenerContainer to implement a MDP. As part of this application I have to implement a task which will run on a schedule...
Sorry for the noob question was as simple as extending the DefaultMessageListenerContainer and overiding the create connection method.
@Override
protected Connection createConnection() throws...
Hi All,
I am trying to figure out how I can specify the username / password to use when the DefaultMessageListenerContainer creates a connection from the ConnectionFactory supplied i.e:
...