Hi,
thanks for your info. I've not specified an output channel as I actually doesn't need it, since in my case it's sufficient when the message goes out through the JMS OutboundAdapter.
...
Type: Posts; User: nilsha; Keyword(s):
Hi,
thanks for your info. I've not specified an output channel as I actually doesn't need it, since in my case it's sufficient when the message goes out through the JMS OutboundAdapter.
...
Hi,
I'd like to use the JMS outbound-channel-adapter as an endpoint in a chain, like this:
<int:chain id="publish-events-chain" input-channel="eventsChannel">
...
With your fix I now have two choices when dealing with (non-temp, non-durable) Topics for Reply messages:
1. use the default JMS messageId
2. use a generated UUID-based messageId that the...
Hi Mark,
any thoughts on my previous my last post? For us it would be very useful if we could use the jmsMessageId/correlationId. So it would be helpful to have a solution not based on the JMS...
Hi Mark,
your solution looks good so far. The drawback imho is that one cannot use the standard JMS MessageId. That might be a problem when communicating with systems that use the "standard"...
Hi Mark,
thanks for the update. I will try the changes in the next days.
Nils
I think the classes folders (target/...) are automatically created by Eclipse in case they don't exist.
The classes itself are compiled by Eclipse JDT. Only the resources are copied by the Maven...
"Normally" it should work like this:
You first create the resource folder and then run "Update Project Configuration". The Maven Plug-in then analyses your folder structure, detect the new...
Hi,
1+3: The src-folders itself are not on the classpath. Instead, the resources (from src/main/resources and src/test/resources) should by copied to the classes folders (target/classes resp...
Thanks, Christian
I've opened a JIRA (https://jira.springframework.org/browse/IDE-1156). Note that this bug not only appears when the two configuration files are in different projects. It even...
Hi,
I have two projects containing Spring Bean Definition Files. The first project A defines some beans and - using the int-namespace - some channels and other artefacts from Spring Integration...
Nope, as of today we are not using Spring Integration in production but evaluate it to see if we can replace our home-grown solutions with it.
Personally I don't expected any lost message here,...
I'm not sure, but I will check. Thank you very much so far.
BTW: maybe it would be helpful to add a hint in the documentation that messages can get lost when using Topics (as the API of...
As always, I'm sure you find a solution :-)
Maybe it would be possible to use an extra JMS header with a self-generated id (UUID eg). Problem would be that the receiver is forced to include that...
Yep, exactly :-)
For me a separate thread would be more comfortable than a Durable Subscriber: if the the server crashes before the reply is received, the reply would go into nirvana, which would...
You're right, a Queue would be the better choice, but due to our Company's JMS policy we're forced to use Topics.
Hi,
if I understand the sendAndReceive()-Method in the JmsOutboundGateway (Spring Integration 2.0) correctly, it first sends the message to its destination. Then it constructs a message consumer...
Same here. The only method that works is getClass() but that sets the Class-object as Message Header and not only a String containing the (qualified) name of the class
Thanks for your answers!
I like to have the class name in the header because I want to forward the message via JMS and the receiver needs to select messages from the queue by their type using a...
Yes, I'm using JDK 1.6 (Execution Environment of my bundle is JavaSE-1.6).
Hi,
I have configured a Header Enricher, that should add the (simple) Class name of the Payload object as a message header using Spring Expression Language. My enricher definition looks as follow:...
Thanks for the info, Christian.
As spring comes already as OSGi bundles I downloaded the regular distribution, dropped the jars to my Virgo repository and everything works fine.
Nils
Hi,
(please execuse me, if this is not the right forum, I'm unsure where to post Virgo-Tooling related questions)
I tried to download Spring 3.0.x bundles from EBR via the Bundle Repository...
Hi,
I'm using STS 2.5.0 to develop a bundle for Virgo Web server (2.1). For the project I have enabled incremental manifest generation.
Is it possible to have code completion while editing...
Hi,
I'd like to enable annotation-based transaction configuration using java config in Spring Core 3.0. Is it possible? Are there any chances that something like @AnnotationDrivenTx from Spring...