and how exactly do you restart it?
Type: Posts; User: dimo.velev; Keyword(s):
and how exactly do you restart it?
Hello everybody,
how do I change the number of concurrent consumers during runtime?
I have exposed a bean via JMX which has a reference to an instance of a DMLC...
Hi Mark,
fortunately, the timeouts in my case are not in any way dependent on the messages. I rather have a singleton in my spring context which holds the configuration and which can be updated by...
Hi everyone,
is there any way to compute the receive-timeout during runtime on each call of sendAndReceive (e.g. through getting the value from some other bean's property each time)?
As far as...
Hi Marco,
I am using http://www.citrusframework.org/ which is not specifically aimed at spring integration but has proven itself in a couple of projects for testing eai applications.
Best...
Hi Mark,
this is how I would configure a channel interceptor in XML:
--cut--
<int:channel id="aChannel">
<int:interceptors>
<bean...
Hello,
is there any way to configure channel interceptors for the responses of a synchronous call? Currently we are calling them manually but it would be great if it were possible to configure the...
Hello,
is the MessageChannelTemplate implementation thread-safe? I am considering if I should create a new instance for each invocation of a service method or not.
Thanks,
Dimo
Hi,
It seems that very few people have had this problem and I can not seem to understand how they got rid of it. I currently get the following exception stacktrace:
---cut---...
Thank you, James!
This seems to work. I guess that JSF implementation uses request parameter to restore the values that were set by the user but not saved in the bean due to validation problems...
Hi Jeremy,
If you mean to change the jsf like this:
<h:inputText id="lastname" binding="#{userBean.lastname}" />
this did not help. I suppose I do not use continuations as I have no idea...
Yes, I am using the default JSF validation by means of the required attribute. I certainly do intend to write my own validation classes later. The field that breaks validation is included as:
...
Hi,
It seems that this problem has been in and out for quite a long time. I could not find a solution so I thought I'd ask again.
I have the following flow:
<view-state id="index"...
Hi,
I have some service beans, which, using dao's provide a service layer. I need to publish these services for remote use for both RMI and web services. Usings spring's RmiProxyFactorBean and...
Hi there,
The project I am taking part in uses spring with hibernate for data access. We are trying to design the project according to common patterns. We have Transfer Objects (with hibernate and...